├── .gitignore ├── FuFuGuGu ├── .gitignore ├── Makefile ├── Package.resolved ├── Package.swift ├── README.md └── Sources │ ├── CBridge │ ├── CodeSignature.c │ ├── CodeSignature.h │ ├── asm.S │ ├── include │ │ └── CBridge.h │ ├── init.c │ ├── init.h │ ├── jb.c │ └── pac.c │ ├── FuFuGuGu │ ├── C.swift │ ├── FixupGOT.swift │ ├── FuFuGuGu.swift │ ├── KRW │ │ ├── Alloc.swift │ │ ├── Fugu15.swift │ │ ├── KCall.swift │ │ ├── KRW.swift │ │ ├── Kernel.swift │ │ ├── Map.swift │ │ ├── PPL.swift │ │ ├── PPLRW.swift │ │ ├── PageTable.swift │ │ ├── Phys.swift │ │ ├── Structs.swift │ │ └── xprr.swift │ ├── RebootHook.swift │ └── TC.swift │ └── FuFuGuGuTest │ └── main.swift ├── Fugu15 ├── .gitignore ├── Fugu15.tc ├── Fugu15.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved ├── Fugu15 │ ├── AboutView.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── 100.png │ │ │ ├── 1024.png │ │ │ ├── 114.png │ │ │ ├── 120.png │ │ │ ├── 128.png │ │ │ ├── 144.png │ │ │ ├── 152.png │ │ │ ├── 16.png │ │ │ ├── 167.png │ │ │ ├── 180.png │ │ │ ├── 20.png │ │ │ ├── 256.png │ │ │ ├── 29.png │ │ │ ├── 32.png │ │ │ ├── 40.png │ │ │ ├── 50.png │ │ │ ├── 512.png │ │ │ ├── 57.png │ │ │ ├── 58.png │ │ │ ├── 60.png │ │ │ ├── 64.png │ │ │ ├── 72.png │ │ │ ├── 76.png │ │ │ ├── 80.png │ │ │ ├── 87.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── FuguIcon.imageset │ │ │ ├── 1024.png │ │ │ ├── 256.png │ │ │ ├── 512.png │ │ │ └── Contents.json │ │ ├── PinautenLogo.imageset │ │ │ ├── Contents.json │ │ │ ├── Pinauten_Logo_SecResearch_1024.png │ │ │ ├── Pinauten_Logo_SecResearch_2048.png │ │ │ └── Pinauten_Logo_SecResearch_4096.png │ │ ├── Pinauten_Logo_SecResearch_1024.png │ │ ├── Pinauten_Logo_SecResearch_2048.png │ │ └── Pinauten_Logo_SecResearch_4096.png │ ├── ContentView.swift │ ├── Fugu15-Bridging-Header.h │ ├── Fugu15.entitlements │ ├── Fugu15App.swift │ ├── Info.plist │ ├── JailbreakView.swift │ ├── LogView.swift │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ ├── RemoveFuguInstall.swift │ ├── Test.swift │ ├── bootstrap │ │ ├── TrustCache │ │ ├── bootstrap.tar │ │ ├── ldid │ │ ├── sileo.deb │ │ └── tar │ ├── iDownloadCmds.swift │ ├── include │ │ ├── LSApplicationProxy.h │ │ ├── LSApplicationWorkspace.h │ │ ├── LSBundleProxy.h │ │ ├── _LSApplicationState.h │ │ └── posix_spawn.h │ ├── init.c │ ├── init.h │ └── main.swift ├── Makefile ├── bindmount ├── bootstrap_root.tar ├── dyld_hax ├── inject_criticald ├── libgrabkernel │ ├── include │ │ └── libgrabkernel.h │ ├── libcurl.a │ ├── libfragmentzip.a │ ├── libgrabkernel.a │ ├── libgrabkernel.xcframework │ │ ├── Info.plist │ │ └── ios-arm64_arm64e │ │ │ ├── Headers │ │ │ └── libgrabkernel.h │ │ │ └── libgrabkernel.a │ └── module.modulemap └── model_tmp.hwx ├── LICENSE ├── MachOMerger ├── .gitignore ├── MachOMerger.entitlements ├── Makefile ├── Package.resolved ├── Package.swift ├── README.md └── Sources │ └── MachOMerger │ ├── ChainedFixups.swift │ ├── MagicSymbols.swift │ ├── MiscCmds.swift │ ├── RelocInfo.swift │ ├── SegmentLoadCommand.swift │ ├── SegmentSplitInfo.swift │ ├── Symbols.swift │ ├── ULEB128Reader.swift │ ├── UnixThread.swift │ └── main.swift ├── Makefile ├── OfflinePackages └── KernelPatchfinder │ ├── .gitignore │ ├── LICENSE │ ├── Package.swift │ ├── README.md │ ├── Sources │ ├── KernelPatchfinder │ │ └── KernelPatchfinder.swift │ └── KernelPatchfinderTester │ │ └── main.swift │ └── Tests │ └── KernelPatchfinderTests │ └── KernelPatchfinderTests.swift ├── Packages └── KRW │ ├── .gitignore │ ├── Package.resolved │ ├── Package.swift │ ├── README.md │ └── Sources │ ├── KRW │ ├── Alloc.swift │ ├── KRW.swift │ ├── Kcall.swift │ ├── Map.swift │ ├── PPL.swift │ ├── PPLRW.swift │ ├── Phys.swift │ ├── Structs.swift │ ├── SwiftGlue.swift │ ├── iDownloadSupport.swift │ └── xprr.swift │ └── KRWC │ ├── badRecovery │ ├── DriverKit.h │ ├── asm.S │ ├── badRecovery.c │ ├── badRecovery.h │ ├── includeme.h │ ├── kernel.c │ ├── kernel.h │ ├── kernrw_alloc.h │ ├── offsets.h │ ├── physrw.h │ ├── tlbFail.c │ ├── tlbFail.h │ └── xprr.h │ ├── glue.c │ ├── include │ └── KRWC.h │ ├── multicast_bytecopy │ ├── IOGPU.c │ ├── IOGPU.h │ ├── IOSurfaceRoot.c │ ├── IOSurfaceRoot.h │ ├── get_task.c │ ├── get_task.h │ ├── iokit.h │ ├── kernel_base.c │ ├── kernel_base.h │ ├── kernel_rw.c │ ├── kernel_rw.h │ ├── mcast.c │ ├── mcast.h │ ├── multicast_bytecopy.c │ ├── multicast_bytecopy.h │ ├── necp.c │ ├── necp.h │ ├── port_utils.c │ ├── port_utils.h │ ├── spray.c │ ├── spray.h │ └── xpaci.h │ └── weightBufs │ ├── ANEDirectIn.c │ ├── ANEDirectIn.h │ ├── AppleNeuralEngine │ ├── AppleNeuralEngine-Structs.h │ ├── AppleNeuralEngine.h │ ├── NSCopying.h │ ├── NSSecureCoding.h │ ├── _ANEClient.h │ ├── _ANECloneHelper.h │ ├── _ANEDaemonConnection.h │ ├── _ANEDaemonProtocol.h │ ├── _ANEDataReporter.h │ ├── _ANEDeviceController.h │ ├── _ANEDeviceInfo.h │ ├── _ANEErrors.h │ ├── _ANEHashEncoding.h │ ├── _ANEIOSurfaceObject.h │ ├── _ANELog.h │ ├── _ANEModel.h │ ├── _ANEPerformanceStats.h │ ├── _ANEProgramForEvaluation.h │ ├── _ANEQoSMapper.h │ ├── _ANERequest.h │ └── _ANEStrings.h │ ├── IOGPU.c │ ├── IOGPU.h │ ├── IOSurface.c │ ├── IOSurface.h │ ├── aneProgram.h │ ├── build_macos.sh │ ├── exploit.h │ ├── exploit.m │ ├── iokit.h │ └── utils.c ├── README.md ├── TrustCache ├── MachOMerger ├── bootstrapFS ├── inject_criticald ├── jbinjector.dylib ├── ldid ├── libFuFuGuGu.dylib ├── libdyldhook.dylib ├── stashd └── tar ├── bootstrapFS ├── .gitignore ├── Makefile ├── Package.resolved ├── Package.swift ├── README.md ├── Sources │ ├── CBridge │ │ ├── dummy.c │ │ └── include │ │ │ └── CBridge.h │ └── bootstrapFS │ │ ├── APFS.swift │ │ ├── config.swift │ │ ├── main.swift │ │ ├── mount.swift │ │ ├── patchDYLD.swift │ │ └── prepare.swift └── bootstrapFS.entitlements ├── jbinjector ├── Makefile ├── jbinjector.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── jbinjector.xcscheme └── jbinjector │ ├── CodeSignature.c │ ├── CodeSignature.h │ └── jbinjector.c ├── libdyldhook ├── .gitignore ├── CodeSignature.c ├── CodeSignature.h ├── Makefile ├── libdyldhook.S ├── libdyldhook.c ├── libdyldhook.h ├── sha256.c ├── sha256.h ├── task.c └── task.h └── stashd ├── .gitignore ├── Makefile ├── Package.resolved ├── Package.swift ├── README.md ├── Sources ├── CBridge │ ├── asm.S │ ├── flush.c │ └── include │ │ └── CBridge.h └── stashd │ ├── KRW │ ├── Alloc.swift │ ├── Fugu15.swift │ ├── KCall.swift │ ├── KRW.swift │ ├── Kernel.swift │ ├── Map.swift │ ├── PPL.swift │ ├── PPLRW.swift │ ├── PageTable.swift │ ├── Phys.swift │ ├── Structs.swift │ └── xprr.swift │ └── main.swift └── stashd.entitlements /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/.gitignore -------------------------------------------------------------------------------- /FuFuGuGu/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/FuFuGuGu/.gitignore -------------------------------------------------------------------------------- /FuFuGuGu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/FuFuGuGu/Makefile -------------------------------------------------------------------------------- /FuFuGuGu/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/FuFuGuGu/Package.resolved -------------------------------------------------------------------------------- /FuFuGuGu/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/FuFuGuGu/Package.swift -------------------------------------------------------------------------------- /FuFuGuGu/README.md: -------------------------------------------------------------------------------- 1 | # FuFuGuGu 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /FuFuGuGu/Sources/CBridge/CodeSignature.c: -------------------------------------------------------------------------------- 1 | ../../../jbinjector/jbinjector/CodeSignature.c -------------------------------------------------------------------------------- /FuFuGuGu/Sources/CBridge/CodeSignature.h: -------------------------------------------------------------------------------- 1 | ../../../jbinjector/jbinjector/CodeSignature.h -------------------------------------------------------------------------------- /FuFuGuGu/Sources/CBridge/asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/FuFuGuGu/Sources/CBridge/asm.S -------------------------------------------------------------------------------- /FuFuGuGu/Sources/CBridge/include/CBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/FuFuGuGu/Sources/CBridge/include/CBridge.h -------------------------------------------------------------------------------- /FuFuGuGu/Sources/CBridge/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/FuFuGuGu/Sources/CBridge/init.c -------------------------------------------------------------------------------- /FuFuGuGu/Sources/CBridge/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/FuFuGuGu/Sources/CBridge/init.h -------------------------------------------------------------------------------- /FuFuGuGu/Sources/CBridge/jb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/FuFuGuGu/Sources/CBridge/jb.c -------------------------------------------------------------------------------- /FuFuGuGu/Sources/CBridge/pac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/FuFuGuGu/Sources/CBridge/pac.c -------------------------------------------------------------------------------- /FuFuGuGu/Sources/FuFuGuGu/C.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/FuFuGuGu/Sources/FuFuGuGu/C.swift -------------------------------------------------------------------------------- /FuFuGuGu/Sources/FuFuGuGu/FixupGOT.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/FuFuGuGu/Sources/FuFuGuGu/FixupGOT.swift -------------------------------------------------------------------------------- /FuFuGuGu/Sources/FuFuGuGu/FuFuGuGu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/FuFuGuGu/Sources/FuFuGuGu/FuFuGuGu.swift -------------------------------------------------------------------------------- /FuFuGuGu/Sources/FuFuGuGu/KRW/Alloc.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/FuFuGuGu/Sources/FuFuGuGu/KRW/Alloc.swift -------------------------------------------------------------------------------- /FuFuGuGu/Sources/FuFuGuGu/KRW/Fugu15.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/FuFuGuGu/Sources/FuFuGuGu/KRW/Fugu15.swift -------------------------------------------------------------------------------- /FuFuGuGu/Sources/FuFuGuGu/KRW/KCall.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/FuFuGuGu/Sources/FuFuGuGu/KRW/KCall.swift -------------------------------------------------------------------------------- /FuFuGuGu/Sources/FuFuGuGu/KRW/KRW.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/FuFuGuGu/Sources/FuFuGuGu/KRW/KRW.swift -------------------------------------------------------------------------------- /FuFuGuGu/Sources/FuFuGuGu/KRW/Kernel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/FuFuGuGu/Sources/FuFuGuGu/KRW/Kernel.swift -------------------------------------------------------------------------------- /FuFuGuGu/Sources/FuFuGuGu/KRW/Map.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/FuFuGuGu/Sources/FuFuGuGu/KRW/Map.swift -------------------------------------------------------------------------------- /FuFuGuGu/Sources/FuFuGuGu/KRW/PPL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/FuFuGuGu/Sources/FuFuGuGu/KRW/PPL.swift -------------------------------------------------------------------------------- /FuFuGuGu/Sources/FuFuGuGu/KRW/PPLRW.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/FuFuGuGu/Sources/FuFuGuGu/KRW/PPLRW.swift -------------------------------------------------------------------------------- /FuFuGuGu/Sources/FuFuGuGu/KRW/PageTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/FuFuGuGu/Sources/FuFuGuGu/KRW/PageTable.swift -------------------------------------------------------------------------------- /FuFuGuGu/Sources/FuFuGuGu/KRW/Phys.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/FuFuGuGu/Sources/FuFuGuGu/KRW/Phys.swift -------------------------------------------------------------------------------- /FuFuGuGu/Sources/FuFuGuGu/KRW/Structs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/FuFuGuGu/Sources/FuFuGuGu/KRW/Structs.swift -------------------------------------------------------------------------------- /FuFuGuGu/Sources/FuFuGuGu/KRW/xprr.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/FuFuGuGu/Sources/FuFuGuGu/KRW/xprr.swift -------------------------------------------------------------------------------- /FuFuGuGu/Sources/FuFuGuGu/RebootHook.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/FuFuGuGu/Sources/FuFuGuGu/RebootHook.swift -------------------------------------------------------------------------------- /FuFuGuGu/Sources/FuFuGuGu/TC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/FuFuGuGu/Sources/FuFuGuGu/TC.swift -------------------------------------------------------------------------------- /FuFuGuGu/Sources/FuFuGuGuTest/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/FuFuGuGu/Sources/FuFuGuGuTest/main.swift -------------------------------------------------------------------------------- /Fugu15/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /Fugu15.ipa 3 | /bootstrap_root 4 | -------------------------------------------------------------------------------- /Fugu15/Fugu15.tc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15.tc -------------------------------------------------------------------------------- /Fugu15/Fugu15.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Fugu15/Fugu15.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Fugu15/Fugu15.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Fugu15/Fugu15.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Fugu15/Fugu15/AboutView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/AboutView.swift -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/100.png -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/128.png -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/144.png -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/16.png -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/256.png -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/32.png -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/50.png -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/512.png -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/64.png -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/FuguIcon.imageset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/FuguIcon.imageset/1024.png -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/FuguIcon.imageset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/FuguIcon.imageset/256.png -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/FuguIcon.imageset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/FuguIcon.imageset/512.png -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/FuguIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/FuguIcon.imageset/Contents.json -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/PinautenLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/PinautenLogo.imageset/Contents.json -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/PinautenLogo.imageset/Pinauten_Logo_SecResearch_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/PinautenLogo.imageset/Pinauten_Logo_SecResearch_1024.png -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/PinautenLogo.imageset/Pinauten_Logo_SecResearch_2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/PinautenLogo.imageset/Pinauten_Logo_SecResearch_2048.png -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/PinautenLogo.imageset/Pinauten_Logo_SecResearch_4096.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/PinautenLogo.imageset/Pinauten_Logo_SecResearch_4096.png -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/Pinauten_Logo_SecResearch_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/Pinauten_Logo_SecResearch_1024.png -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/Pinauten_Logo_SecResearch_2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/Pinauten_Logo_SecResearch_2048.png -------------------------------------------------------------------------------- /Fugu15/Fugu15/Assets.xcassets/Pinauten_Logo_SecResearch_4096.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Assets.xcassets/Pinauten_Logo_SecResearch_4096.png -------------------------------------------------------------------------------- /Fugu15/Fugu15/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/ContentView.swift -------------------------------------------------------------------------------- /Fugu15/Fugu15/Fugu15-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Fugu15-Bridging-Header.h -------------------------------------------------------------------------------- /Fugu15/Fugu15/Fugu15.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Fugu15.entitlements -------------------------------------------------------------------------------- /Fugu15/Fugu15/Fugu15App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Fugu15App.swift -------------------------------------------------------------------------------- /Fugu15/Fugu15/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Info.plist -------------------------------------------------------------------------------- /Fugu15/Fugu15/JailbreakView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/JailbreakView.swift -------------------------------------------------------------------------------- /Fugu15/Fugu15/LogView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/LogView.swift -------------------------------------------------------------------------------- /Fugu15/Fugu15/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Fugu15/Fugu15/RemoveFuguInstall.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/RemoveFuguInstall.swift -------------------------------------------------------------------------------- /Fugu15/Fugu15/Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/Test.swift -------------------------------------------------------------------------------- /Fugu15/Fugu15/bootstrap/TrustCache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/bootstrap/TrustCache -------------------------------------------------------------------------------- /Fugu15/Fugu15/bootstrap/bootstrap.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/bootstrap/bootstrap.tar -------------------------------------------------------------------------------- /Fugu15/Fugu15/bootstrap/ldid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/bootstrap/ldid -------------------------------------------------------------------------------- /Fugu15/Fugu15/bootstrap/sileo.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/bootstrap/sileo.deb -------------------------------------------------------------------------------- /Fugu15/Fugu15/bootstrap/tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/bootstrap/tar -------------------------------------------------------------------------------- /Fugu15/Fugu15/iDownloadCmds.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/iDownloadCmds.swift -------------------------------------------------------------------------------- /Fugu15/Fugu15/include/LSApplicationProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/include/LSApplicationProxy.h -------------------------------------------------------------------------------- /Fugu15/Fugu15/include/LSApplicationWorkspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/include/LSApplicationWorkspace.h -------------------------------------------------------------------------------- /Fugu15/Fugu15/include/LSBundleProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/include/LSBundleProxy.h -------------------------------------------------------------------------------- /Fugu15/Fugu15/include/_LSApplicationState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/include/_LSApplicationState.h -------------------------------------------------------------------------------- /Fugu15/Fugu15/include/posix_spawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/include/posix_spawn.h -------------------------------------------------------------------------------- /Fugu15/Fugu15/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/init.c -------------------------------------------------------------------------------- /Fugu15/Fugu15/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/init.h -------------------------------------------------------------------------------- /Fugu15/Fugu15/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Fugu15/main.swift -------------------------------------------------------------------------------- /Fugu15/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/Makefile -------------------------------------------------------------------------------- /Fugu15/bindmount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/bindmount -------------------------------------------------------------------------------- /Fugu15/bootstrap_root.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/bootstrap_root.tar -------------------------------------------------------------------------------- /Fugu15/dyld_hax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/dyld_hax -------------------------------------------------------------------------------- /Fugu15/inject_criticald: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/inject_criticald -------------------------------------------------------------------------------- /Fugu15/libgrabkernel/include/libgrabkernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/libgrabkernel/include/libgrabkernel.h -------------------------------------------------------------------------------- /Fugu15/libgrabkernel/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/libgrabkernel/libcurl.a -------------------------------------------------------------------------------- /Fugu15/libgrabkernel/libfragmentzip.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/libgrabkernel/libfragmentzip.a -------------------------------------------------------------------------------- /Fugu15/libgrabkernel/libgrabkernel.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/libgrabkernel/libgrabkernel.a -------------------------------------------------------------------------------- /Fugu15/libgrabkernel/libgrabkernel.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/libgrabkernel/libgrabkernel.xcframework/Info.plist -------------------------------------------------------------------------------- /Fugu15/libgrabkernel/libgrabkernel.xcframework/ios-arm64_arm64e/Headers/libgrabkernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/libgrabkernel/libgrabkernel.xcframework/ios-arm64_arm64e/Headers/libgrabkernel.h -------------------------------------------------------------------------------- /Fugu15/libgrabkernel/libgrabkernel.xcframework/ios-arm64_arm64e/libgrabkernel.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/libgrabkernel/libgrabkernel.xcframework/ios-arm64_arm64e/libgrabkernel.a -------------------------------------------------------------------------------- /Fugu15/libgrabkernel/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/libgrabkernel/module.modulemap -------------------------------------------------------------------------------- /Fugu15/model_tmp.hwx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Fugu15/model_tmp.hwx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/LICENSE -------------------------------------------------------------------------------- /MachOMerger/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/MachOMerger/.gitignore -------------------------------------------------------------------------------- /MachOMerger/MachOMerger.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/MachOMerger/MachOMerger.entitlements -------------------------------------------------------------------------------- /MachOMerger/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/MachOMerger/Makefile -------------------------------------------------------------------------------- /MachOMerger/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/MachOMerger/Package.resolved -------------------------------------------------------------------------------- /MachOMerger/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/MachOMerger/Package.swift -------------------------------------------------------------------------------- /MachOMerger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/MachOMerger/README.md -------------------------------------------------------------------------------- /MachOMerger/Sources/MachOMerger/ChainedFixups.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/MachOMerger/Sources/MachOMerger/ChainedFixups.swift -------------------------------------------------------------------------------- /MachOMerger/Sources/MachOMerger/MagicSymbols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/MachOMerger/Sources/MachOMerger/MagicSymbols.swift -------------------------------------------------------------------------------- /MachOMerger/Sources/MachOMerger/MiscCmds.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/MachOMerger/Sources/MachOMerger/MiscCmds.swift -------------------------------------------------------------------------------- /MachOMerger/Sources/MachOMerger/RelocInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/MachOMerger/Sources/MachOMerger/RelocInfo.swift -------------------------------------------------------------------------------- /MachOMerger/Sources/MachOMerger/SegmentLoadCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/MachOMerger/Sources/MachOMerger/SegmentLoadCommand.swift -------------------------------------------------------------------------------- /MachOMerger/Sources/MachOMerger/SegmentSplitInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/MachOMerger/Sources/MachOMerger/SegmentSplitInfo.swift -------------------------------------------------------------------------------- /MachOMerger/Sources/MachOMerger/Symbols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/MachOMerger/Sources/MachOMerger/Symbols.swift -------------------------------------------------------------------------------- /MachOMerger/Sources/MachOMerger/ULEB128Reader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/MachOMerger/Sources/MachOMerger/ULEB128Reader.swift -------------------------------------------------------------------------------- /MachOMerger/Sources/MachOMerger/UnixThread.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/MachOMerger/Sources/MachOMerger/UnixThread.swift -------------------------------------------------------------------------------- /MachOMerger/Sources/MachOMerger/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/MachOMerger/Sources/MachOMerger/main.swift -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Makefile -------------------------------------------------------------------------------- /OfflinePackages/KernelPatchfinder/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/OfflinePackages/KernelPatchfinder/.gitignore -------------------------------------------------------------------------------- /OfflinePackages/KernelPatchfinder/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/OfflinePackages/KernelPatchfinder/LICENSE -------------------------------------------------------------------------------- /OfflinePackages/KernelPatchfinder/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/OfflinePackages/KernelPatchfinder/Package.swift -------------------------------------------------------------------------------- /OfflinePackages/KernelPatchfinder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/OfflinePackages/KernelPatchfinder/README.md -------------------------------------------------------------------------------- /OfflinePackages/KernelPatchfinder/Sources/KernelPatchfinder/KernelPatchfinder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/OfflinePackages/KernelPatchfinder/Sources/KernelPatchfinder/KernelPatchfinder.swift -------------------------------------------------------------------------------- /OfflinePackages/KernelPatchfinder/Sources/KernelPatchfinderTester/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/OfflinePackages/KernelPatchfinder/Sources/KernelPatchfinderTester/main.swift -------------------------------------------------------------------------------- /OfflinePackages/KernelPatchfinder/Tests/KernelPatchfinderTests/KernelPatchfinderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/OfflinePackages/KernelPatchfinder/Tests/KernelPatchfinderTests/KernelPatchfinderTests.swift -------------------------------------------------------------------------------- /Packages/KRW/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/.gitignore -------------------------------------------------------------------------------- /Packages/KRW/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Package.resolved -------------------------------------------------------------------------------- /Packages/KRW/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Package.swift -------------------------------------------------------------------------------- /Packages/KRW/README.md: -------------------------------------------------------------------------------- 1 | # KRW 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRW/Alloc.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRW/Alloc.swift -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRW/KRW.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRW/KRW.swift -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRW/Kcall.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRW/Kcall.swift -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRW/Map.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRW/Map.swift -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRW/PPL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRW/PPL.swift -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRW/PPLRW.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRW/PPLRW.swift -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRW/Phys.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRW/Phys.swift -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRW/Structs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRW/Structs.swift -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRW/SwiftGlue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRW/SwiftGlue.swift -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRW/iDownloadSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRW/iDownloadSupport.swift -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRW/xprr.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRW/xprr.swift -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/badRecovery/DriverKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/badRecovery/DriverKit.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/badRecovery/asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/badRecovery/asm.S -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/badRecovery/badRecovery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/badRecovery/badRecovery.c -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/badRecovery/badRecovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/badRecovery/badRecovery.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/badRecovery/includeme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/badRecovery/includeme.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/badRecovery/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/badRecovery/kernel.c -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/badRecovery/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/badRecovery/kernel.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/badRecovery/kernrw_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/badRecovery/kernrw_alloc.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/badRecovery/offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/badRecovery/offsets.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/badRecovery/physrw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/badRecovery/physrw.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/badRecovery/tlbFail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/badRecovery/tlbFail.c -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/badRecovery/tlbFail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/badRecovery/tlbFail.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/badRecovery/xprr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/badRecovery/xprr.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/glue.c -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/include/KRWC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/include/KRWC.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/multicast_bytecopy/IOGPU.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/multicast_bytecopy/IOGPU.c -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/multicast_bytecopy/IOGPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/multicast_bytecopy/IOGPU.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/multicast_bytecopy/IOSurfaceRoot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/multicast_bytecopy/IOSurfaceRoot.c -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/multicast_bytecopy/IOSurfaceRoot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/multicast_bytecopy/IOSurfaceRoot.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/multicast_bytecopy/get_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/multicast_bytecopy/get_task.c -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/multicast_bytecopy/get_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/multicast_bytecopy/get_task.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/multicast_bytecopy/iokit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/multicast_bytecopy/iokit.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/multicast_bytecopy/kernel_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/multicast_bytecopy/kernel_base.c -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/multicast_bytecopy/kernel_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/multicast_bytecopy/kernel_base.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/multicast_bytecopy/kernel_rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/multicast_bytecopy/kernel_rw.c -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/multicast_bytecopy/kernel_rw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/multicast_bytecopy/kernel_rw.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/multicast_bytecopy/mcast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/multicast_bytecopy/mcast.c -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/multicast_bytecopy/mcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/multicast_bytecopy/mcast.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/multicast_bytecopy/multicast_bytecopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/multicast_bytecopy/multicast_bytecopy.c -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/multicast_bytecopy/multicast_bytecopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/multicast_bytecopy/multicast_bytecopy.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/multicast_bytecopy/necp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/multicast_bytecopy/necp.c -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/multicast_bytecopy/necp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/multicast_bytecopy/necp.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/multicast_bytecopy/port_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/multicast_bytecopy/port_utils.c -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/multicast_bytecopy/port_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/multicast_bytecopy/port_utils.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/multicast_bytecopy/spray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/multicast_bytecopy/spray.c -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/multicast_bytecopy/spray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/multicast_bytecopy/spray.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/multicast_bytecopy/xpaci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/multicast_bytecopy/xpaci.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/weightBufs/ANEDirectIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/weightBufs/ANEDirectIn.c -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/weightBufs/ANEDirectIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/weightBufs/ANEDirectIn.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/AppleNeuralEngine-Structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/AppleNeuralEngine-Structs.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/AppleNeuralEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/AppleNeuralEngine.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/NSCopying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/NSCopying.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/NSSecureCoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/NSSecureCoding.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/_ANEClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/_ANEClient.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/_ANECloneHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/_ANECloneHelper.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/_ANEDaemonConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/_ANEDaemonConnection.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/_ANEDaemonProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/_ANEDaemonProtocol.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/_ANEDataReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/_ANEDataReporter.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/_ANEDeviceController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/_ANEDeviceController.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/_ANEDeviceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/_ANEDeviceInfo.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/_ANEErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/_ANEErrors.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/_ANEHashEncoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/_ANEHashEncoding.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/_ANEIOSurfaceObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/_ANEIOSurfaceObject.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/_ANELog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/_ANELog.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/_ANEModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/_ANEModel.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/_ANEPerformanceStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/_ANEPerformanceStats.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/_ANEProgramForEvaluation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/_ANEProgramForEvaluation.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/_ANEQoSMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/_ANEQoSMapper.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/_ANERequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/_ANERequest.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/_ANEStrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/weightBufs/AppleNeuralEngine/_ANEStrings.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/weightBufs/IOGPU.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/weightBufs/IOGPU.c -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/weightBufs/IOGPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/weightBufs/IOGPU.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/weightBufs/IOSurface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/weightBufs/IOSurface.c -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/weightBufs/IOSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/weightBufs/IOSurface.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/weightBufs/aneProgram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/weightBufs/aneProgram.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/weightBufs/build_macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/weightBufs/build_macos.sh -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/weightBufs/exploit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/weightBufs/exploit.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/weightBufs/exploit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/weightBufs/exploit.m -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/weightBufs/iokit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/weightBufs/iokit.h -------------------------------------------------------------------------------- /Packages/KRW/Sources/KRWC/weightBufs/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/Packages/KRW/Sources/KRWC/weightBufs/utils.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/README.md -------------------------------------------------------------------------------- /TrustCache/MachOMerger: -------------------------------------------------------------------------------- 1 | ../MachOMerger/MachOMerger -------------------------------------------------------------------------------- /TrustCache/bootstrapFS: -------------------------------------------------------------------------------- 1 | ../bootstrapFS/bootstrapFS -------------------------------------------------------------------------------- /TrustCache/inject_criticald: -------------------------------------------------------------------------------- 1 | ../Fugu15/inject_criticald -------------------------------------------------------------------------------- /TrustCache/jbinjector.dylib: -------------------------------------------------------------------------------- 1 | ../jbinjector/jbinjector.dylib -------------------------------------------------------------------------------- /TrustCache/ldid: -------------------------------------------------------------------------------- 1 | ../Fugu15/Fugu15/bootstrap/ldid -------------------------------------------------------------------------------- /TrustCache/libFuFuGuGu.dylib: -------------------------------------------------------------------------------- 1 | ../FuFuGuGu/libFuFuGuGu.dylib -------------------------------------------------------------------------------- /TrustCache/libdyldhook.dylib: -------------------------------------------------------------------------------- 1 | ../libdyldhook/libdyldhook.dylib -------------------------------------------------------------------------------- /TrustCache/stashd: -------------------------------------------------------------------------------- 1 | ../stashd/stashd -------------------------------------------------------------------------------- /TrustCache/tar: -------------------------------------------------------------------------------- 1 | ../Fugu15/Fugu15/bootstrap/tar -------------------------------------------------------------------------------- /bootstrapFS/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/bootstrapFS/.gitignore -------------------------------------------------------------------------------- /bootstrapFS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/bootstrapFS/Makefile -------------------------------------------------------------------------------- /bootstrapFS/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/bootstrapFS/Package.resolved -------------------------------------------------------------------------------- /bootstrapFS/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/bootstrapFS/Package.swift -------------------------------------------------------------------------------- /bootstrapFS/README.md: -------------------------------------------------------------------------------- 1 | # bootstrapFS 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /bootstrapFS/Sources/CBridge/dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/bootstrapFS/Sources/CBridge/dummy.c -------------------------------------------------------------------------------- /bootstrapFS/Sources/CBridge/include/CBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/bootstrapFS/Sources/CBridge/include/CBridge.h -------------------------------------------------------------------------------- /bootstrapFS/Sources/bootstrapFS/APFS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/bootstrapFS/Sources/bootstrapFS/APFS.swift -------------------------------------------------------------------------------- /bootstrapFS/Sources/bootstrapFS/config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/bootstrapFS/Sources/bootstrapFS/config.swift -------------------------------------------------------------------------------- /bootstrapFS/Sources/bootstrapFS/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/bootstrapFS/Sources/bootstrapFS/main.swift -------------------------------------------------------------------------------- /bootstrapFS/Sources/bootstrapFS/mount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/bootstrapFS/Sources/bootstrapFS/mount.swift -------------------------------------------------------------------------------- /bootstrapFS/Sources/bootstrapFS/patchDYLD.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/bootstrapFS/Sources/bootstrapFS/patchDYLD.swift -------------------------------------------------------------------------------- /bootstrapFS/Sources/bootstrapFS/prepare.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/bootstrapFS/Sources/bootstrapFS/prepare.swift -------------------------------------------------------------------------------- /bootstrapFS/bootstrapFS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/bootstrapFS/bootstrapFS.entitlements -------------------------------------------------------------------------------- /jbinjector/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/jbinjector/Makefile -------------------------------------------------------------------------------- /jbinjector/jbinjector.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/jbinjector/jbinjector.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /jbinjector/jbinjector.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/jbinjector/jbinjector.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /jbinjector/jbinjector.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/jbinjector/jbinjector.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /jbinjector/jbinjector.xcodeproj/xcshareddata/xcschemes/jbinjector.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/jbinjector/jbinjector.xcodeproj/xcshareddata/xcschemes/jbinjector.xcscheme -------------------------------------------------------------------------------- /jbinjector/jbinjector/CodeSignature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/jbinjector/jbinjector/CodeSignature.c -------------------------------------------------------------------------------- /jbinjector/jbinjector/CodeSignature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/jbinjector/jbinjector/CodeSignature.h -------------------------------------------------------------------------------- /jbinjector/jbinjector/jbinjector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/jbinjector/jbinjector/jbinjector.c -------------------------------------------------------------------------------- /libdyldhook/.gitignore: -------------------------------------------------------------------------------- 1 | /libdyldhook.dylib 2 | -------------------------------------------------------------------------------- /libdyldhook/CodeSignature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/libdyldhook/CodeSignature.c -------------------------------------------------------------------------------- /libdyldhook/CodeSignature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/libdyldhook/CodeSignature.h -------------------------------------------------------------------------------- /libdyldhook/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/libdyldhook/Makefile -------------------------------------------------------------------------------- /libdyldhook/libdyldhook.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/libdyldhook/libdyldhook.S -------------------------------------------------------------------------------- /libdyldhook/libdyldhook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/libdyldhook/libdyldhook.c -------------------------------------------------------------------------------- /libdyldhook/libdyldhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/libdyldhook/libdyldhook.h -------------------------------------------------------------------------------- /libdyldhook/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/libdyldhook/sha256.c -------------------------------------------------------------------------------- /libdyldhook/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/libdyldhook/sha256.h -------------------------------------------------------------------------------- /libdyldhook/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/libdyldhook/task.c -------------------------------------------------------------------------------- /libdyldhook/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/libdyldhook/task.h -------------------------------------------------------------------------------- /stashd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/stashd/.gitignore -------------------------------------------------------------------------------- /stashd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/stashd/Makefile -------------------------------------------------------------------------------- /stashd/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/stashd/Package.resolved -------------------------------------------------------------------------------- /stashd/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/stashd/Package.swift -------------------------------------------------------------------------------- /stashd/README.md: -------------------------------------------------------------------------------- 1 | # jailbreakd 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /stashd/Sources/CBridge/asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/stashd/Sources/CBridge/asm.S -------------------------------------------------------------------------------- /stashd/Sources/CBridge/flush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/stashd/Sources/CBridge/flush.c -------------------------------------------------------------------------------- /stashd/Sources/CBridge/include/CBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/stashd/Sources/CBridge/include/CBridge.h -------------------------------------------------------------------------------- /stashd/Sources/stashd/KRW/Alloc.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/stashd/Sources/stashd/KRW/Alloc.swift -------------------------------------------------------------------------------- /stashd/Sources/stashd/KRW/Fugu15.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/stashd/Sources/stashd/KRW/Fugu15.swift -------------------------------------------------------------------------------- /stashd/Sources/stashd/KRW/KCall.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/stashd/Sources/stashd/KRW/KCall.swift -------------------------------------------------------------------------------- /stashd/Sources/stashd/KRW/KRW.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/stashd/Sources/stashd/KRW/KRW.swift -------------------------------------------------------------------------------- /stashd/Sources/stashd/KRW/Kernel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/stashd/Sources/stashd/KRW/Kernel.swift -------------------------------------------------------------------------------- /stashd/Sources/stashd/KRW/Map.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/stashd/Sources/stashd/KRW/Map.swift -------------------------------------------------------------------------------- /stashd/Sources/stashd/KRW/PPL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/stashd/Sources/stashd/KRW/PPL.swift -------------------------------------------------------------------------------- /stashd/Sources/stashd/KRW/PPLRW.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/stashd/Sources/stashd/KRW/PPLRW.swift -------------------------------------------------------------------------------- /stashd/Sources/stashd/KRW/PageTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/stashd/Sources/stashd/KRW/PageTable.swift -------------------------------------------------------------------------------- /stashd/Sources/stashd/KRW/Phys.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/stashd/Sources/stashd/KRW/Phys.swift -------------------------------------------------------------------------------- /stashd/Sources/stashd/KRW/Structs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/stashd/Sources/stashd/KRW/Structs.swift -------------------------------------------------------------------------------- /stashd/Sources/stashd/KRW/xprr.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/stashd/Sources/stashd/KRW/xprr.swift -------------------------------------------------------------------------------- /stashd/Sources/stashd/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/stashd/Sources/stashd/main.swift -------------------------------------------------------------------------------- /stashd/stashd.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/Fugu15_Rootful/HEAD/stashd/stashd.entitlements --------------------------------------------------------------------------------