├── .github └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── Bootstrap └── jb.zip ├── Makefile ├── README.md ├── RootHelperSample ├── CoreServices.h ├── Exploits │ └── fastPathSign │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── ios │ │ └── src │ │ ├── Templates │ │ ├── AppStoreCodeDirectory.h │ │ ├── DecryptedSignature.h │ │ ├── PrivateKey.h │ │ └── SignatureBlob.h │ │ ├── codesign.h │ │ ├── codesign.m │ │ ├── coretrust_bug.c │ │ ├── coretrust_bug.h │ │ ├── external │ │ ├── .gitignore │ │ ├── include │ │ │ └── choma │ │ │ │ ├── Base64.h │ │ │ │ ├── BufferedStream.h │ │ │ │ ├── CSBlob.h │ │ │ │ ├── CodeDirectory.h │ │ │ │ ├── FAT.h │ │ │ │ ├── FileStream.h │ │ │ │ ├── Host.h │ │ │ │ ├── MachO.h │ │ │ │ ├── MachOByteOrder.h │ │ │ │ ├── MachOLoadCommand.h │ │ │ │ ├── MemoryStream.h │ │ │ │ ├── PatchFinder.h │ │ │ │ ├── SignOSSL.h │ │ │ │ ├── Signing.h │ │ │ │ └── Util.h │ │ └── lib │ │ │ ├── libchoma.a │ │ │ └── libcrypto.a │ │ └── main.m ├── Makefile ├── RemoteLog.h ├── RootHelperSample.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── ibarahime.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── TSUtil.h ├── TSUtil.m ├── control ├── entitlements.plist ├── exepatch.c ├── exepatch.h ├── external │ ├── include │ │ └── choma │ │ │ ├── Base64.h │ │ │ ├── BufferedStream.h │ │ │ ├── CSBlob.h │ │ │ ├── CodeDirectory.h │ │ │ ├── FAT.h │ │ │ ├── FileStream.h │ │ │ ├── Host.h │ │ │ ├── MachO.h │ │ │ ├── MachOByteOrder.h │ │ │ ├── MachOLoadCommand.h │ │ │ ├── MemoryStream.h │ │ │ ├── PatchFinder.h │ │ │ ├── SignOSSL.h │ │ │ ├── Signing.h │ │ │ └── Util.h │ └── lib │ │ ├── libchoma.a │ │ └── libcrypto.a ├── insert_dylib.h ├── insert_dylib.m ├── jbroot.h ├── jbroot.m ├── launchdshim │ ├── .gitignore │ ├── build.sh │ ├── cfprefsdshim │ │ ├── Makefile │ │ ├── build.sh │ │ ├── cfprefsdshim.m │ │ ├── cfprefsdshimsignedinjected │ │ └── ent.plist │ ├── generalhook │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── LICENCE │ │ ├── MRUIents.plist │ │ ├── Makefile │ │ ├── README.md │ │ ├── SpringBoardEnts.plist │ │ ├── build.sh │ │ ├── codesign.h │ │ ├── control │ │ ├── entitlements.plist │ │ ├── installdents.plist │ │ ├── litehook.c │ │ ├── litehook.h │ │ ├── main.m │ │ ├── mediaserverdents.plist │ │ ├── nfcdents.plist │ │ ├── sandbox.h │ │ ├── utils.h │ │ └── utils.m │ ├── launchdentitlements.plist │ ├── launchdhook │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── Frameworks │ │ │ └── IOMobileFramebuffer.framework │ │ │ │ └── IOMobileFramebuffer.tbd │ │ ├── IOMobileFramebuffer.h │ │ ├── LICENCE │ │ ├── Makefile │ │ ├── README.md │ │ ├── build.sh │ │ ├── choma │ │ │ ├── Base64.h │ │ │ ├── BufferedStream.h │ │ │ ├── CSBlob.h │ │ │ ├── CodeDirectory.h │ │ │ ├── FAT.h │ │ │ ├── FileStream.h │ │ │ ├── Host.h │ │ │ ├── MachO.h │ │ │ ├── MachOByteOrder.h │ │ │ ├── MachOLoadCommand.h │ │ │ ├── MemoryStream.h │ │ │ ├── PatchFinder.h │ │ │ ├── SignOSSL.h │ │ │ ├── Signing.h │ │ │ └── Util.h │ │ ├── crashreporter.h │ │ ├── crashreporter.m │ │ ├── entitlements.plist │ │ ├── fishhook.c │ │ ├── fishhook.h │ │ ├── fun │ │ │ ├── cs_blobs.h │ │ │ ├── kpf │ │ │ │ ├── libdimentio.h │ │ │ │ ├── libdimentio.m │ │ │ │ ├── patchfinder.h │ │ │ │ ├── patchfinder.m │ │ │ │ ├── patchfinder64.h │ │ │ │ ├── patchfinder64.m │ │ │ │ ├── proc.c │ │ │ │ └── proc.h │ │ │ ├── krw.h │ │ │ ├── krw.m │ │ │ ├── memoryControl.h │ │ │ ├── memoryControl.m │ │ │ ├── offsets.h │ │ │ ├── offsets.m │ │ │ ├── proc.c │ │ │ ├── proc.h │ │ │ ├── vnode.h │ │ │ └── vnode.m │ │ ├── jbserver │ │ │ ├── bsm │ │ │ │ ├── audit.h │ │ │ │ ├── audit_filter.h │ │ │ │ ├── audit_session.h │ │ │ │ ├── audit_uevents.h │ │ │ │ └── libbsm.h │ │ │ ├── codesign.h │ │ │ ├── exec_patch.h │ │ │ ├── exec_patch.m │ │ │ ├── info.c │ │ │ ├── info.h │ │ │ ├── jbclient_xpc.c │ │ │ ├── jbclient_xpc.h │ │ │ ├── jbdomain_systemwide.c │ │ │ ├── jbserver.c │ │ │ ├── jbserver.h │ │ │ ├── jbserver_global.c │ │ │ ├── kernel.c │ │ │ ├── kernel.h │ │ │ ├── libproc.h │ │ │ ├── libproc_private.h │ │ │ ├── log.c │ │ │ ├── log.h │ │ │ ├── machine_info.h │ │ │ ├── primitives_external.h │ │ │ ├── pte.h │ │ │ ├── pvh.h │ │ │ ├── sandbox.h │ │ │ ├── spawnRoot.c │ │ │ ├── spawnRoot.h │ │ │ ├── translation.c │ │ │ ├── translation.h │ │ │ ├── util.c │ │ │ ├── util.h │ │ │ └── xpc_private.h │ │ ├── jitter │ │ │ ├── Makefile │ │ │ ├── ent.plist │ │ │ ├── jitter.m │ │ │ └── jitterd.plist │ │ ├── libkfd.h │ │ ├── libkfd │ │ │ ├── common.h │ │ │ ├── info.h │ │ │ ├── info │ │ │ │ ├── dynamic_info.h │ │ │ │ └── static_info.h │ │ │ ├── krkw.h │ │ │ ├── krkw │ │ │ │ ├── kread │ │ │ │ │ ├── kread_kqueue_workloop_ctl.h │ │ │ │ │ └── kread_sem_open.h │ │ │ │ └── kwrite │ │ │ │ │ ├── kwrite_dup.h │ │ │ │ │ └── kwrite_sem_open.h │ │ │ ├── perf.h │ │ │ ├── puaf.h │ │ │ └── puaf │ │ │ │ ├── landa.h │ │ │ │ ├── physpuppet.h │ │ │ │ └── smith.h │ │ ├── main.m │ │ ├── unsandbox.h │ │ ├── unsandbox.m │ │ ├── unsandbox1.m │ │ ├── unsandbox2.m │ │ ├── verbose │ │ │ ├── IOMobileFramebuffer.h │ │ │ ├── console │ │ │ │ ├── iso_font.c │ │ │ │ ├── msgbuf.h │ │ │ │ ├── serial_protos.h │ │ │ │ ├── video_console.c │ │ │ │ ├── video_console.h │ │ │ │ └── video_scroll.c │ │ │ └── verbose_boot.m │ │ ├── xpc_hook.c │ │ └── xpc_hook.h │ └── xpcproxyhook │ │ ├── Makefile │ │ ├── build.sh │ │ ├── fishhook.c │ │ ├── fishhook.h │ │ ├── xpcproxydents.plist │ │ └── xpcproxyhook.m └── main.m ├── Serotonin.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ ├── WorkspaceSettings.xcsettings │ │ └── swiftpm │ │ └── Package.resolved ├── xcshareddata │ └── xcschemes │ │ └── usprebooter.xcscheme └── xcuserdata │ ├── hariz.xcuserdatad │ └── xcschemes │ │ └── xcschememanagement.plist │ ├── haxi0.xcuserdatad │ └── xcschemes │ │ └── xcschememanagement.plist │ ├── ibarahime.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ └── xcschememanagement.plist │ └── mineek.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── artwork ├── serotonin-precomposed.png └── serotonin.png ├── cfprefsdshimsignedinjected ├── ent.plist ├── launchd └── usprebooter ├── AppDelegate.swift ├── Assets.xcassets ├── AccentColor.colorset │ └── Contents.json ├── AppIcon.appiconset │ ├── Contents.json │ └── serotonin.png └── Contents.json ├── Info.plist ├── Private Headers I stole from the macOS SDK ├── bootstrap.h ├── spawn_internal.h ├── spawn_private.h └── xpc │ ├── activity.h │ ├── availability.h │ ├── base.h │ ├── debug.h │ ├── endpoint.h │ ├── launch.h │ ├── listener.h │ ├── rich_error.h │ ├── session.h │ ├── xpc.h │ └── xpc_connection.h ├── Serotonin.jp2 ├── SettingsManager.swift ├── UI ├── Logger.swift ├── MainTabBarController.swift └── Tabs │ ├── Design.swift │ ├── JailbreakViewController.swift │ ├── OptionsViewController.swift │ ├── ToolbarButton.swift │ └── ViewsInOptions │ ├── AboutViewController.swift │ ├── ChangelogViewController.swift │ ├── Licenses │ ├── Markdownosaur.md │ └── swift-markdown.md │ ├── LicensesViewController.swift │ └── MD.swift ├── ct_bypass_signed ├── fun ├── cs_blobs.h ├── kpf │ ├── libdimentio.h │ ├── libdimentio.m │ ├── patchfinder.h │ ├── patchfinder.m │ ├── patchfinder64.h │ ├── patchfinder64.m │ ├── proc.c │ └── proc.h ├── krw.h ├── krw.m ├── offsets.h ├── offsets.m ├── proc.c ├── proc.h ├── vnode.h └── vnode.m ├── ldid ├── libkfd.h ├── libkfd ├── common.h ├── info.h ├── info │ ├── dynamic_info.h │ └── static_info.h ├── krkw.h ├── krkw │ ├── kread │ │ ├── kread_kqueue_workloop_ctl.h │ │ └── kread_sem_open.h │ └── kwrite │ │ ├── kwrite_dup.h │ │ └── kwrite_sem_open.h ├── perf.h ├── puaf.h └── puaf │ ├── landa.h │ ├── physpuppet.h │ └── smith.h ├── memoryControl.h ├── memoryControl.m ├── overwriter.h ├── overwriter.m ├── troller.h ├── troller.m ├── unzip ├── usprebooter-Bridging-Header.h ├── usprebooterApp.swift ├── util.h └── util.m /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/.gitmodules -------------------------------------------------------------------------------- /Bootstrap/jb.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/Bootstrap/jb.zip -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/README.md -------------------------------------------------------------------------------- /RootHelperSample/CoreServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/CoreServices.h -------------------------------------------------------------------------------- /RootHelperSample/Exploits/fastPathSign/.gitignore: -------------------------------------------------------------------------------- 1 | fastPathSign -------------------------------------------------------------------------------- /RootHelperSample/Exploits/fastPathSign/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/Exploits/fastPathSign/Makefile -------------------------------------------------------------------------------- /RootHelperSample/Exploits/fastPathSign/ios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/Exploits/fastPathSign/ios -------------------------------------------------------------------------------- /RootHelperSample/Exploits/fastPathSign/src/Templates/AppStoreCodeDirectory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/Exploits/fastPathSign/src/Templates/AppStoreCodeDirectory.h -------------------------------------------------------------------------------- /RootHelperSample/Exploits/fastPathSign/src/Templates/DecryptedSignature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/Exploits/fastPathSign/src/Templates/DecryptedSignature.h -------------------------------------------------------------------------------- /RootHelperSample/Exploits/fastPathSign/src/Templates/PrivateKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/Exploits/fastPathSign/src/Templates/PrivateKey.h -------------------------------------------------------------------------------- /RootHelperSample/Exploits/fastPathSign/src/Templates/SignatureBlob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/Exploits/fastPathSign/src/Templates/SignatureBlob.h -------------------------------------------------------------------------------- /RootHelperSample/Exploits/fastPathSign/src/codesign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/Exploits/fastPathSign/src/codesign.h -------------------------------------------------------------------------------- /RootHelperSample/Exploits/fastPathSign/src/codesign.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/Exploits/fastPathSign/src/codesign.m -------------------------------------------------------------------------------- /RootHelperSample/Exploits/fastPathSign/src/coretrust_bug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/Exploits/fastPathSign/src/coretrust_bug.c -------------------------------------------------------------------------------- /RootHelperSample/Exploits/fastPathSign/src/coretrust_bug.h: -------------------------------------------------------------------------------- 1 | int apply_coretrust_bypass(const char *machoPath); -------------------------------------------------------------------------------- /RootHelperSample/Exploits/fastPathSign/src/external/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RootHelperSample/Exploits/fastPathSign/src/external/include/choma/Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/Exploits/fastPathSign/src/external/include/choma/Base64.h -------------------------------------------------------------------------------- /RootHelperSample/Exploits/fastPathSign/src/external/include/choma/BufferedStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/Exploits/fastPathSign/src/external/include/choma/BufferedStream.h -------------------------------------------------------------------------------- /RootHelperSample/Exploits/fastPathSign/src/external/include/choma/CSBlob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/Exploits/fastPathSign/src/external/include/choma/CSBlob.h -------------------------------------------------------------------------------- /RootHelperSample/Exploits/fastPathSign/src/external/include/choma/CodeDirectory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/Exploits/fastPathSign/src/external/include/choma/CodeDirectory.h -------------------------------------------------------------------------------- /RootHelperSample/Exploits/fastPathSign/src/external/include/choma/FAT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/Exploits/fastPathSign/src/external/include/choma/FAT.h -------------------------------------------------------------------------------- /RootHelperSample/Exploits/fastPathSign/src/external/include/choma/FileStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/Exploits/fastPathSign/src/external/include/choma/FileStream.h -------------------------------------------------------------------------------- /RootHelperSample/Exploits/fastPathSign/src/external/include/choma/Host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/Exploits/fastPathSign/src/external/include/choma/Host.h -------------------------------------------------------------------------------- /RootHelperSample/Exploits/fastPathSign/src/external/include/choma/MachO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/Exploits/fastPathSign/src/external/include/choma/MachO.h -------------------------------------------------------------------------------- /RootHelperSample/Exploits/fastPathSign/src/external/include/choma/MachOByteOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/Exploits/fastPathSign/src/external/include/choma/MachOByteOrder.h -------------------------------------------------------------------------------- /RootHelperSample/Exploits/fastPathSign/src/external/include/choma/MachOLoadCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/Exploits/fastPathSign/src/external/include/choma/MachOLoadCommand.h -------------------------------------------------------------------------------- /RootHelperSample/Exploits/fastPathSign/src/external/include/choma/MemoryStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/Exploits/fastPathSign/src/external/include/choma/MemoryStream.h -------------------------------------------------------------------------------- /RootHelperSample/Exploits/fastPathSign/src/external/include/choma/PatchFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/Exploits/fastPathSign/src/external/include/choma/PatchFinder.h -------------------------------------------------------------------------------- /RootHelperSample/Exploits/fastPathSign/src/external/include/choma/SignOSSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/Exploits/fastPathSign/src/external/include/choma/SignOSSL.h -------------------------------------------------------------------------------- /RootHelperSample/Exploits/fastPathSign/src/external/include/choma/Signing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/Exploits/fastPathSign/src/external/include/choma/Signing.h -------------------------------------------------------------------------------- /RootHelperSample/Exploits/fastPathSign/src/external/include/choma/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/Exploits/fastPathSign/src/external/include/choma/Util.h -------------------------------------------------------------------------------- /RootHelperSample/Exploits/fastPathSign/src/external/lib/libchoma.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/Exploits/fastPathSign/src/external/lib/libchoma.a -------------------------------------------------------------------------------- /RootHelperSample/Exploits/fastPathSign/src/external/lib/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/Exploits/fastPathSign/src/external/lib/libcrypto.a -------------------------------------------------------------------------------- /RootHelperSample/Exploits/fastPathSign/src/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/Exploits/fastPathSign/src/main.m -------------------------------------------------------------------------------- /RootHelperSample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/Makefile -------------------------------------------------------------------------------- /RootHelperSample/RemoteLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/RemoteLog.h -------------------------------------------------------------------------------- /RootHelperSample/RootHelperSample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/RootHelperSample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RootHelperSample/RootHelperSample.xcodeproj/xcuserdata/ibarahime.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/RootHelperSample.xcodeproj/xcuserdata/ibarahime.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /RootHelperSample/TSUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/TSUtil.h -------------------------------------------------------------------------------- /RootHelperSample/TSUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/TSUtil.m -------------------------------------------------------------------------------- /RootHelperSample/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/control -------------------------------------------------------------------------------- /RootHelperSample/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/entitlements.plist -------------------------------------------------------------------------------- /RootHelperSample/exepatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/exepatch.c -------------------------------------------------------------------------------- /RootHelperSample/exepatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/exepatch.h -------------------------------------------------------------------------------- /RootHelperSample/external/include/choma/Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/external/include/choma/Base64.h -------------------------------------------------------------------------------- /RootHelperSample/external/include/choma/BufferedStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/external/include/choma/BufferedStream.h -------------------------------------------------------------------------------- /RootHelperSample/external/include/choma/CSBlob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/external/include/choma/CSBlob.h -------------------------------------------------------------------------------- /RootHelperSample/external/include/choma/CodeDirectory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/external/include/choma/CodeDirectory.h -------------------------------------------------------------------------------- /RootHelperSample/external/include/choma/FAT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/external/include/choma/FAT.h -------------------------------------------------------------------------------- /RootHelperSample/external/include/choma/FileStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/external/include/choma/FileStream.h -------------------------------------------------------------------------------- /RootHelperSample/external/include/choma/Host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/external/include/choma/Host.h -------------------------------------------------------------------------------- /RootHelperSample/external/include/choma/MachO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/external/include/choma/MachO.h -------------------------------------------------------------------------------- /RootHelperSample/external/include/choma/MachOByteOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/external/include/choma/MachOByteOrder.h -------------------------------------------------------------------------------- /RootHelperSample/external/include/choma/MachOLoadCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/external/include/choma/MachOLoadCommand.h -------------------------------------------------------------------------------- /RootHelperSample/external/include/choma/MemoryStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/external/include/choma/MemoryStream.h -------------------------------------------------------------------------------- /RootHelperSample/external/include/choma/PatchFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/external/include/choma/PatchFinder.h -------------------------------------------------------------------------------- /RootHelperSample/external/include/choma/SignOSSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/external/include/choma/SignOSSL.h -------------------------------------------------------------------------------- /RootHelperSample/external/include/choma/Signing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/external/include/choma/Signing.h -------------------------------------------------------------------------------- /RootHelperSample/external/include/choma/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/external/include/choma/Util.h -------------------------------------------------------------------------------- /RootHelperSample/external/lib/libchoma.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/external/lib/libchoma.a -------------------------------------------------------------------------------- /RootHelperSample/external/lib/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/external/lib/libcrypto.a -------------------------------------------------------------------------------- /RootHelperSample/insert_dylib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/insert_dylib.h -------------------------------------------------------------------------------- /RootHelperSample/insert_dylib.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/insert_dylib.m -------------------------------------------------------------------------------- /RootHelperSample/jbroot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/jbroot.h -------------------------------------------------------------------------------- /RootHelperSample/jbroot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/jbroot.m -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/.gitignore -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/build.sh -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/cfprefsdshim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/cfprefsdshim/Makefile -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/cfprefsdshim/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/cfprefsdshim/build.sh -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/cfprefsdshim/cfprefsdshim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/cfprefsdshim/cfprefsdshim.m -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/cfprefsdshim/cfprefsdshimsignedinjected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/cfprefsdshim/cfprefsdshimsignedinjected -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/cfprefsdshim/ent.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/cfprefsdshim/ent.plist -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/generalhook/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/generalhook/.vscode/settings.json -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/generalhook/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/generalhook/LICENCE -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/generalhook/MRUIents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/generalhook/MRUIents.plist -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/generalhook/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/generalhook/Makefile -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/generalhook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/generalhook/README.md -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/generalhook/SpringBoardEnts.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/generalhook/SpringBoardEnts.plist -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/generalhook/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/generalhook/build.sh -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/generalhook/codesign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/generalhook/codesign.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/generalhook/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/generalhook/control -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/generalhook/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/generalhook/entitlements.plist -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/generalhook/installdents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/generalhook/installdents.plist -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/generalhook/litehook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/generalhook/litehook.c -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/generalhook/litehook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/generalhook/litehook.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/generalhook/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/generalhook/main.m -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/generalhook/mediaserverdents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/generalhook/mediaserverdents.plist -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/generalhook/nfcdents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/generalhook/nfcdents.plist -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/generalhook/sandbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/generalhook/sandbox.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/generalhook/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/generalhook/utils.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/generalhook/utils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/generalhook/utils.m -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdentitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdentitlements.plist -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/.vscode/settings.json -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/Frameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/Frameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer.tbd -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/IOMobileFramebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/IOMobileFramebuffer.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/LICENCE -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/Makefile -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/README.md -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/build.sh -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/choma/Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/choma/Base64.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/choma/BufferedStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/choma/BufferedStream.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/choma/CSBlob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/choma/CSBlob.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/choma/CodeDirectory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/choma/CodeDirectory.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/choma/FAT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/choma/FAT.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/choma/FileStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/choma/FileStream.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/choma/Host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/choma/Host.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/choma/MachO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/choma/MachO.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/choma/MachOByteOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/choma/MachOByteOrder.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/choma/MachOLoadCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/choma/MachOLoadCommand.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/choma/MemoryStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/choma/MemoryStream.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/choma/PatchFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/choma/PatchFinder.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/choma/SignOSSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/choma/SignOSSL.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/choma/Signing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/choma/Signing.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/choma/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/choma/Util.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/crashreporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/crashreporter.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/crashreporter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/crashreporter.m -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/entitlements.plist -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/fishhook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/fishhook.c -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/fishhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/fishhook.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/fun/cs_blobs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/fun/cs_blobs.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/fun/kpf/libdimentio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/fun/kpf/libdimentio.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/fun/kpf/libdimentio.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/fun/kpf/libdimentio.m -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/fun/kpf/patchfinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/fun/kpf/patchfinder.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/fun/kpf/patchfinder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/fun/kpf/patchfinder.m -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/fun/kpf/patchfinder64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/fun/kpf/patchfinder64.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/fun/kpf/patchfinder64.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/fun/kpf/patchfinder64.m -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/fun/kpf/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/fun/kpf/proc.c -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/fun/kpf/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/fun/kpf/proc.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/fun/krw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/fun/krw.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/fun/krw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/fun/krw.m -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/fun/memoryControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/fun/memoryControl.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/fun/memoryControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/fun/memoryControl.m -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/fun/offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/fun/offsets.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/fun/offsets.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/fun/offsets.m -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/fun/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/fun/proc.c -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/fun/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/fun/proc.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/fun/vnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/fun/vnode.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/fun/vnode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/fun/vnode.m -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jbserver/bsm/audit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jbserver/bsm/audit.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jbserver/bsm/audit_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jbserver/bsm/audit_filter.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jbserver/bsm/audit_session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jbserver/bsm/audit_session.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jbserver/bsm/audit_uevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jbserver/bsm/audit_uevents.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jbserver/bsm/libbsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jbserver/bsm/libbsm.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jbserver/codesign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jbserver/codesign.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jbserver/exec_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jbserver/exec_patch.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jbserver/exec_patch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jbserver/exec_patch.m -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jbserver/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jbserver/info.c -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jbserver/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jbserver/info.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jbserver/jbclient_xpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jbserver/jbclient_xpc.c -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jbserver/jbclient_xpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jbserver/jbclient_xpc.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jbserver/jbdomain_systemwide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jbserver/jbdomain_systemwide.c -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jbserver/jbserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jbserver/jbserver.c -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jbserver/jbserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jbserver/jbserver.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jbserver/jbserver_global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jbserver/jbserver_global.c -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jbserver/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jbserver/kernel.c -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jbserver/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jbserver/kernel.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jbserver/libproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jbserver/libproc.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jbserver/libproc_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jbserver/libproc_private.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jbserver/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jbserver/log.c -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jbserver/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jbserver/log.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jbserver/machine_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jbserver/machine_info.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jbserver/primitives_external.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jbserver/primitives_external.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jbserver/pte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jbserver/pte.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jbserver/pvh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jbserver/pvh.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jbserver/sandbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jbserver/sandbox.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jbserver/spawnRoot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jbserver/spawnRoot.c -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jbserver/spawnRoot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jbserver/spawnRoot.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jbserver/translation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jbserver/translation.c -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jbserver/translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jbserver/translation.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jbserver/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jbserver/util.c -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jbserver/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jbserver/util.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jbserver/xpc_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jbserver/xpc_private.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jitter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jitter/Makefile -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jitter/ent.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jitter/ent.plist -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jitter/jitter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jitter/jitter.m -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/jitter/jitterd.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/jitter/jitterd.plist -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/libkfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/libkfd.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/libkfd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/libkfd/common.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/libkfd/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/libkfd/info.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/libkfd/info/dynamic_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/libkfd/info/dynamic_info.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/libkfd/info/static_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/libkfd/info/static_info.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/libkfd/krkw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/libkfd/krkw.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/libkfd/krkw/kread/kread_kqueue_workloop_ctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/libkfd/krkw/kread/kread_kqueue_workloop_ctl.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/libkfd/krkw/kread/kread_sem_open.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/libkfd/krkw/kread/kread_sem_open.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/libkfd/krkw/kwrite/kwrite_dup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/libkfd/krkw/kwrite/kwrite_dup.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/libkfd/krkw/kwrite/kwrite_sem_open.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/libkfd/krkw/kwrite/kwrite_sem_open.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/libkfd/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/libkfd/perf.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/libkfd/puaf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/libkfd/puaf.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/libkfd/puaf/landa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/libkfd/puaf/landa.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/libkfd/puaf/physpuppet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/libkfd/puaf/physpuppet.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/libkfd/puaf/smith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/libkfd/puaf/smith.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/main.m -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/unsandbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/unsandbox.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/unsandbox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/unsandbox.m -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/unsandbox1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/unsandbox1.m -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/unsandbox2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/unsandbox2.m -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/verbose/IOMobileFramebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/verbose/IOMobileFramebuffer.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/verbose/console/iso_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/verbose/console/iso_font.c -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/verbose/console/msgbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/verbose/console/msgbuf.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/verbose/console/serial_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/verbose/console/serial_protos.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/verbose/console/video_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/verbose/console/video_console.c -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/verbose/console/video_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/verbose/console/video_console.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/verbose/console/video_scroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/verbose/console/video_scroll.c -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/verbose/verbose_boot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/verbose/verbose_boot.m -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/xpc_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/launchdhook/xpc_hook.c -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/launchdhook/xpc_hook.h: -------------------------------------------------------------------------------- 1 | void initXPCHooks(void); -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/xpcproxyhook/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/xpcproxyhook/Makefile -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/xpcproxyhook/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/xpcproxyhook/build.sh -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/xpcproxyhook/fishhook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/xpcproxyhook/fishhook.c -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/xpcproxyhook/fishhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/xpcproxyhook/fishhook.h -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/xpcproxyhook/xpcproxydents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/xpcproxyhook/xpcproxydents.plist -------------------------------------------------------------------------------- /RootHelperSample/launchdshim/xpcproxyhook/xpcproxyhook.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/launchdshim/xpcproxyhook/xpcproxyhook.m -------------------------------------------------------------------------------- /RootHelperSample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/RootHelperSample/main.m -------------------------------------------------------------------------------- /Serotonin.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/Serotonin.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Serotonin.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/Serotonin.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Serotonin.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/Serotonin.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Serotonin.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/Serotonin.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Serotonin.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/Serotonin.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Serotonin.xcodeproj/xcshareddata/xcschemes/usprebooter.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/Serotonin.xcodeproj/xcshareddata/xcschemes/usprebooter.xcscheme -------------------------------------------------------------------------------- /Serotonin.xcodeproj/xcuserdata/hariz.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/Serotonin.xcodeproj/xcuserdata/hariz.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Serotonin.xcodeproj/xcuserdata/haxi0.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/Serotonin.xcodeproj/xcuserdata/haxi0.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Serotonin.xcodeproj/xcuserdata/ibarahime.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/Serotonin.xcodeproj/xcuserdata/ibarahime.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Serotonin.xcodeproj/xcuserdata/ibarahime.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/Serotonin.xcodeproj/xcuserdata/ibarahime.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Serotonin.xcodeproj/xcuserdata/mineek.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/Serotonin.xcodeproj/xcuserdata/mineek.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /artwork/serotonin-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/artwork/serotonin-precomposed.png -------------------------------------------------------------------------------- /artwork/serotonin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/artwork/serotonin.png -------------------------------------------------------------------------------- /cfprefsdshimsignedinjected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/cfprefsdshimsignedinjected -------------------------------------------------------------------------------- /ent.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/ent.plist -------------------------------------------------------------------------------- /launchd: -------------------------------------------------------------------------------- 1 | c`@ -------------------------------------------------------------------------------- /usprebooter/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /usprebooter/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /usprebooter/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /usprebooter/Assets.xcassets/AppIcon.appiconset/serotonin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/Assets.xcassets/AppIcon.appiconset/serotonin.png -------------------------------------------------------------------------------- /usprebooter/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /usprebooter/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/Info.plist -------------------------------------------------------------------------------- /usprebooter/Private Headers I stole from the macOS SDK/bootstrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/Private Headers I stole from the macOS SDK/bootstrap.h -------------------------------------------------------------------------------- /usprebooter/Private Headers I stole from the macOS SDK/spawn_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/Private Headers I stole from the macOS SDK/spawn_internal.h -------------------------------------------------------------------------------- /usprebooter/Private Headers I stole from the macOS SDK/spawn_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/Private Headers I stole from the macOS SDK/spawn_private.h -------------------------------------------------------------------------------- /usprebooter/Private Headers I stole from the macOS SDK/xpc/activity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/Private Headers I stole from the macOS SDK/xpc/activity.h -------------------------------------------------------------------------------- /usprebooter/Private Headers I stole from the macOS SDK/xpc/availability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/Private Headers I stole from the macOS SDK/xpc/availability.h -------------------------------------------------------------------------------- /usprebooter/Private Headers I stole from the macOS SDK/xpc/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/Private Headers I stole from the macOS SDK/xpc/base.h -------------------------------------------------------------------------------- /usprebooter/Private Headers I stole from the macOS SDK/xpc/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/Private Headers I stole from the macOS SDK/xpc/debug.h -------------------------------------------------------------------------------- /usprebooter/Private Headers I stole from the macOS SDK/xpc/endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/Private Headers I stole from the macOS SDK/xpc/endpoint.h -------------------------------------------------------------------------------- /usprebooter/Private Headers I stole from the macOS SDK/xpc/launch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/Private Headers I stole from the macOS SDK/xpc/launch.h -------------------------------------------------------------------------------- /usprebooter/Private Headers I stole from the macOS SDK/xpc/listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/Private Headers I stole from the macOS SDK/xpc/listener.h -------------------------------------------------------------------------------- /usprebooter/Private Headers I stole from the macOS SDK/xpc/rich_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/Private Headers I stole from the macOS SDK/xpc/rich_error.h -------------------------------------------------------------------------------- /usprebooter/Private Headers I stole from the macOS SDK/xpc/session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/Private Headers I stole from the macOS SDK/xpc/session.h -------------------------------------------------------------------------------- /usprebooter/Private Headers I stole from the macOS SDK/xpc/xpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/Private Headers I stole from the macOS SDK/xpc/xpc.h -------------------------------------------------------------------------------- /usprebooter/Private Headers I stole from the macOS SDK/xpc/xpc_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/Private Headers I stole from the macOS SDK/xpc/xpc_connection.h -------------------------------------------------------------------------------- /usprebooter/Serotonin.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/Serotonin.jp2 -------------------------------------------------------------------------------- /usprebooter/SettingsManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/SettingsManager.swift -------------------------------------------------------------------------------- /usprebooter/UI/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/UI/Logger.swift -------------------------------------------------------------------------------- /usprebooter/UI/MainTabBarController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/UI/MainTabBarController.swift -------------------------------------------------------------------------------- /usprebooter/UI/Tabs/Design.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/UI/Tabs/Design.swift -------------------------------------------------------------------------------- /usprebooter/UI/Tabs/JailbreakViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/UI/Tabs/JailbreakViewController.swift -------------------------------------------------------------------------------- /usprebooter/UI/Tabs/OptionsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/UI/Tabs/OptionsViewController.swift -------------------------------------------------------------------------------- /usprebooter/UI/Tabs/ToolbarButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/UI/Tabs/ToolbarButton.swift -------------------------------------------------------------------------------- /usprebooter/UI/Tabs/ViewsInOptions/AboutViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/UI/Tabs/ViewsInOptions/AboutViewController.swift -------------------------------------------------------------------------------- /usprebooter/UI/Tabs/ViewsInOptions/ChangelogViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/UI/Tabs/ViewsInOptions/ChangelogViewController.swift -------------------------------------------------------------------------------- /usprebooter/UI/Tabs/ViewsInOptions/Licenses/Markdownosaur.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/UI/Tabs/ViewsInOptions/Licenses/Markdownosaur.md -------------------------------------------------------------------------------- /usprebooter/UI/Tabs/ViewsInOptions/Licenses/swift-markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/UI/Tabs/ViewsInOptions/Licenses/swift-markdown.md -------------------------------------------------------------------------------- /usprebooter/UI/Tabs/ViewsInOptions/LicensesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/UI/Tabs/ViewsInOptions/LicensesViewController.swift -------------------------------------------------------------------------------- /usprebooter/UI/Tabs/ViewsInOptions/MD.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/UI/Tabs/ViewsInOptions/MD.swift -------------------------------------------------------------------------------- /usprebooter/ct_bypass_signed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/ct_bypass_signed -------------------------------------------------------------------------------- /usprebooter/fun/cs_blobs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/fun/cs_blobs.h -------------------------------------------------------------------------------- /usprebooter/fun/kpf/libdimentio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/fun/kpf/libdimentio.h -------------------------------------------------------------------------------- /usprebooter/fun/kpf/libdimentio.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/fun/kpf/libdimentio.m -------------------------------------------------------------------------------- /usprebooter/fun/kpf/patchfinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/fun/kpf/patchfinder.h -------------------------------------------------------------------------------- /usprebooter/fun/kpf/patchfinder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/fun/kpf/patchfinder.m -------------------------------------------------------------------------------- /usprebooter/fun/kpf/patchfinder64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/fun/kpf/patchfinder64.h -------------------------------------------------------------------------------- /usprebooter/fun/kpf/patchfinder64.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/fun/kpf/patchfinder64.m -------------------------------------------------------------------------------- /usprebooter/fun/kpf/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/fun/kpf/proc.c -------------------------------------------------------------------------------- /usprebooter/fun/kpf/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/fun/kpf/proc.h -------------------------------------------------------------------------------- /usprebooter/fun/krw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/fun/krw.h -------------------------------------------------------------------------------- /usprebooter/fun/krw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/fun/krw.m -------------------------------------------------------------------------------- /usprebooter/fun/offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/fun/offsets.h -------------------------------------------------------------------------------- /usprebooter/fun/offsets.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/fun/offsets.m -------------------------------------------------------------------------------- /usprebooter/fun/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/fun/proc.c -------------------------------------------------------------------------------- /usprebooter/fun/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/fun/proc.h -------------------------------------------------------------------------------- /usprebooter/fun/vnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/fun/vnode.h -------------------------------------------------------------------------------- /usprebooter/fun/vnode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/fun/vnode.m -------------------------------------------------------------------------------- /usprebooter/ldid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/ldid -------------------------------------------------------------------------------- /usprebooter/libkfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/libkfd.h -------------------------------------------------------------------------------- /usprebooter/libkfd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/libkfd/common.h -------------------------------------------------------------------------------- /usprebooter/libkfd/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/libkfd/info.h -------------------------------------------------------------------------------- /usprebooter/libkfd/info/dynamic_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/libkfd/info/dynamic_info.h -------------------------------------------------------------------------------- /usprebooter/libkfd/info/static_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/libkfd/info/static_info.h -------------------------------------------------------------------------------- /usprebooter/libkfd/krkw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/libkfd/krkw.h -------------------------------------------------------------------------------- /usprebooter/libkfd/krkw/kread/kread_kqueue_workloop_ctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/libkfd/krkw/kread/kread_kqueue_workloop_ctl.h -------------------------------------------------------------------------------- /usprebooter/libkfd/krkw/kread/kread_sem_open.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/libkfd/krkw/kread/kread_sem_open.h -------------------------------------------------------------------------------- /usprebooter/libkfd/krkw/kwrite/kwrite_dup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/libkfd/krkw/kwrite/kwrite_dup.h -------------------------------------------------------------------------------- /usprebooter/libkfd/krkw/kwrite/kwrite_sem_open.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/libkfd/krkw/kwrite/kwrite_sem_open.h -------------------------------------------------------------------------------- /usprebooter/libkfd/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/libkfd/perf.h -------------------------------------------------------------------------------- /usprebooter/libkfd/puaf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/libkfd/puaf.h -------------------------------------------------------------------------------- /usprebooter/libkfd/puaf/landa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/libkfd/puaf/landa.h -------------------------------------------------------------------------------- /usprebooter/libkfd/puaf/physpuppet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/libkfd/puaf/physpuppet.h -------------------------------------------------------------------------------- /usprebooter/libkfd/puaf/smith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/libkfd/puaf/smith.h -------------------------------------------------------------------------------- /usprebooter/memoryControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/memoryControl.h -------------------------------------------------------------------------------- /usprebooter/memoryControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/memoryControl.m -------------------------------------------------------------------------------- /usprebooter/overwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/overwriter.h -------------------------------------------------------------------------------- /usprebooter/overwriter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/overwriter.m -------------------------------------------------------------------------------- /usprebooter/troller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/troller.h -------------------------------------------------------------------------------- /usprebooter/troller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/troller.m -------------------------------------------------------------------------------- /usprebooter/unzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/unzip -------------------------------------------------------------------------------- /usprebooter/usprebooter-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/usprebooter-Bridging-Header.h -------------------------------------------------------------------------------- /usprebooter/usprebooterApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/usprebooterApp.swift -------------------------------------------------------------------------------- /usprebooter/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/util.h -------------------------------------------------------------------------------- /usprebooter/util.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerotoninApp/Serotonin/HEAD/usprebooter/util.m --------------------------------------------------------------------------------