├── .gitignore ├── Makefile ├── noncereboot1131UI.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist └── noncereboot1131UI ├── Assets.xcassets ├── AppIcon.appiconset │ └── Contents.json └── Contents.json ├── Info.plist ├── app ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard └── controllers │ ├── ViewController.h │ └── ViewController.m ├── exploit ├── kmem.c ├── kmem.h ├── offsets.h ├── offsets.m ├── voucher_swap.c ├── voucher_swap.h └── voucher_swap │ ├── README │ ├── headers │ ├── IOKitLib.h │ ├── ipc_port.h │ └── mach_vm.h │ ├── kernel_alloc.c │ ├── kernel_alloc.h │ ├── kernel_call.c │ ├── kernel_call.h │ ├── kernel_call │ ├── kc_parameters.c │ ├── kc_parameters.h │ ├── pac.c │ ├── pac.h │ ├── user_client.c │ └── user_client.h │ ├── kernel_memory.c │ ├── kernel_memory.h │ ├── kernel_slide.c │ ├── kernel_slide.h │ ├── log.c │ ├── log.h │ ├── parameters.c │ ├── parameters.h │ ├── platform.c │ ├── platform.h │ ├── platform_match.c │ ├── platform_match.h │ ├── voucher_swap.c │ └── voucher_swap.h ├── headers └── IOKit.h ├── main.m ├── noncereboot1131.entitlements └── post-exploit ├── noncereboot.c ├── noncereboot.h ├── patchfinder64.c ├── patchfinder64.h ├── unlocknvram.c ├── unlocknvram.h └── utilities ├── exploit_additions.c ├── exploit_additions.h ├── kexecute.c ├── kexecute.h ├── kutils.c ├── kutils.h ├── nonce.c ├── nonce.h ├── offsetof.c └── offsetof.h /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | xcuserdata/ 3 | *.ipa 4 | build/ 5 | 6 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/Makefile -------------------------------------------------------------------------------- /noncereboot1131UI.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /noncereboot1131UI.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /noncereboot1131UI.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /noncereboot1131UI/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /noncereboot1131UI/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /noncereboot1131UI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/Info.plist -------------------------------------------------------------------------------- /noncereboot1131UI/app/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/app/AppDelegate.h -------------------------------------------------------------------------------- /noncereboot1131UI/app/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/app/AppDelegate.m -------------------------------------------------------------------------------- /noncereboot1131UI/app/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/app/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /noncereboot1131UI/app/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/app/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /noncereboot1131UI/app/controllers/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/app/controllers/ViewController.h -------------------------------------------------------------------------------- /noncereboot1131UI/app/controllers/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/app/controllers/ViewController.m -------------------------------------------------------------------------------- /noncereboot1131UI/exploit/kmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/exploit/kmem.c -------------------------------------------------------------------------------- /noncereboot1131UI/exploit/kmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/exploit/kmem.h -------------------------------------------------------------------------------- /noncereboot1131UI/exploit/offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/exploit/offsets.h -------------------------------------------------------------------------------- /noncereboot1131UI/exploit/offsets.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/exploit/offsets.m -------------------------------------------------------------------------------- /noncereboot1131UI/exploit/voucher_swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/exploit/voucher_swap.c -------------------------------------------------------------------------------- /noncereboot1131UI/exploit/voucher_swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/exploit/voucher_swap.h -------------------------------------------------------------------------------- /noncereboot1131UI/exploit/voucher_swap/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/exploit/voucher_swap/README -------------------------------------------------------------------------------- /noncereboot1131UI/exploit/voucher_swap/headers/IOKitLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/exploit/voucher_swap/headers/IOKitLib.h -------------------------------------------------------------------------------- /noncereboot1131UI/exploit/voucher_swap/headers/ipc_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/exploit/voucher_swap/headers/ipc_port.h -------------------------------------------------------------------------------- /noncereboot1131UI/exploit/voucher_swap/headers/mach_vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/exploit/voucher_swap/headers/mach_vm.h -------------------------------------------------------------------------------- /noncereboot1131UI/exploit/voucher_swap/kernel_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/exploit/voucher_swap/kernel_alloc.c -------------------------------------------------------------------------------- /noncereboot1131UI/exploit/voucher_swap/kernel_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/exploit/voucher_swap/kernel_alloc.h -------------------------------------------------------------------------------- /noncereboot1131UI/exploit/voucher_swap/kernel_call.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/exploit/voucher_swap/kernel_call.c -------------------------------------------------------------------------------- /noncereboot1131UI/exploit/voucher_swap/kernel_call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/exploit/voucher_swap/kernel_call.h -------------------------------------------------------------------------------- /noncereboot1131UI/exploit/voucher_swap/kernel_call/kc_parameters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/exploit/voucher_swap/kernel_call/kc_parameters.c -------------------------------------------------------------------------------- /noncereboot1131UI/exploit/voucher_swap/kernel_call/kc_parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/exploit/voucher_swap/kernel_call/kc_parameters.h -------------------------------------------------------------------------------- /noncereboot1131UI/exploit/voucher_swap/kernel_call/pac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/exploit/voucher_swap/kernel_call/pac.c -------------------------------------------------------------------------------- /noncereboot1131UI/exploit/voucher_swap/kernel_call/pac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/exploit/voucher_swap/kernel_call/pac.h -------------------------------------------------------------------------------- /noncereboot1131UI/exploit/voucher_swap/kernel_call/user_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/exploit/voucher_swap/kernel_call/user_client.c -------------------------------------------------------------------------------- /noncereboot1131UI/exploit/voucher_swap/kernel_call/user_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/exploit/voucher_swap/kernel_call/user_client.h -------------------------------------------------------------------------------- /noncereboot1131UI/exploit/voucher_swap/kernel_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/exploit/voucher_swap/kernel_memory.c -------------------------------------------------------------------------------- /noncereboot1131UI/exploit/voucher_swap/kernel_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/exploit/voucher_swap/kernel_memory.h -------------------------------------------------------------------------------- /noncereboot1131UI/exploit/voucher_swap/kernel_slide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/exploit/voucher_swap/kernel_slide.c -------------------------------------------------------------------------------- /noncereboot1131UI/exploit/voucher_swap/kernel_slide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/exploit/voucher_swap/kernel_slide.h -------------------------------------------------------------------------------- /noncereboot1131UI/exploit/voucher_swap/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/exploit/voucher_swap/log.c -------------------------------------------------------------------------------- /noncereboot1131UI/exploit/voucher_swap/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/exploit/voucher_swap/log.h -------------------------------------------------------------------------------- /noncereboot1131UI/exploit/voucher_swap/parameters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/exploit/voucher_swap/parameters.c -------------------------------------------------------------------------------- /noncereboot1131UI/exploit/voucher_swap/parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/exploit/voucher_swap/parameters.h -------------------------------------------------------------------------------- /noncereboot1131UI/exploit/voucher_swap/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/exploit/voucher_swap/platform.c -------------------------------------------------------------------------------- /noncereboot1131UI/exploit/voucher_swap/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/exploit/voucher_swap/platform.h -------------------------------------------------------------------------------- /noncereboot1131UI/exploit/voucher_swap/platform_match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/exploit/voucher_swap/platform_match.c -------------------------------------------------------------------------------- /noncereboot1131UI/exploit/voucher_swap/platform_match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/exploit/voucher_swap/platform_match.h -------------------------------------------------------------------------------- /noncereboot1131UI/exploit/voucher_swap/voucher_swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/exploit/voucher_swap/voucher_swap.c -------------------------------------------------------------------------------- /noncereboot1131UI/exploit/voucher_swap/voucher_swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/exploit/voucher_swap/voucher_swap.h -------------------------------------------------------------------------------- /noncereboot1131UI/headers/IOKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/headers/IOKit.h -------------------------------------------------------------------------------- /noncereboot1131UI/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/main.m -------------------------------------------------------------------------------- /noncereboot1131UI/noncereboot1131.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/noncereboot1131.entitlements -------------------------------------------------------------------------------- /noncereboot1131UI/post-exploit/noncereboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/post-exploit/noncereboot.c -------------------------------------------------------------------------------- /noncereboot1131UI/post-exploit/noncereboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/post-exploit/noncereboot.h -------------------------------------------------------------------------------- /noncereboot1131UI/post-exploit/patchfinder64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/post-exploit/patchfinder64.c -------------------------------------------------------------------------------- /noncereboot1131UI/post-exploit/patchfinder64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/post-exploit/patchfinder64.h -------------------------------------------------------------------------------- /noncereboot1131UI/post-exploit/unlocknvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/post-exploit/unlocknvram.c -------------------------------------------------------------------------------- /noncereboot1131UI/post-exploit/unlocknvram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/post-exploit/unlocknvram.h -------------------------------------------------------------------------------- /noncereboot1131UI/post-exploit/utilities/exploit_additions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/post-exploit/utilities/exploit_additions.c -------------------------------------------------------------------------------- /noncereboot1131UI/post-exploit/utilities/exploit_additions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/post-exploit/utilities/exploit_additions.h -------------------------------------------------------------------------------- /noncereboot1131UI/post-exploit/utilities/kexecute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/post-exploit/utilities/kexecute.c -------------------------------------------------------------------------------- /noncereboot1131UI/post-exploit/utilities/kexecute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/post-exploit/utilities/kexecute.h -------------------------------------------------------------------------------- /noncereboot1131UI/post-exploit/utilities/kutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/post-exploit/utilities/kutils.c -------------------------------------------------------------------------------- /noncereboot1131UI/post-exploit/utilities/kutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/post-exploit/utilities/kutils.h -------------------------------------------------------------------------------- /noncereboot1131UI/post-exploit/utilities/nonce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/post-exploit/utilities/nonce.c -------------------------------------------------------------------------------- /noncereboot1131UI/post-exploit/utilities/nonce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/post-exploit/utilities/nonce.h -------------------------------------------------------------------------------- /noncereboot1131UI/post-exploit/utilities/offsetof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/post-exploit/utilities/offsetof.c -------------------------------------------------------------------------------- /noncereboot1131UI/post-exploit/utilities/offsetof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ur0/NonceReboot12XX/HEAD/noncereboot1131UI/post-exploit/utilities/offsetof.h --------------------------------------------------------------------------------