gitextract_8ln0kc37/ ├── .gitignore ├── AMFI Utilities/ │ ├── amfi_utils.h │ ├── amfi_utils.m │ ├── amfid.h │ ├── amfid.m │ ├── amfid_mem.h │ ├── amfid_mem.m │ ├── amfid_tools.h │ ├── amfid_tools.m │ ├── cs_blob.h │ ├── osobject.c │ └── osobject.h ├── APFS Utilities/ │ ├── IOKit.h │ ├── liboffsetfinder64.hpp │ ├── offsetfinder.cpp │ ├── rootfs_remount.h │ ├── rootfs_remount.m │ ├── snapshot_tools.c │ └── snapshot_tools.h ├── Base Binaries/ │ └── tar ├── Blizzard Jailbreak/ │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets/ │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── button_mask.imageset/ │ │ │ └── Contents.json │ │ ├── jailbreak_wallpaper.imageset/ │ │ │ └── Contents.json │ │ ├── snow.imageset/ │ │ │ └── Contents.json │ │ └── winter.imageset/ │ │ └── Contents.json │ ├── Base.lproj/ │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── BlizzardLog.h │ ├── BlizzardLog.m │ ├── BlizzardSpawnerTools.c │ ├── BlizzardSpawnerTools.h │ ├── Info.plist │ ├── blizzardJailbreak.h │ ├── blizzardJailbreak.m │ ├── blizzardView.h │ ├── blizzardView.m │ └── main.m ├── Blizzard Jailbreak.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata/ │ │ ├── geosn0w.xcuserdatad/ │ │ │ └── UserInterfaceState.xcuserstate │ │ ├── jakejames.xcuserdatad/ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── pwn20wnd.xcuserdatad/ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata/ │ │ └── xcschemes/ │ │ └── sock_port.xcscheme │ └── xcuserdata/ │ ├── geosn0w.xcuserdatad/ │ │ └── xcdebugger/ │ │ └── Breakpoints_v2.xcbkptlist │ ├── jakejames.xcuserdatad/ │ │ ├── xcdebugger/ │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes/ │ │ └── xcschememanagement.plist │ └── pwn20wnd.xcuserdatad/ │ └── xcschemes/ │ └── xcschememanagement.plist ├── Exploits/ │ ├── FreeTheSandbox/ │ │ ├── IOTypes.h │ │ ├── freethesandbox.h │ │ ├── ios13_change_offsets.m │ │ ├── ios13_kernel_universal.c │ │ ├── ios13_userspace.c │ │ ├── ios13_userspace_pac.c │ │ ├── ios_7st_utils.m │ │ ├── libsnappy.c │ │ ├── libsnappy.h │ │ ├── vnode.h │ │ └── xpc.h │ ├── IOKit/ │ │ ├── IOKitKeys.h │ │ ├── IOKitLib.h │ │ ├── IOReturn.h │ │ └── IOTypes.h │ └── sock_port/ │ ├── exploit.c │ ├── exploit.h │ ├── exploit_utilities.c │ ├── exploit_utilities.h │ ├── include/ │ │ └── IOKit/ │ │ ├── IOKitKeys.h │ │ ├── IOKitLib.h │ │ ├── IOReturn.h │ │ ├── IOTypes.h │ │ └── OSMessageNotification.h │ ├── iosurface.c │ ├── iosurface.h │ ├── kernel_memory.c │ ├── kernel_memory.h │ ├── offsetof.c │ ├── offsetof.h │ ├── offsets.h │ └── offsets.m ├── Helper Libraries/ │ ├── libimg4tool.a │ ├── libmerged.a │ ├── liboffsetfinder64.a │ ├── libplist++.a │ └── libplist.a ├── Kernel Utilities/ │ ├── kernSymbolication.c │ ├── kernSymbolication.h │ ├── kernel_utils.h │ ├── kernel_utils.m │ ├── kexecute.c │ ├── kexecute.h │ ├── lzssdec.cpp │ ├── lzssdec.hpp │ └── system_reboot.h ├── LICENSE ├── PatchFinder/ │ ├── patchfinder64.h │ └── patchfinder64.m ├── README.md └── Vanity/ └── readme.md