git clone https://github.com/llvm/llvm-project
# checkout version/commit to use
cd llvm-project
mkdir build
cd build
# append -DCMAKE_BUILD_TYPE=Release to next command to enable Release build
cmake .. -GNinja # non-Windows
cmake .. # Windows, or specify Visual Studio generator
cmake --build .
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define Uint64 uint64_t | |
#define Uint32 uint32_t | |
#define Uint16 uint16_t | |
#define Uint8 uint8_t | |
#define Sint64 int64_t | |
#define Sint32 int32_t | |
#define Sint16 int16_t | |
#define Sint8 int8_t |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Vagrant.configure("2") do |config| | |
config.vm.guest = :windows # tell Vagrant this is a Windows-based guest | |
config.vm.communicator = "winrm" # use winrm for management instead of ssh | |
config.vm.provider 'vmware_workstation' do |p| | |
p.linked_clone = false | |
end | |
config.vm.provider :vmware_desktop do |p| | |
p.vmx["ethernet0.pcislotnumber"] = "160" | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from Crypto.Cipher import AES | |
from http.cookiejar import CookieJar, CookiePolicy | |
from datetime import datetime | |
import requests | |
import json | |
import base64 | |
import zlib | |
import os | |
import os.path | |
import urllib3 |
I hereby claim:
- I am ioncodes on github.
- I am layle (https://keybase.io/layle) on keybase.
- I have a public key ASAdo45LMDck6ie9yyCwqGO5wKkORICsIh1O8hpUdC9mVgo
To claim this, I am signing this object:
I hereby claim:
- I am ioncodes on github.
- I am layle (https://keybase.io/layle) on keybase.
- I have a public key ASCKkl5XWWlogtDL5zEIpQV0ihBgdB-lDz1NfU7LxZ9p9go
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Colors] | |
AbstractTableViewBackgroundColor=#252526 | |
AbstractTableViewHeaderTextColor=#000000 | |
AbstractTableViewSelectionColor=#323238 | |
AbstractTableViewSeparatorColor=#64646F | |
AbstractTableViewTextColor=#E8EADE | |
DisassemblyAddressBackgroundColor=#XXXXXX | |
DisassemblyAddressColor=#BD63C5 | |
DisassemblyAutoCommentBackgroundColor=#XXXXXX | |
DisassemblyAutoCommentColor=#787878 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fn decompress(mut src: *const u8, dst: *mut u8) { | |
// Skip first 2 bytes (they're always zero) | |
src += 2; | |
let original_dst = dst; | |
// Load bytes_left | |
let mut bytes_left = ((*src as i32) << 8) + 1; | |
src += 1; | |
bytes_left += *src as i32; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
([\+\-]) \(([\w ]+)\)([\w]+)[:;]([\w\(\) \:\*]+)?;? |
Download bootstrap.tar.gz from the electra repo
gunzip
IMPORTANT: Use this to to extract tar:
tar --preserve-permissions -xvkf bootstrap.tar
upload the cydia and apt files to the phone (scp)
reboot and jailbreak!!
NewerOlder