├── README ├── idc-ios-boot-args ├── README └── idc-ios-boot-args.idc ├── idc-ios-llvm ├── README └── ios-llvm.idc ├── idpy-arm-helper ├── README └── idpy-arm-helper.py ├── idpy-ios-kernel-fix-thumb-segments ├── README └── idpy-ios-kernel-fix-thumb-segments.py ├── misc-hs07 ├── Makefile ├── README ├── build_dsc_extractor.sh ├── dsc_extractor.patch ├── entitlements.plist ├── entitlements_debugger.plist ├── get_gdb.sh ├── get_lldbserver.sh ├── img3decrypt.rb ├── iokit.py ├── rename_stubs.py ├── sandbox_mac_policy_ops.py └── ssl_disable.c ├── noaslr ├── .gitignore ├── Makefile ├── Makefile.x86 ├── README └── main.c ├── posix_spawn ├── .gitignore ├── Makefile ├── Makefile.x86 ├── README ├── gdb-run.sh └── main.c ├── tiny-shell-client ├── .gitignore ├── MANIFEST.MF ├── Main.java └── make.sh └── tiny-shell ├── .gitignore ├── Makefile ├── main.c └── tiny-shell.plist /README: -------------------------------------------------------------------------------- 1 | iOS hacking stuff 2 | -------------------------------------------------------------------------------- /idc-ios-boot-args/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pod2g/ios_stuff/HEAD/idc-ios-boot-args/README -------------------------------------------------------------------------------- /idc-ios-boot-args/idc-ios-boot-args.idc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pod2g/ios_stuff/HEAD/idc-ios-boot-args/idc-ios-boot-args.idc -------------------------------------------------------------------------------- /idc-ios-llvm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pod2g/ios_stuff/HEAD/idc-ios-llvm/README -------------------------------------------------------------------------------- /idc-ios-llvm/ios-llvm.idc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pod2g/ios_stuff/HEAD/idc-ios-llvm/ios-llvm.idc -------------------------------------------------------------------------------- /idpy-arm-helper/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pod2g/ios_stuff/HEAD/idpy-arm-helper/README -------------------------------------------------------------------------------- /idpy-arm-helper/idpy-arm-helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pod2g/ios_stuff/HEAD/idpy-arm-helper/idpy-arm-helper.py -------------------------------------------------------------------------------- /idpy-ios-kernel-fix-thumb-segments/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pod2g/ios_stuff/HEAD/idpy-ios-kernel-fix-thumb-segments/README -------------------------------------------------------------------------------- /idpy-ios-kernel-fix-thumb-segments/idpy-ios-kernel-fix-thumb-segments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pod2g/ios_stuff/HEAD/idpy-ios-kernel-fix-thumb-segments/idpy-ios-kernel-fix-thumb-segments.py -------------------------------------------------------------------------------- /misc-hs07/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pod2g/ios_stuff/HEAD/misc-hs07/Makefile -------------------------------------------------------------------------------- /misc-hs07/README: -------------------------------------------------------------------------------- 1 | MISC hors série 7 - Reverse iOS -------------------------------------------------------------------------------- /misc-hs07/build_dsc_extractor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pod2g/ios_stuff/HEAD/misc-hs07/build_dsc_extractor.sh -------------------------------------------------------------------------------- /misc-hs07/dsc_extractor.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pod2g/ios_stuff/HEAD/misc-hs07/dsc_extractor.patch -------------------------------------------------------------------------------- /misc-hs07/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pod2g/ios_stuff/HEAD/misc-hs07/entitlements.plist -------------------------------------------------------------------------------- /misc-hs07/entitlements_debugger.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pod2g/ios_stuff/HEAD/misc-hs07/entitlements_debugger.plist -------------------------------------------------------------------------------- /misc-hs07/get_gdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pod2g/ios_stuff/HEAD/misc-hs07/get_gdb.sh -------------------------------------------------------------------------------- /misc-hs07/get_lldbserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pod2g/ios_stuff/HEAD/misc-hs07/get_lldbserver.sh -------------------------------------------------------------------------------- /misc-hs07/img3decrypt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pod2g/ios_stuff/HEAD/misc-hs07/img3decrypt.rb -------------------------------------------------------------------------------- /misc-hs07/iokit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pod2g/ios_stuff/HEAD/misc-hs07/iokit.py -------------------------------------------------------------------------------- /misc-hs07/rename_stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pod2g/ios_stuff/HEAD/misc-hs07/rename_stubs.py -------------------------------------------------------------------------------- /misc-hs07/sandbox_mac_policy_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pod2g/ios_stuff/HEAD/misc-hs07/sandbox_mac_policy_ops.py -------------------------------------------------------------------------------- /misc-hs07/ssl_disable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pod2g/ios_stuff/HEAD/misc-hs07/ssl_disable.c -------------------------------------------------------------------------------- /noaslr/.gitignore: -------------------------------------------------------------------------------- 1 | noaslr 2 | -------------------------------------------------------------------------------- /noaslr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pod2g/ios_stuff/HEAD/noaslr/Makefile -------------------------------------------------------------------------------- /noaslr/Makefile.x86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pod2g/ios_stuff/HEAD/noaslr/Makefile.x86 -------------------------------------------------------------------------------- /noaslr/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pod2g/ios_stuff/HEAD/noaslr/README -------------------------------------------------------------------------------- /noaslr/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pod2g/ios_stuff/HEAD/noaslr/main.c -------------------------------------------------------------------------------- /posix_spawn/.gitignore: -------------------------------------------------------------------------------- 1 | posix_spawn 2 | -------------------------------------------------------------------------------- /posix_spawn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pod2g/ios_stuff/HEAD/posix_spawn/Makefile -------------------------------------------------------------------------------- /posix_spawn/Makefile.x86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pod2g/ios_stuff/HEAD/posix_spawn/Makefile.x86 -------------------------------------------------------------------------------- /posix_spawn/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pod2g/ios_stuff/HEAD/posix_spawn/README -------------------------------------------------------------------------------- /posix_spawn/gdb-run.sh: -------------------------------------------------------------------------------- 1 | #/bin/bash 2 | posix_spawn $* & 3 | gdb -p $! 4 | -------------------------------------------------------------------------------- /posix_spawn/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pod2g/ios_stuff/HEAD/posix_spawn/main.c -------------------------------------------------------------------------------- /tiny-shell-client/.gitignore: -------------------------------------------------------------------------------- 1 | /tsc.jar 2 | -------------------------------------------------------------------------------- /tiny-shell-client/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Main-Class: Main 2 | -------------------------------------------------------------------------------- /tiny-shell-client/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pod2g/ios_stuff/HEAD/tiny-shell-client/Main.java -------------------------------------------------------------------------------- /tiny-shell-client/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pod2g/ios_stuff/HEAD/tiny-shell-client/make.sh -------------------------------------------------------------------------------- /tiny-shell/.gitignore: -------------------------------------------------------------------------------- 1 | /tiny-shell 2 | -------------------------------------------------------------------------------- /tiny-shell/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pod2g/ios_stuff/HEAD/tiny-shell/Makefile -------------------------------------------------------------------------------- /tiny-shell/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pod2g/ios_stuff/HEAD/tiny-shell/main.c -------------------------------------------------------------------------------- /tiny-shell/tiny-shell.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pod2g/ios_stuff/HEAD/tiny-shell/tiny-shell.plist --------------------------------------------------------------------------------