Skip to content

Instantly share code, notes, and snippets.

View Merculous's full-sized avatar

Brandon Merculous

View GitHub Profile
@Merculous
Merculous / tool
Last active May 25, 2023 03:27
Python3 script to download all ipsw's for a device using the ipsw.me api
#!/usr/bin/env python3
import json
from argparse import ArgumentParser
from concurrent.futures import ThreadPoolExecutor, as_completed
from urllib.error import HTTPError
from urllib.request import urlopen
def readFromURL(url, mode):
[DISASM]
000000 //
b38b16 //Default color
d8db1d //Regular comment
808080 //Repeatable comment
808080 //Automatic comment
535ad4 //Instruction
abbc19 //Dummy Data Name
e79b17 //Regular Data Name
cc9518 //Demangled Name
@Merculous
Merculous / checkm8_a8_a9.patch usage.md
Created February 18, 2020 16:32 — forked from a1exdandy/checkm8_a8_a9.patch usage.md
checkm8_a8_a9.patch usage
@Merculous
Merculous / checkm8_s8003.patch
Created February 17, 2020 22:33 — forked from a1exdandy/checkm8_a8_a9.patch
ipwndfu patch for s8003 (iPhone 6s)
diff --git a/Makefile b/Makefile
index 96e99b7..4884309 100644
--- a/Makefile
+++ b/Makefile
@@ -43,6 +43,10 @@ arm64:
gobjcopy -O binary -j .text bin/checkm8_arm64.o bin/checkm8_arm64.bin
rm bin/checkm8_arm64.o
+ xcrun -sdk iphoneos clang src/checkm8_nopaddingcorruption_arm64.S -target arm64-apple-darwin -Wall -o bin/checkm8_nopaddingcorruption_arm64.o
+ gobjcopy -O binary -j .text bin/checkm8_nopaddingcorruption_arm64.o bin/checkm8_nopaddingcorruption_arm64.bin
@Merculous
Merculous / patch.sh
Created January 22, 2020 22:40 — forked from jakeajames/patch.sh
Make h3lix work when installed not-via-Impactor. To be used with the latest h3lix.
if [ $# != 2 ]; then
echo "Usage: $0 /path/to/input_ipa /path/to/output_ipa"
exit 1
fi
if ! [ -f $1 ]; then
echo "'$1' does not exist"
exit 1
fi