├── LICENSE ├── README.md ├── time_waste.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── jakejames.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── jakejames.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── time_waste ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── IOAccelerator_stuff.c ├── IOAccelerator_stuff.h ├── IOKit │ ├── IOKit.tbd │ ├── IOKitKeys.h │ ├── IOKitLib.h │ ├── IOReturn.h │ ├── IOTypes.h │ ├── OSMessageNotification.h │ └── Readme.md ├── IOSurface_stuff.c ├── IOSurface_stuff.h ├── Info.plist ├── ViewController.h ├── ViewController.m ├── exploit.c ├── exploit.h ├── exploit_utilities.c ├── exploit_utilities.h ├── kernel_memory.c ├── kernel_memory.h ├── main.m ├── offsets.h └── offsets.m ├── time_wasteTests ├── Info.plist └── time_wasteTests.m └── time_wasteUITests ├── Info.plist └── time_wasteUITests.m /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/README.md -------------------------------------------------------------------------------- /time_waste.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_waste.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /time_waste.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_waste.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /time_waste.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_waste.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /time_waste.xcodeproj/project.xcworkspace/xcuserdata/jakejames.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_waste.xcodeproj/project.xcworkspace/xcuserdata/jakejames.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /time_waste.xcodeproj/xcuserdata/jakejames.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_waste.xcodeproj/xcuserdata/jakejames.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /time_waste.xcodeproj/xcuserdata/jakejames.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_waste.xcodeproj/xcuserdata/jakejames.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /time_waste/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_waste/AppDelegate.h -------------------------------------------------------------------------------- /time_waste/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_waste/AppDelegate.m -------------------------------------------------------------------------------- /time_waste/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_waste/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /time_waste/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_waste/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /time_waste/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_waste/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /time_waste/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_waste/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /time_waste/IOAccelerator_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_waste/IOAccelerator_stuff.c -------------------------------------------------------------------------------- /time_waste/IOAccelerator_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_waste/IOAccelerator_stuff.h -------------------------------------------------------------------------------- /time_waste/IOKit/IOKit.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_waste/IOKit/IOKit.tbd -------------------------------------------------------------------------------- /time_waste/IOKit/IOKitKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_waste/IOKit/IOKitKeys.h -------------------------------------------------------------------------------- /time_waste/IOKit/IOKitLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_waste/IOKit/IOKitLib.h -------------------------------------------------------------------------------- /time_waste/IOKit/IOReturn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_waste/IOKit/IOReturn.h -------------------------------------------------------------------------------- /time_waste/IOKit/IOTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_waste/IOKit/IOTypes.h -------------------------------------------------------------------------------- /time_waste/IOKit/OSMessageNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_waste/IOKit/OSMessageNotification.h -------------------------------------------------------------------------------- /time_waste/IOKit/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_waste/IOKit/Readme.md -------------------------------------------------------------------------------- /time_waste/IOSurface_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_waste/IOSurface_stuff.c -------------------------------------------------------------------------------- /time_waste/IOSurface_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_waste/IOSurface_stuff.h -------------------------------------------------------------------------------- /time_waste/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_waste/Info.plist -------------------------------------------------------------------------------- /time_waste/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_waste/ViewController.h -------------------------------------------------------------------------------- /time_waste/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_waste/ViewController.m -------------------------------------------------------------------------------- /time_waste/exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_waste/exploit.c -------------------------------------------------------------------------------- /time_waste/exploit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_waste/exploit.h -------------------------------------------------------------------------------- /time_waste/exploit_utilities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_waste/exploit_utilities.c -------------------------------------------------------------------------------- /time_waste/exploit_utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_waste/exploit_utilities.h -------------------------------------------------------------------------------- /time_waste/kernel_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_waste/kernel_memory.c -------------------------------------------------------------------------------- /time_waste/kernel_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_waste/kernel_memory.h -------------------------------------------------------------------------------- /time_waste/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_waste/main.m -------------------------------------------------------------------------------- /time_waste/offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_waste/offsets.h -------------------------------------------------------------------------------- /time_waste/offsets.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_waste/offsets.m -------------------------------------------------------------------------------- /time_wasteTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_wasteTests/Info.plist -------------------------------------------------------------------------------- /time_wasteTests/time_wasteTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_wasteTests/time_wasteTests.m -------------------------------------------------------------------------------- /time_wasteUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_wasteUITests/Info.plist -------------------------------------------------------------------------------- /time_wasteUITests/time_wasteUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/time_waste/HEAD/time_wasteUITests/time_wasteUITests.m --------------------------------------------------------------------------------