├── 1day └── webkit-CVE-2017-2547_standalone_version.html ├── CVE-2016-2434 └── exploit_CVE-2016-2434_commented.c ├── CVE-2016-5342 ├── exploit_mp3_bypass_pxn_commented.c └── exploit_tty_bypass_pxn_commented.c ├── CVE-2016-8655 └── CVE-2016-8655_chocobo_root_commented.c ├── CVE-2018-4233 ├── LICENSE └── pwn_i8.js ├── README.md ├── empty_list ├── __MACOSX │ └── empty_list │ │ ├── ._empty_list.xcodeproj │ │ ├── empty_list.xcodeproj │ │ └── ._project.xcworkspace │ │ └── empty_list │ │ ├── ._AppDelegate.h │ │ ├── ._AppDelegate.m │ │ ├── ._Info.plist │ │ ├── ._README │ │ ├── ._ViewController.h │ │ ├── ._ViewController.m │ │ ├── ._kmem.c │ │ ├── ._kmem.h │ │ ├── ._main.m │ │ ├── ._offsets.h │ │ ├── ._offsets.m │ │ ├── ._sploit.c │ │ ├── ._sploit.h │ │ ├── Assets.xcassets │ │ └── ._Contents.json │ │ └── Base.lproj │ │ ├── ._LaunchScreen.storyboard │ │ └── ._Main.storyboard └── empty_list │ ├── empty_list.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── ianbeer.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── ianbeer.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist │ └── empty_list │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── README │ ├── ViewController.h │ ├── ViewController.m │ ├── kmem.c │ ├── kmem.h │ ├── main.m │ ├── offsets.h │ ├── offsets.m │ ├── sploit.c │ └── sploit.h ├── extra_recipe ├── extra_recipe-cydia │ ├── README.md │ ├── extra_recipe.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcuserdata │ │ │ │ └── ianbeer.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ └── ianbeer.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── extra_recipe.xcscheme │ │ │ └── xcschememanagement.plist │ └── extra_recipe │ │ ├── 0.reload.plist │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── README │ │ ├── ViewController.swift │ │ ├── bootstrap.tar │ │ ├── def.plist │ │ ├── dex.plist │ │ ├── dropbear.plist │ │ ├── extra_recipe-Bridging-Header.h │ │ ├── jailbreak.c │ │ ├── launchctl │ │ ├── load_regs_and_crash.s │ │ ├── mach-portal.dylib │ │ ├── mach_portal.dylib │ │ ├── offsets.h │ │ ├── offsets.m │ │ ├── patchfinder64.c │ │ ├── patchfinder64.h │ │ ├── pte_stuff.h │ │ ├── reload │ │ ├── tar │ │ ├── unjail.h │ │ └── unjail.m ├── extra_recipe-master │ ├── README.md │ ├── extra_recipe.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcuserdata │ │ │ │ └── ianbeer.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ └── ianbeer.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── extra_recipe.xcscheme │ │ │ └── xcschememanagement.plist │ └── extra_recipe │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── README │ │ ├── ViewController.swift │ │ ├── bootstrap.tar │ │ ├── def.plist │ │ ├── dex.plist │ │ ├── extra_recipe-Bridging-Header.h │ │ ├── jailbreak.c │ │ ├── launchctl │ │ ├── load_regs_and_crash.s │ │ ├── mach-portal.dylib │ │ ├── mach_portal.dylib │ │ ├── offsets.h │ │ ├── offsets.m │ │ ├── patchfinder64.c │ │ ├── patchfinder64.h │ │ ├── pte_stuff.h │ │ ├── tar │ │ ├── unjail.h │ │ └── unjail.m └── yalu102-master │ ├── .github │ └── ISSUE_TEMPLATE.md │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── yalu102.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── yalu102 │ ├── 0.reload.plist │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ ├── AppIcon40x40@2x~ipad-1.png │ │ ├── AppIcon40x40@2x~ipad.png │ │ ├── AppIcon40x40@2x~ipadnotif.png │ │ ├── AppIcon40x40@2x~ipadsptl-1.png │ │ ├── AppIcon40x40@2x~ipadsptl.png │ │ ├── AppIcon40x40@2x~ipadsptl3.png │ │ ├── AppIcon40x40@2x~ipadsptlsmal.png │ │ ├── AppIcon40x40@3x~iphone.png │ │ ├── AppIcon40x40~ipad-1.png │ │ ├── AppIcon40x40~ipad-2.png │ │ ├── AppIcon40x40~ipad.png │ │ ├── AppIcon60x60.png │ │ ├── AppIcon60x60@2x.png │ │ ├── AppIcon60x60@2x~ipad.png │ │ ├── AppIcon60x60@2x~ipadpro.png │ │ ├── AppIcon60x60@3x.png │ │ ├── AppIcon60x60~ipad.png │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── IOKit.tbd │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ ├── bootstrap.tar │ ├── devicesupport.h │ ├── devicesupport.m │ ├── dropbear.plist │ ├── iokitmig64.o │ ├── jailbreak.m │ ├── launchctl │ ├── main.m │ ├── offsets.c │ ├── offsets.h │ ├── patchfinder64.h │ ├── patchfinder64.o │ ├── pte_stuff.h │ ├── reload │ └── tar ├── jsc_ConcatMemcpy_infoleak └── ileak.html └── jsc_prop_enum_uaf ├── LICENSE ├── ibin.js └── index.html /1day/webkit-CVE-2017-2547_standalone_version.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/1day/webkit-CVE-2017-2547_standalone_version.html -------------------------------------------------------------------------------- /CVE-2016-2434/exploit_CVE-2016-2434_commented.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/CVE-2016-2434/exploit_CVE-2016-2434_commented.c -------------------------------------------------------------------------------- /CVE-2016-5342/exploit_mp3_bypass_pxn_commented.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/CVE-2016-5342/exploit_mp3_bypass_pxn_commented.c -------------------------------------------------------------------------------- /CVE-2016-5342/exploit_tty_bypass_pxn_commented.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/CVE-2016-5342/exploit_tty_bypass_pxn_commented.c -------------------------------------------------------------------------------- /CVE-2016-8655/CVE-2016-8655_chocobo_root_commented.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/CVE-2016-8655/CVE-2016-8655_chocobo_root_commented.c -------------------------------------------------------------------------------- /CVE-2018-4233/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/CVE-2018-4233/LICENSE -------------------------------------------------------------------------------- /CVE-2018-4233/pwn_i8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/CVE-2018-4233/pwn_i8.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/README.md -------------------------------------------------------------------------------- /empty_list/__MACOSX/empty_list/._empty_list.xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/__MACOSX/empty_list/._empty_list.xcodeproj -------------------------------------------------------------------------------- /empty_list/__MACOSX/empty_list/empty_list.xcodeproj/._project.xcworkspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/__MACOSX/empty_list/empty_list.xcodeproj/._project.xcworkspace -------------------------------------------------------------------------------- /empty_list/__MACOSX/empty_list/empty_list/._AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/__MACOSX/empty_list/empty_list/._AppDelegate.h -------------------------------------------------------------------------------- /empty_list/__MACOSX/empty_list/empty_list/._AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/__MACOSX/empty_list/empty_list/._AppDelegate.m -------------------------------------------------------------------------------- /empty_list/__MACOSX/empty_list/empty_list/._Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/__MACOSX/empty_list/empty_list/._Info.plist -------------------------------------------------------------------------------- /empty_list/__MACOSX/empty_list/empty_list/._README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/__MACOSX/empty_list/empty_list/._README -------------------------------------------------------------------------------- /empty_list/__MACOSX/empty_list/empty_list/._ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/__MACOSX/empty_list/empty_list/._ViewController.h -------------------------------------------------------------------------------- /empty_list/__MACOSX/empty_list/empty_list/._ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/__MACOSX/empty_list/empty_list/._ViewController.m -------------------------------------------------------------------------------- /empty_list/__MACOSX/empty_list/empty_list/._kmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/__MACOSX/empty_list/empty_list/._kmem.c -------------------------------------------------------------------------------- /empty_list/__MACOSX/empty_list/empty_list/._kmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/__MACOSX/empty_list/empty_list/._kmem.h -------------------------------------------------------------------------------- /empty_list/__MACOSX/empty_list/empty_list/._main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/__MACOSX/empty_list/empty_list/._main.m -------------------------------------------------------------------------------- /empty_list/__MACOSX/empty_list/empty_list/._offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/__MACOSX/empty_list/empty_list/._offsets.h -------------------------------------------------------------------------------- /empty_list/__MACOSX/empty_list/empty_list/._offsets.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/__MACOSX/empty_list/empty_list/._offsets.m -------------------------------------------------------------------------------- /empty_list/__MACOSX/empty_list/empty_list/._sploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/__MACOSX/empty_list/empty_list/._sploit.c -------------------------------------------------------------------------------- /empty_list/__MACOSX/empty_list/empty_list/._sploit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/__MACOSX/empty_list/empty_list/._sploit.h -------------------------------------------------------------------------------- /empty_list/__MACOSX/empty_list/empty_list/Assets.xcassets/._Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/__MACOSX/empty_list/empty_list/Assets.xcassets/._Contents.json -------------------------------------------------------------------------------- /empty_list/__MACOSX/empty_list/empty_list/Base.lproj/._LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/__MACOSX/empty_list/empty_list/Base.lproj/._LaunchScreen.storyboard -------------------------------------------------------------------------------- /empty_list/__MACOSX/empty_list/empty_list/Base.lproj/._Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/__MACOSX/empty_list/empty_list/Base.lproj/._Main.storyboard -------------------------------------------------------------------------------- /empty_list/empty_list/empty_list.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/empty_list/empty_list.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /empty_list/empty_list/empty_list.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/empty_list/empty_list.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /empty_list/empty_list/empty_list.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/empty_list/empty_list.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /empty_list/empty_list/empty_list.xcodeproj/project.xcworkspace/xcuserdata/ianbeer.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/empty_list/empty_list.xcodeproj/project.xcworkspace/xcuserdata/ianbeer.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /empty_list/empty_list/empty_list.xcodeproj/xcuserdata/ianbeer.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/empty_list/empty_list.xcodeproj/xcuserdata/ianbeer.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /empty_list/empty_list/empty_list.xcodeproj/xcuserdata/ianbeer.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/empty_list/empty_list.xcodeproj/xcuserdata/ianbeer.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /empty_list/empty_list/empty_list/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/empty_list/empty_list/AppDelegate.h -------------------------------------------------------------------------------- /empty_list/empty_list/empty_list/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/empty_list/empty_list/AppDelegate.m -------------------------------------------------------------------------------- /empty_list/empty_list/empty_list/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/empty_list/empty_list/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /empty_list/empty_list/empty_list/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/empty_list/empty_list/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /empty_list/empty_list/empty_list/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/empty_list/empty_list/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /empty_list/empty_list/empty_list/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/empty_list/empty_list/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /empty_list/empty_list/empty_list/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/empty_list/empty_list/Info.plist -------------------------------------------------------------------------------- /empty_list/empty_list/empty_list/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/empty_list/empty_list/README -------------------------------------------------------------------------------- /empty_list/empty_list/empty_list/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/empty_list/empty_list/ViewController.h -------------------------------------------------------------------------------- /empty_list/empty_list/empty_list/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/empty_list/empty_list/ViewController.m -------------------------------------------------------------------------------- /empty_list/empty_list/empty_list/kmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/empty_list/empty_list/kmem.c -------------------------------------------------------------------------------- /empty_list/empty_list/empty_list/kmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/empty_list/empty_list/kmem.h -------------------------------------------------------------------------------- /empty_list/empty_list/empty_list/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/empty_list/empty_list/main.m -------------------------------------------------------------------------------- /empty_list/empty_list/empty_list/offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/empty_list/empty_list/offsets.h -------------------------------------------------------------------------------- /empty_list/empty_list/empty_list/offsets.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/empty_list/empty_list/offsets.m -------------------------------------------------------------------------------- /empty_list/empty_list/empty_list/sploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/empty_list/empty_list/sploit.c -------------------------------------------------------------------------------- /empty_list/empty_list/empty_list/sploit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/empty_list/empty_list/empty_list/sploit.h -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-cydia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-cydia/README.md -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-cydia/extra_recipe.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-cydia/extra_recipe.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-cydia/extra_recipe.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-cydia/extra_recipe.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-cydia/extra_recipe.xcodeproj/project.xcworkspace/xcuserdata/ianbeer.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-cydia/extra_recipe.xcodeproj/project.xcworkspace/xcuserdata/ianbeer.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-cydia/extra_recipe.xcodeproj/xcuserdata/ianbeer.xcuserdatad/xcschemes/extra_recipe.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-cydia/extra_recipe.xcodeproj/xcuserdata/ianbeer.xcuserdatad/xcschemes/extra_recipe.xcscheme -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-cydia/extra_recipe.xcodeproj/xcuserdata/ianbeer.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-cydia/extra_recipe.xcodeproj/xcuserdata/ianbeer.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-cydia/extra_recipe/0.reload.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-cydia/extra_recipe/0.reload.plist -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-cydia/extra_recipe/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-cydia/extra_recipe/AppDelegate.swift -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-cydia/extra_recipe/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-cydia/extra_recipe/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-cydia/extra_recipe/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-cydia/extra_recipe/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-cydia/extra_recipe/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-cydia/extra_recipe/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-cydia/extra_recipe/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-cydia/extra_recipe/Info.plist -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-cydia/extra_recipe/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-cydia/extra_recipe/README -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-cydia/extra_recipe/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-cydia/extra_recipe/ViewController.swift -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-cydia/extra_recipe/bootstrap.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-cydia/extra_recipe/bootstrap.tar -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-cydia/extra_recipe/def.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-cydia/extra_recipe/def.plist -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-cydia/extra_recipe/dex.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-cydia/extra_recipe/dex.plist -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-cydia/extra_recipe/dropbear.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-cydia/extra_recipe/dropbear.plist -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-cydia/extra_recipe/extra_recipe-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-cydia/extra_recipe/extra_recipe-Bridging-Header.h -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-cydia/extra_recipe/jailbreak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-cydia/extra_recipe/jailbreak.c -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-cydia/extra_recipe/launchctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-cydia/extra_recipe/launchctl -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-cydia/extra_recipe/load_regs_and_crash.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-cydia/extra_recipe/load_regs_and_crash.s -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-cydia/extra_recipe/mach-portal.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-cydia/extra_recipe/mach-portal.dylib -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-cydia/extra_recipe/mach_portal.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-cydia/extra_recipe/mach_portal.dylib -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-cydia/extra_recipe/offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-cydia/extra_recipe/offsets.h -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-cydia/extra_recipe/offsets.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-cydia/extra_recipe/offsets.m -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-cydia/extra_recipe/patchfinder64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-cydia/extra_recipe/patchfinder64.c -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-cydia/extra_recipe/patchfinder64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-cydia/extra_recipe/patchfinder64.h -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-cydia/extra_recipe/pte_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-cydia/extra_recipe/pte_stuff.h -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-cydia/extra_recipe/reload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-cydia/extra_recipe/reload -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-cydia/extra_recipe/tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-cydia/extra_recipe/tar -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-cydia/extra_recipe/unjail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-cydia/extra_recipe/unjail.h -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-cydia/extra_recipe/unjail.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-cydia/extra_recipe/unjail.m -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-master/README.md -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-master/extra_recipe.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-master/extra_recipe.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-master/extra_recipe.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-master/extra_recipe.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-master/extra_recipe.xcodeproj/project.xcworkspace/xcuserdata/ianbeer.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-master/extra_recipe.xcodeproj/project.xcworkspace/xcuserdata/ianbeer.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-master/extra_recipe.xcodeproj/xcuserdata/ianbeer.xcuserdatad/xcschemes/extra_recipe.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-master/extra_recipe.xcodeproj/xcuserdata/ianbeer.xcuserdatad/xcschemes/extra_recipe.xcscheme -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-master/extra_recipe.xcodeproj/xcuserdata/ianbeer.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-master/extra_recipe.xcodeproj/xcuserdata/ianbeer.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-master/extra_recipe/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-master/extra_recipe/AppDelegate.swift -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-master/extra_recipe/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-master/extra_recipe/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-master/extra_recipe/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-master/extra_recipe/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-master/extra_recipe/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-master/extra_recipe/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-master/extra_recipe/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-master/extra_recipe/Info.plist -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-master/extra_recipe/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-master/extra_recipe/README -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-master/extra_recipe/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-master/extra_recipe/ViewController.swift -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-master/extra_recipe/bootstrap.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-master/extra_recipe/bootstrap.tar -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-master/extra_recipe/def.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-master/extra_recipe/def.plist -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-master/extra_recipe/dex.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-master/extra_recipe/dex.plist -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-master/extra_recipe/extra_recipe-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-master/extra_recipe/extra_recipe-Bridging-Header.h -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-master/extra_recipe/jailbreak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-master/extra_recipe/jailbreak.c -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-master/extra_recipe/launchctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-master/extra_recipe/launchctl -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-master/extra_recipe/load_regs_and_crash.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-master/extra_recipe/load_regs_and_crash.s -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-master/extra_recipe/mach-portal.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-master/extra_recipe/mach-portal.dylib -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-master/extra_recipe/mach_portal.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-master/extra_recipe/mach_portal.dylib -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-master/extra_recipe/offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-master/extra_recipe/offsets.h -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-master/extra_recipe/offsets.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-master/extra_recipe/offsets.m -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-master/extra_recipe/patchfinder64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-master/extra_recipe/patchfinder64.c -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-master/extra_recipe/patchfinder64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-master/extra_recipe/patchfinder64.h -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-master/extra_recipe/pte_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-master/extra_recipe/pte_stuff.h -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-master/extra_recipe/tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-master/extra_recipe/tar -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-master/extra_recipe/unjail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-master/extra_recipe/unjail.h -------------------------------------------------------------------------------- /extra_recipe/extra_recipe-master/extra_recipe/unjail.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/extra_recipe-master/extra_recipe/unjail.m -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/.gitignore -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/LICENSE -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/README.md -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/0.reload.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/0.reload.plist -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/AppDelegate.h -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/AppDelegate.m -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x~ipad-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x~ipad-1.png -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x~ipad.png -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x~ipadnotif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x~ipadnotif.png -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x~ipadsptl-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x~ipadsptl-1.png -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x~ipadsptl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x~ipadsptl.png -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x~ipadsptl3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x~ipadsptl3.png -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x~ipadsptlsmal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x~ipadsptlsmal.png -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@3x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@3x~iphone.png -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/Assets.xcassets/AppIcon.appiconset/AppIcon40x40~ipad-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/Assets.xcassets/AppIcon.appiconset/AppIcon40x40~ipad-1.png -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/Assets.xcassets/AppIcon.appiconset/AppIcon40x40~ipad-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/Assets.xcassets/AppIcon.appiconset/AppIcon40x40~ipad-2.png -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/Assets.xcassets/AppIcon.appiconset/AppIcon40x40~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/Assets.xcassets/AppIcon.appiconset/AppIcon40x40~ipad.png -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/Assets.xcassets/AppIcon.appiconset/AppIcon60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/Assets.xcassets/AppIcon.appiconset/AppIcon60x60.png -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@2x.png -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@2x~ipad.png -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@2x~ipadpro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@2x~ipadpro.png -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@3x.png -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/Assets.xcassets/AppIcon.appiconset/AppIcon60x60~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/Assets.xcassets/AppIcon.appiconset/AppIcon60x60~ipad.png -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/IOKit.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/IOKit.tbd -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/Info.plist -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/ViewController.h -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/ViewController.m -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/bootstrap.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/bootstrap.tar -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/devicesupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/devicesupport.h -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/devicesupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/devicesupport.m -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/dropbear.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/dropbear.plist -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/iokitmig64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/iokitmig64.o -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/jailbreak.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/jailbreak.m -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/launchctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/launchctl -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/main.m -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/offsets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/offsets.c -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/offsets.h -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/patchfinder64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/patchfinder64.h -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/patchfinder64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/patchfinder64.o -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/pte_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/pte_stuff.h -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/reload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/reload -------------------------------------------------------------------------------- /extra_recipe/yalu102-master/yalu102/tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/extra_recipe/yalu102-master/yalu102/tar -------------------------------------------------------------------------------- /jsc_ConcatMemcpy_infoleak/ileak.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/jsc_ConcatMemcpy_infoleak/ileak.html -------------------------------------------------------------------------------- /jsc_prop_enum_uaf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/jsc_prop_enum_uaf/LICENSE -------------------------------------------------------------------------------- /jsc_prop_enum_uaf/ibin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/jsc_prop_enum_uaf/ibin.js -------------------------------------------------------------------------------- /jsc_prop_enum_uaf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/externalist/exploit_playground/HEAD/jsc_prop_enum_uaf/index.html --------------------------------------------------------------------------------