├── .gitignore ├── AppDelegate.swift ├── Info.plist ├── LICENSE ├── P0 Project 0 JB Fork F.C.E. 365.xcodeproj.zip ├── README ├── README.md ├── ViewController.swift ├── cdhash.c ├── cdhash.h ├── disable_protections.c ├── disable_protections.h ├── drop_payload.c ├── drop_payload.h ├── jailbreak.c ├── kernel_memory_helpers.c ├── kernel_memory_helpers.h ├── kernel_sploit.c ├── kernel_sploit.h ├── mach_portal-Bridging-Header.h ├── mach_portal.entitlements ├── offsets.c ├── offsets.h ├── patch_amfid.c ├── patch_amfid.h ├── sandbox_escape.c ├── sandbox_escape.h ├── unsandboxer.c └── unsandboxer.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/iOS-10.1.1-Project-0-Exploit-Fork/HEAD/.gitignore -------------------------------------------------------------------------------- /AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/iOS-10.1.1-Project-0-Exploit-Fork/HEAD/AppDelegate.swift -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/iOS-10.1.1-Project-0-Exploit-Fork/HEAD/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/iOS-10.1.1-Project-0-Exploit-Fork/HEAD/LICENSE -------------------------------------------------------------------------------- /P0 Project 0 JB Fork F.C.E. 365.xcodeproj.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/iOS-10.1.1-Project-0-Exploit-Fork/HEAD/P0 Project 0 JB Fork F.C.E. 365.xcodeproj.zip -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/iOS-10.1.1-Project-0-Exploit-Fork/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/iOS-10.1.1-Project-0-Exploit-Fork/HEAD/README.md -------------------------------------------------------------------------------- /ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/iOS-10.1.1-Project-0-Exploit-Fork/HEAD/ViewController.swift -------------------------------------------------------------------------------- /cdhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/iOS-10.1.1-Project-0-Exploit-Fork/HEAD/cdhash.c -------------------------------------------------------------------------------- /cdhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/iOS-10.1.1-Project-0-Exploit-Fork/HEAD/cdhash.h -------------------------------------------------------------------------------- /disable_protections.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/iOS-10.1.1-Project-0-Exploit-Fork/HEAD/disable_protections.c -------------------------------------------------------------------------------- /disable_protections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/iOS-10.1.1-Project-0-Exploit-Fork/HEAD/disable_protections.h -------------------------------------------------------------------------------- /drop_payload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/iOS-10.1.1-Project-0-Exploit-Fork/HEAD/drop_payload.c -------------------------------------------------------------------------------- /drop_payload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/iOS-10.1.1-Project-0-Exploit-Fork/HEAD/drop_payload.h -------------------------------------------------------------------------------- /jailbreak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/iOS-10.1.1-Project-0-Exploit-Fork/HEAD/jailbreak.c -------------------------------------------------------------------------------- /kernel_memory_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/iOS-10.1.1-Project-0-Exploit-Fork/HEAD/kernel_memory_helpers.c -------------------------------------------------------------------------------- /kernel_memory_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/iOS-10.1.1-Project-0-Exploit-Fork/HEAD/kernel_memory_helpers.h -------------------------------------------------------------------------------- /kernel_sploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/iOS-10.1.1-Project-0-Exploit-Fork/HEAD/kernel_sploit.c -------------------------------------------------------------------------------- /kernel_sploit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/iOS-10.1.1-Project-0-Exploit-Fork/HEAD/kernel_sploit.h -------------------------------------------------------------------------------- /mach_portal-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/iOS-10.1.1-Project-0-Exploit-Fork/HEAD/mach_portal-Bridging-Header.h -------------------------------------------------------------------------------- /mach_portal.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/iOS-10.1.1-Project-0-Exploit-Fork/HEAD/mach_portal.entitlements -------------------------------------------------------------------------------- /offsets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/iOS-10.1.1-Project-0-Exploit-Fork/HEAD/offsets.c -------------------------------------------------------------------------------- /offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/iOS-10.1.1-Project-0-Exploit-Fork/HEAD/offsets.h -------------------------------------------------------------------------------- /patch_amfid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/iOS-10.1.1-Project-0-Exploit-Fork/HEAD/patch_amfid.c -------------------------------------------------------------------------------- /patch_amfid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/iOS-10.1.1-Project-0-Exploit-Fork/HEAD/patch_amfid.h -------------------------------------------------------------------------------- /sandbox_escape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/iOS-10.1.1-Project-0-Exploit-Fork/HEAD/sandbox_escape.c -------------------------------------------------------------------------------- /sandbox_escape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/iOS-10.1.1-Project-0-Exploit-Fork/HEAD/sandbox_escape.h -------------------------------------------------------------------------------- /unsandboxer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/iOS-10.1.1-Project-0-Exploit-Fork/HEAD/unsandboxer.c -------------------------------------------------------------------------------- /unsandboxer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/iOS-10.1.1-Project-0-Exploit-Fork/HEAD/unsandboxer.h --------------------------------------------------------------------------------