├── LICENSE ├── README.md ├── assets └── window.png ├── iPatch.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── iPatch.xcscheme └── iPatch ├── Assets.xcassets ├── AccentColor.colorset │ └── Contents.json ├── AppIcon.appiconset │ ├── AppIcon-1 (dragged)-1024.png │ ├── AppIcon-1 (dragged)-128.png │ ├── AppIcon-1 (dragged)-16.png │ ├── AppIcon-1 (dragged)-256.png │ ├── AppIcon-1 (dragged)-32.png │ ├── AppIcon-1 (dragged)-512.png │ ├── AppIcon-1 (dragged)-64.png │ └── Contents.json └── Contents.json ├── Extensions └── FileManager+FilesExist.swift ├── Info.plist ├── Libs ├── libblackjack.dylib ├── libhooker.dylib └── libsubstrate.dylib ├── Patch ├── patch.h ├── patch.m └── patch.swift ├── Utils ├── constants.swift ├── dependencies.swift ├── fatal.swift ├── files.swift └── shell.swift ├── View Models └── RootViewModel.swift ├── Views ├── FilePickerButton.swift ├── Header.swift ├── PatchButtonStyle.swift ├── PatchingProgressView.swift ├── RootView.swift ├── SubstrateInfo.swift └── URLText.swift ├── iPatch-Bridging-Header.h ├── iPatch.entitlements ├── iPatchApp.swift ├── iPatchAppDelegate.swift └── optool ├── LICENSE ├── NSData+Reading.h ├── NSData+Reading.m ├── defines.h ├── headers.h ├── headers.m ├── operations.h └── operations.m /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/README.md -------------------------------------------------------------------------------- /assets/window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/assets/window.png -------------------------------------------------------------------------------- /iPatch.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iPatch.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iPatch.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /iPatch.xcodeproj/xcshareddata/xcschemes/iPatch.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch.xcodeproj/xcshareddata/xcschemes/iPatch.xcscheme -------------------------------------------------------------------------------- /iPatch/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /iPatch/Assets.xcassets/AppIcon.appiconset/AppIcon-1 (dragged)-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/Assets.xcassets/AppIcon.appiconset/AppIcon-1 (dragged)-1024.png -------------------------------------------------------------------------------- /iPatch/Assets.xcassets/AppIcon.appiconset/AppIcon-1 (dragged)-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/Assets.xcassets/AppIcon.appiconset/AppIcon-1 (dragged)-128.png -------------------------------------------------------------------------------- /iPatch/Assets.xcassets/AppIcon.appiconset/AppIcon-1 (dragged)-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/Assets.xcassets/AppIcon.appiconset/AppIcon-1 (dragged)-16.png -------------------------------------------------------------------------------- /iPatch/Assets.xcassets/AppIcon.appiconset/AppIcon-1 (dragged)-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/Assets.xcassets/AppIcon.appiconset/AppIcon-1 (dragged)-256.png -------------------------------------------------------------------------------- /iPatch/Assets.xcassets/AppIcon.appiconset/AppIcon-1 (dragged)-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/Assets.xcassets/AppIcon.appiconset/AppIcon-1 (dragged)-32.png -------------------------------------------------------------------------------- /iPatch/Assets.xcassets/AppIcon.appiconset/AppIcon-1 (dragged)-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/Assets.xcassets/AppIcon.appiconset/AppIcon-1 (dragged)-512.png -------------------------------------------------------------------------------- /iPatch/Assets.xcassets/AppIcon.appiconset/AppIcon-1 (dragged)-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/Assets.xcassets/AppIcon.appiconset/AppIcon-1 (dragged)-64.png -------------------------------------------------------------------------------- /iPatch/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iPatch/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iPatch/Extensions/FileManager+FilesExist.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/Extensions/FileManager+FilesExist.swift -------------------------------------------------------------------------------- /iPatch/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/Info.plist -------------------------------------------------------------------------------- /iPatch/Libs/libblackjack.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/Libs/libblackjack.dylib -------------------------------------------------------------------------------- /iPatch/Libs/libhooker.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/Libs/libhooker.dylib -------------------------------------------------------------------------------- /iPatch/Libs/libsubstrate.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/Libs/libsubstrate.dylib -------------------------------------------------------------------------------- /iPatch/Patch/patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/Patch/patch.h -------------------------------------------------------------------------------- /iPatch/Patch/patch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/Patch/patch.m -------------------------------------------------------------------------------- /iPatch/Patch/patch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/Patch/patch.swift -------------------------------------------------------------------------------- /iPatch/Utils/constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/Utils/constants.swift -------------------------------------------------------------------------------- /iPatch/Utils/dependencies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/Utils/dependencies.swift -------------------------------------------------------------------------------- /iPatch/Utils/fatal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/Utils/fatal.swift -------------------------------------------------------------------------------- /iPatch/Utils/files.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/Utils/files.swift -------------------------------------------------------------------------------- /iPatch/Utils/shell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/Utils/shell.swift -------------------------------------------------------------------------------- /iPatch/View Models/RootViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/View Models/RootViewModel.swift -------------------------------------------------------------------------------- /iPatch/Views/FilePickerButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/Views/FilePickerButton.swift -------------------------------------------------------------------------------- /iPatch/Views/Header.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/Views/Header.swift -------------------------------------------------------------------------------- /iPatch/Views/PatchButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/Views/PatchButtonStyle.swift -------------------------------------------------------------------------------- /iPatch/Views/PatchingProgressView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/Views/PatchingProgressView.swift -------------------------------------------------------------------------------- /iPatch/Views/RootView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/Views/RootView.swift -------------------------------------------------------------------------------- /iPatch/Views/SubstrateInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/Views/SubstrateInfo.swift -------------------------------------------------------------------------------- /iPatch/Views/URLText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/Views/URLText.swift -------------------------------------------------------------------------------- /iPatch/iPatch-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/iPatch-Bridging-Header.h -------------------------------------------------------------------------------- /iPatch/iPatch.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/iPatch.entitlements -------------------------------------------------------------------------------- /iPatch/iPatchApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/iPatchApp.swift -------------------------------------------------------------------------------- /iPatch/iPatchAppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/iPatchAppDelegate.swift -------------------------------------------------------------------------------- /iPatch/optool/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/optool/LICENSE -------------------------------------------------------------------------------- /iPatch/optool/NSData+Reading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/optool/NSData+Reading.h -------------------------------------------------------------------------------- /iPatch/optool/NSData+Reading.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/optool/NSData+Reading.m -------------------------------------------------------------------------------- /iPatch/optool/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/optool/defines.h -------------------------------------------------------------------------------- /iPatch/optool/headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/optool/headers.h -------------------------------------------------------------------------------- /iPatch/optool/headers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/optool/headers.m -------------------------------------------------------------------------------- /iPatch/optool/operations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/optool/operations.h -------------------------------------------------------------------------------- /iPatch/optool/operations.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EamonTracey/iPatch/HEAD/iPatch/optool/operations.m --------------------------------------------------------------------------------