├── LICENSE ├── README.md ├── desc_race_A15.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── markie.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── markie.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── desc_race_A15 ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── ContentView.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── desc_race_A15-Bridging-Header.h ├── desc_race_A15App.swift └── exploit │ ├── desc_race.c │ ├── desc_race.h │ ├── iokit.h │ ├── spray_stuff.c │ └── spray_stuff.h └── src ├── dark.png ├── light.png ├── sc.png ├── vidforgif.gif └── vidforgif.mp4 /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markie-dev/desc_race_A15/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markie-dev/desc_race_A15/HEAD/README.md -------------------------------------------------------------------------------- /desc_race_A15.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markie-dev/desc_race_A15/HEAD/desc_race_A15.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /desc_race_A15.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markie-dev/desc_race_A15/HEAD/desc_race_A15.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /desc_race_A15.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markie-dev/desc_race_A15/HEAD/desc_race_A15.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /desc_race_A15.xcodeproj/project.xcworkspace/xcuserdata/markie.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markie-dev/desc_race_A15/HEAD/desc_race_A15.xcodeproj/project.xcworkspace/xcuserdata/markie.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /desc_race_A15.xcodeproj/xcuserdata/markie.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markie-dev/desc_race_A15/HEAD/desc_race_A15.xcodeproj/xcuserdata/markie.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /desc_race_A15/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markie-dev/desc_race_A15/HEAD/desc_race_A15/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /desc_race_A15/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markie-dev/desc_race_A15/HEAD/desc_race_A15/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /desc_race_A15/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markie-dev/desc_race_A15/HEAD/desc_race_A15/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /desc_race_A15/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markie-dev/desc_race_A15/HEAD/desc_race_A15/ContentView.swift -------------------------------------------------------------------------------- /desc_race_A15/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markie-dev/desc_race_A15/HEAD/desc_race_A15/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /desc_race_A15/desc_race_A15-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markie-dev/desc_race_A15/HEAD/desc_race_A15/desc_race_A15-Bridging-Header.h -------------------------------------------------------------------------------- /desc_race_A15/desc_race_A15App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markie-dev/desc_race_A15/HEAD/desc_race_A15/desc_race_A15App.swift -------------------------------------------------------------------------------- /desc_race_A15/exploit/desc_race.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markie-dev/desc_race_A15/HEAD/desc_race_A15/exploit/desc_race.c -------------------------------------------------------------------------------- /desc_race_A15/exploit/desc_race.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markie-dev/desc_race_A15/HEAD/desc_race_A15/exploit/desc_race.h -------------------------------------------------------------------------------- /desc_race_A15/exploit/iokit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markie-dev/desc_race_A15/HEAD/desc_race_A15/exploit/iokit.h -------------------------------------------------------------------------------- /desc_race_A15/exploit/spray_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markie-dev/desc_race_A15/HEAD/desc_race_A15/exploit/spray_stuff.c -------------------------------------------------------------------------------- /desc_race_A15/exploit/spray_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markie-dev/desc_race_A15/HEAD/desc_race_A15/exploit/spray_stuff.h -------------------------------------------------------------------------------- /src/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markie-dev/desc_race_A15/HEAD/src/dark.png -------------------------------------------------------------------------------- /src/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markie-dev/desc_race_A15/HEAD/src/light.png -------------------------------------------------------------------------------- /src/sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markie-dev/desc_race_A15/HEAD/src/sc.png -------------------------------------------------------------------------------- /src/vidforgif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markie-dev/desc_race_A15/HEAD/src/vidforgif.gif -------------------------------------------------------------------------------- /src/vidforgif.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markie-dev/desc_race_A15/HEAD/src/vidforgif.mp4 --------------------------------------------------------------------------------