├── .gitignore ├── Pentagram.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── geosn0w.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── geosn0w.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── Pentagram ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Aux │ └── IOKit-Stuff.h ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Exploit │ ├── LICENSE │ ├── README.md │ ├── desc_race.h │ ├── desc_race.m │ ├── spray_stuff.c │ └── spray_stuff.h ├── Info.plist ├── SceneDelegate.h ├── SceneDelegate.m ├── ViewController.h ├── ViewController.m └── main.m └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Pentagram.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/Pentagram-exploit-tester/HEAD/Pentagram.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pentagram.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/Pentagram-exploit-tester/HEAD/Pentagram.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Pentagram.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/Pentagram-exploit-tester/HEAD/Pentagram.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Pentagram.xcodeproj/project.xcworkspace/xcuserdata/geosn0w.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/Pentagram-exploit-tester/HEAD/Pentagram.xcodeproj/project.xcworkspace/xcuserdata/geosn0w.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Pentagram.xcodeproj/xcuserdata/geosn0w.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/Pentagram-exploit-tester/HEAD/Pentagram.xcodeproj/xcuserdata/geosn0w.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pentagram/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/Pentagram-exploit-tester/HEAD/Pentagram/AppDelegate.h -------------------------------------------------------------------------------- /Pentagram/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/Pentagram-exploit-tester/HEAD/Pentagram/AppDelegate.m -------------------------------------------------------------------------------- /Pentagram/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/Pentagram-exploit-tester/HEAD/Pentagram/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Pentagram/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/Pentagram-exploit-tester/HEAD/Pentagram/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Pentagram/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/Pentagram-exploit-tester/HEAD/Pentagram/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Pentagram/Aux/IOKit-Stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/Pentagram-exploit-tester/HEAD/Pentagram/Aux/IOKit-Stuff.h -------------------------------------------------------------------------------- /Pentagram/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/Pentagram-exploit-tester/HEAD/Pentagram/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Pentagram/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/Pentagram-exploit-tester/HEAD/Pentagram/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Pentagram/Exploit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/Pentagram-exploit-tester/HEAD/Pentagram/Exploit/LICENSE -------------------------------------------------------------------------------- /Pentagram/Exploit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/Pentagram-exploit-tester/HEAD/Pentagram/Exploit/README.md -------------------------------------------------------------------------------- /Pentagram/Exploit/desc_race.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/Pentagram-exploit-tester/HEAD/Pentagram/Exploit/desc_race.h -------------------------------------------------------------------------------- /Pentagram/Exploit/desc_race.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/Pentagram-exploit-tester/HEAD/Pentagram/Exploit/desc_race.m -------------------------------------------------------------------------------- /Pentagram/Exploit/spray_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/Pentagram-exploit-tester/HEAD/Pentagram/Exploit/spray_stuff.c -------------------------------------------------------------------------------- /Pentagram/Exploit/spray_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/Pentagram-exploit-tester/HEAD/Pentagram/Exploit/spray_stuff.h -------------------------------------------------------------------------------- /Pentagram/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/Pentagram-exploit-tester/HEAD/Pentagram/Info.plist -------------------------------------------------------------------------------- /Pentagram/SceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/Pentagram-exploit-tester/HEAD/Pentagram/SceneDelegate.h -------------------------------------------------------------------------------- /Pentagram/SceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/Pentagram-exploit-tester/HEAD/Pentagram/SceneDelegate.m -------------------------------------------------------------------------------- /Pentagram/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/Pentagram-exploit-tester/HEAD/Pentagram/ViewController.h -------------------------------------------------------------------------------- /Pentagram/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/Pentagram-exploit-tester/HEAD/Pentagram/ViewController.m -------------------------------------------------------------------------------- /Pentagram/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/Pentagram-exploit-tester/HEAD/Pentagram/main.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSn0w/Pentagram-exploit-tester/HEAD/README.md --------------------------------------------------------------------------------