├── .gitignore ├── README ├── ipsw.py ├── patches ├── armv6 │ ├── 3G │ │ └── Info.plist │ ├── WTF.n82ap.delta.json │ ├── WTF.s5l8900xall.delta.json │ ├── asr.delta.json │ ├── kernel_3x.patch.json │ ├── kernelcache_armv6.delta.json │ └── nor.delta.json ├── armv7 │ ├── 5 │ │ ├── asr.patch.json │ │ ├── kernel.patch.json │ │ ├── kernel_nor.patch.json │ │ └── nor.patch.json │ ├── 43b1 │ │ ├── kernelcache_armv7.patch.json │ │ └── kernelcache_patchedNorProcs_armv7.patch.json │ ├── README │ ├── asr_42.patch.json │ ├── kernelcache_armv7.patch.json │ ├── kernelcache_patchedNorProcs_armv7.patch.json │ └── nor.patch.json ├── fstab.patch └── sysver.patch ├── samples ├── 3gs_old │ └── Info.plist └── atv │ └── 4.4_9a5288d │ └── Info.plist ├── tools_bin ├── ios │ ├── README │ ├── asrpass.dylib │ ├── ibss_patchproc.bin │ └── ibxx_bdproc.bin ├── osx │ ├── README │ ├── fuzzy_patcher │ ├── genpass │ ├── ldid │ ├── vfdecrypt │ └── xpwntool └── win32 │ ├── README │ ├── dif_patcher.exe │ ├── dmg.exe │ ├── fuzzy_patcher.exe │ ├── genpass.exe │ ├── libeay32.dll │ ├── libpng12.dll │ ├── xpwntool.exe │ └── zlib1.dll └── tools_src ├── ConsoleApplication1 ├── ConsoleApplication1.sln ├── ConsoleApplication1.suo └── ConsoleApplication1 │ ├── ConsoleApplication1.csproj │ ├── Program.cs │ └── Properties │ └── AssemblyInfo.cs ├── README ├── asrpass ├── Readme ├── asrpass-Info.plist ├── asrpass.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── asrpass_Prefix.pch ├── hooks.h ├── hooks.mm ├── impHook │ ├── impHook.cpp │ ├── impHook.h │ ├── impHook.xcodeproj │ │ └── project.pbxproj │ ├── impHookApi.h │ └── impHook_Prefix.pch ├── main.h └── main.mm ├── bootrom_dump ├── Makefile ├── add_payload.py ├── ibxx_bdproc.bin ├── ibxx_bdproc.s └── rd_prep.sh ├── dif_patcher ├── dif_patcher.sln ├── dif_patcher.suo └── dif_patcher │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── dif_patcher.csproj ├── fuzzy_patcher ├── Makefile ├── fuzzy_patcher.sln ├── fuzzy_patcher.vcxproj └── main.cpp ├── ibss_kpatch ├── Makefile ├── ibss_patcher.py └── ibss_patchproc.s └── idapy ├── .gitignore ├── CommCenter.sh ├── README ├── commcenter.py └── rel_addr_llvm.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/README -------------------------------------------------------------------------------- /ipsw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/ipsw.py -------------------------------------------------------------------------------- /patches/armv6/3G/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/patches/armv6/3G/Info.plist -------------------------------------------------------------------------------- /patches/armv6/WTF.n82ap.delta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/patches/armv6/WTF.n82ap.delta.json -------------------------------------------------------------------------------- /patches/armv6/WTF.s5l8900xall.delta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/patches/armv6/WTF.s5l8900xall.delta.json -------------------------------------------------------------------------------- /patches/armv6/asr.delta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/patches/armv6/asr.delta.json -------------------------------------------------------------------------------- /patches/armv6/kernel_3x.patch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/patches/armv6/kernel_3x.patch.json -------------------------------------------------------------------------------- /patches/armv6/kernelcache_armv6.delta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/patches/armv6/kernelcache_armv6.delta.json -------------------------------------------------------------------------------- /patches/armv6/nor.delta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/patches/armv6/nor.delta.json -------------------------------------------------------------------------------- /patches/armv7/43b1/kernelcache_armv7.patch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/patches/armv7/43b1/kernelcache_armv7.patch.json -------------------------------------------------------------------------------- /patches/armv7/43b1/kernelcache_patchedNorProcs_armv7.patch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/patches/armv7/43b1/kernelcache_patchedNorProcs_armv7.patch.json -------------------------------------------------------------------------------- /patches/armv7/5/asr.patch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/patches/armv7/5/asr.patch.json -------------------------------------------------------------------------------- /patches/armv7/5/kernel.patch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/patches/armv7/5/kernel.patch.json -------------------------------------------------------------------------------- /patches/armv7/5/kernel_nor.patch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/patches/armv7/5/kernel_nor.patch.json -------------------------------------------------------------------------------- /patches/armv7/5/nor.patch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/patches/armv7/5/nor.patch.json -------------------------------------------------------------------------------- /patches/armv7/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/patches/armv7/README -------------------------------------------------------------------------------- /patches/armv7/asr_42.patch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/patches/armv7/asr_42.patch.json -------------------------------------------------------------------------------- /patches/armv7/kernelcache_armv7.patch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/patches/armv7/kernelcache_armv7.patch.json -------------------------------------------------------------------------------- /patches/armv7/kernelcache_patchedNorProcs_armv7.patch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/patches/armv7/kernelcache_patchedNorProcs_armv7.patch.json -------------------------------------------------------------------------------- /patches/armv7/nor.patch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/patches/armv7/nor.patch.json -------------------------------------------------------------------------------- /patches/fstab.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/patches/fstab.patch -------------------------------------------------------------------------------- /patches/sysver.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/patches/sysver.patch -------------------------------------------------------------------------------- /samples/3gs_old/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/samples/3gs_old/Info.plist -------------------------------------------------------------------------------- /samples/atv/4.4_9a5288d/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/samples/atv/4.4_9a5288d/Info.plist -------------------------------------------------------------------------------- /tools_bin/ios/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_bin/ios/README -------------------------------------------------------------------------------- /tools_bin/ios/asrpass.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_bin/ios/asrpass.dylib -------------------------------------------------------------------------------- /tools_bin/ios/ibss_patchproc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_bin/ios/ibss_patchproc.bin -------------------------------------------------------------------------------- /tools_bin/ios/ibxx_bdproc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_bin/ios/ibxx_bdproc.bin -------------------------------------------------------------------------------- /tools_bin/osx/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_bin/osx/README -------------------------------------------------------------------------------- /tools_bin/osx/fuzzy_patcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_bin/osx/fuzzy_patcher -------------------------------------------------------------------------------- /tools_bin/osx/genpass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_bin/osx/genpass -------------------------------------------------------------------------------- /tools_bin/osx/ldid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_bin/osx/ldid -------------------------------------------------------------------------------- /tools_bin/osx/vfdecrypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_bin/osx/vfdecrypt -------------------------------------------------------------------------------- /tools_bin/osx/xpwntool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_bin/osx/xpwntool -------------------------------------------------------------------------------- /tools_bin/win32/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_bin/win32/README -------------------------------------------------------------------------------- /tools_bin/win32/dif_patcher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_bin/win32/dif_patcher.exe -------------------------------------------------------------------------------- /tools_bin/win32/dmg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_bin/win32/dmg.exe -------------------------------------------------------------------------------- /tools_bin/win32/fuzzy_patcher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_bin/win32/fuzzy_patcher.exe -------------------------------------------------------------------------------- /tools_bin/win32/genpass.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_bin/win32/genpass.exe -------------------------------------------------------------------------------- /tools_bin/win32/libeay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_bin/win32/libeay32.dll -------------------------------------------------------------------------------- /tools_bin/win32/libpng12.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_bin/win32/libpng12.dll -------------------------------------------------------------------------------- /tools_bin/win32/xpwntool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_bin/win32/xpwntool.exe -------------------------------------------------------------------------------- /tools_bin/win32/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_bin/win32/zlib1.dll -------------------------------------------------------------------------------- /tools_src/ConsoleApplication1/ConsoleApplication1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/ConsoleApplication1/ConsoleApplication1.sln -------------------------------------------------------------------------------- /tools_src/ConsoleApplication1/ConsoleApplication1.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/ConsoleApplication1/ConsoleApplication1.suo -------------------------------------------------------------------------------- /tools_src/ConsoleApplication1/ConsoleApplication1/ConsoleApplication1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/ConsoleApplication1/ConsoleApplication1/ConsoleApplication1.csproj -------------------------------------------------------------------------------- /tools_src/ConsoleApplication1/ConsoleApplication1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/ConsoleApplication1/ConsoleApplication1/Program.cs -------------------------------------------------------------------------------- /tools_src/ConsoleApplication1/ConsoleApplication1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/ConsoleApplication1/ConsoleApplication1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tools_src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/README -------------------------------------------------------------------------------- /tools_src/asrpass/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/asrpass/Readme -------------------------------------------------------------------------------- /tools_src/asrpass/asrpass-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/asrpass/asrpass-Info.plist -------------------------------------------------------------------------------- /tools_src/asrpass/asrpass.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/asrpass/asrpass.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /tools_src/asrpass/asrpass.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/asrpass/asrpass.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /tools_src/asrpass/asrpass_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/asrpass/asrpass_Prefix.pch -------------------------------------------------------------------------------- /tools_src/asrpass/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/asrpass/hooks.h -------------------------------------------------------------------------------- /tools_src/asrpass/hooks.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/asrpass/hooks.mm -------------------------------------------------------------------------------- /tools_src/asrpass/impHook/impHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/asrpass/impHook/impHook.cpp -------------------------------------------------------------------------------- /tools_src/asrpass/impHook/impHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/asrpass/impHook/impHook.h -------------------------------------------------------------------------------- /tools_src/asrpass/impHook/impHook.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/asrpass/impHook/impHook.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /tools_src/asrpass/impHook/impHookApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/asrpass/impHook/impHookApi.h -------------------------------------------------------------------------------- /tools_src/asrpass/impHook/impHook_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/asrpass/impHook/impHook_Prefix.pch -------------------------------------------------------------------------------- /tools_src/asrpass/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/asrpass/main.h -------------------------------------------------------------------------------- /tools_src/asrpass/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/asrpass/main.mm -------------------------------------------------------------------------------- /tools_src/bootrom_dump/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/bootrom_dump/Makefile -------------------------------------------------------------------------------- /tools_src/bootrom_dump/add_payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/bootrom_dump/add_payload.py -------------------------------------------------------------------------------- /tools_src/bootrom_dump/ibxx_bdproc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/bootrom_dump/ibxx_bdproc.bin -------------------------------------------------------------------------------- /tools_src/bootrom_dump/ibxx_bdproc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/bootrom_dump/ibxx_bdproc.s -------------------------------------------------------------------------------- /tools_src/bootrom_dump/rd_prep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/bootrom_dump/rd_prep.sh -------------------------------------------------------------------------------- /tools_src/dif_patcher/dif_patcher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/dif_patcher/dif_patcher.sln -------------------------------------------------------------------------------- /tools_src/dif_patcher/dif_patcher.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/dif_patcher/dif_patcher.suo -------------------------------------------------------------------------------- /tools_src/dif_patcher/dif_patcher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/dif_patcher/dif_patcher/Program.cs -------------------------------------------------------------------------------- /tools_src/dif_patcher/dif_patcher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/dif_patcher/dif_patcher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tools_src/dif_patcher/dif_patcher/dif_patcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/dif_patcher/dif_patcher/dif_patcher.csproj -------------------------------------------------------------------------------- /tools_src/fuzzy_patcher/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/fuzzy_patcher/Makefile -------------------------------------------------------------------------------- /tools_src/fuzzy_patcher/fuzzy_patcher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/fuzzy_patcher/fuzzy_patcher.sln -------------------------------------------------------------------------------- /tools_src/fuzzy_patcher/fuzzy_patcher.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/fuzzy_patcher/fuzzy_patcher.vcxproj -------------------------------------------------------------------------------- /tools_src/fuzzy_patcher/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/fuzzy_patcher/main.cpp -------------------------------------------------------------------------------- /tools_src/ibss_kpatch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/ibss_kpatch/Makefile -------------------------------------------------------------------------------- /tools_src/ibss_kpatch/ibss_patcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/ibss_kpatch/ibss_patcher.py -------------------------------------------------------------------------------- /tools_src/ibss_kpatch/ibss_patchproc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/ibss_kpatch/ibss_patchproc.s -------------------------------------------------------------------------------- /tools_src/idapy/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /tools_src/idapy/CommCenter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/idapy/CommCenter.sh -------------------------------------------------------------------------------- /tools_src/idapy/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/idapy/README -------------------------------------------------------------------------------- /tools_src/idapy/commcenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/idapy/commcenter.py -------------------------------------------------------------------------------- /tools_src/idapy/rel_addr_llvm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msftguy/ios-jb-tools/HEAD/tools_src/idapy/rel_addr_llvm.py --------------------------------------------------------------------------------