├── .gitignore ├── LICENSE ├── README.md ├── ResSet16.entitlements ├── ResSet16.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── rorymadden.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── rorymadden.xcuserdatad │ └── xcschemes │ │ └── xcschememanagement.plist │ └── sourcelocation.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── ResSet16 ├── .DS_Store ├── Assets.xcassets │ ├── .DS_Store │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── .png │ │ └── Contents.json │ ├── Contents.json │ └── Icon.imageset │ │ ├── .png │ │ └── Contents.json ├── ContentView.swift ├── Exploit │ ├── grant_full_disk_access.h │ ├── grant_full_disk_access.m │ ├── helpers.h │ ├── helpers.m │ ├── vm_unaligned_copy_switch_race.c │ └── vm_unaligned_copy_switch_race.h ├── Extensions │ ├── Alert++.swift │ └── DeviceFeatures.swift ├── Info.plist ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── ResSet16-Bridging-Header.h └── ResSet16App.swift └── ipabuild.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcelocation/ResSet16/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcelocation/ResSet16/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcelocation/ResSet16/HEAD/README.md -------------------------------------------------------------------------------- /ResSet16.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcelocation/ResSet16/HEAD/ResSet16.entitlements -------------------------------------------------------------------------------- /ResSet16.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcelocation/ResSet16/HEAD/ResSet16.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ResSet16.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcelocation/ResSet16/HEAD/ResSet16.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ResSet16.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcelocation/ResSet16/HEAD/ResSet16.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ResSet16.xcodeproj/project.xcworkspace/xcuserdata/rorymadden.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcelocation/ResSet16/HEAD/ResSet16.xcodeproj/project.xcworkspace/xcuserdata/rorymadden.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ResSet16.xcodeproj/xcuserdata/rorymadden.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcelocation/ResSet16/HEAD/ResSet16.xcodeproj/xcuserdata/rorymadden.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ResSet16.xcodeproj/xcuserdata/sourcelocation.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcelocation/ResSet16/HEAD/ResSet16.xcodeproj/xcuserdata/sourcelocation.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ResSet16.xcodeproj/xcuserdata/sourcelocation.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcelocation/ResSet16/HEAD/ResSet16.xcodeproj/xcuserdata/sourcelocation.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ResSet16/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcelocation/ResSet16/HEAD/ResSet16/.DS_Store -------------------------------------------------------------------------------- /ResSet16/Assets.xcassets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcelocation/ResSet16/HEAD/ResSet16/Assets.xcassets/.DS_Store -------------------------------------------------------------------------------- /ResSet16/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcelocation/ResSet16/HEAD/ResSet16/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /ResSet16/Assets.xcassets/AppIcon.appiconset/ .png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcelocation/ResSet16/HEAD/ResSet16/Assets.xcassets/AppIcon.appiconset/ .png -------------------------------------------------------------------------------- /ResSet16/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcelocation/ResSet16/HEAD/ResSet16/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ResSet16/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcelocation/ResSet16/HEAD/ResSet16/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ResSet16/Assets.xcassets/Icon.imageset/ .png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcelocation/ResSet16/HEAD/ResSet16/Assets.xcassets/Icon.imageset/ .png -------------------------------------------------------------------------------- /ResSet16/Assets.xcassets/Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcelocation/ResSet16/HEAD/ResSet16/Assets.xcassets/Icon.imageset/Contents.json -------------------------------------------------------------------------------- /ResSet16/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcelocation/ResSet16/HEAD/ResSet16/ContentView.swift -------------------------------------------------------------------------------- /ResSet16/Exploit/grant_full_disk_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcelocation/ResSet16/HEAD/ResSet16/Exploit/grant_full_disk_access.h -------------------------------------------------------------------------------- /ResSet16/Exploit/grant_full_disk_access.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcelocation/ResSet16/HEAD/ResSet16/Exploit/grant_full_disk_access.m -------------------------------------------------------------------------------- /ResSet16/Exploit/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcelocation/ResSet16/HEAD/ResSet16/Exploit/helpers.h -------------------------------------------------------------------------------- /ResSet16/Exploit/helpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcelocation/ResSet16/HEAD/ResSet16/Exploit/helpers.m -------------------------------------------------------------------------------- /ResSet16/Exploit/vm_unaligned_copy_switch_race.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcelocation/ResSet16/HEAD/ResSet16/Exploit/vm_unaligned_copy_switch_race.c -------------------------------------------------------------------------------- /ResSet16/Exploit/vm_unaligned_copy_switch_race.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcelocation/ResSet16/HEAD/ResSet16/Exploit/vm_unaligned_copy_switch_race.h -------------------------------------------------------------------------------- /ResSet16/Extensions/Alert++.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcelocation/ResSet16/HEAD/ResSet16/Extensions/Alert++.swift -------------------------------------------------------------------------------- /ResSet16/Extensions/DeviceFeatures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcelocation/ResSet16/HEAD/ResSet16/Extensions/DeviceFeatures.swift -------------------------------------------------------------------------------- /ResSet16/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcelocation/ResSet16/HEAD/ResSet16/Info.plist -------------------------------------------------------------------------------- /ResSet16/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcelocation/ResSet16/HEAD/ResSet16/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ResSet16/ResSet16-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcelocation/ResSet16/HEAD/ResSet16/ResSet16-Bridging-Header.h -------------------------------------------------------------------------------- /ResSet16/ResSet16App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcelocation/ResSet16/HEAD/ResSet16/ResSet16App.swift -------------------------------------------------------------------------------- /ipabuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcelocation/ResSet16/HEAD/ipabuild.sh --------------------------------------------------------------------------------