├── .DS_Store ├── .deepsource.toml ├── .gitattributes ├── .gitignore ├── MDMPatcher Universal.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcuserdata │ │ ├── janfabel.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ ├── otpdevelopment.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── paulroder.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── janfabel.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ └── xcschememanagement.plist │ ├── otpdevelopment.xcuserdatad │ └── xcschemes │ │ └── xcschememanagement.plist │ └── paulroder.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── MDMPatcher ├── .DS_Store ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── AppIcon1028.png │ │ ├── AppIcon128 1.png │ │ ├── AppIcon16.png │ │ ├── AppIcon256 1.png │ │ ├── AppIcon256.png │ │ ├── AppIcon32 1.png │ │ ├── AppIcon32.png │ │ ├── AppIcon512 1.png │ │ ├── AppIcon512.png │ │ ├── AppIcon64.png │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ └── Main.storyboard ├── ExtensionsShit.swift ├── Info.plist ├── MDMPatcher-Bridging-Header.h ├── MDMPatcher.entitlements ├── USBDetection.swift ├── ViewController.swift ├── asprintf.h ├── clean_archive.zip ├── clean_info.plist ├── clean_manifest.plist ├── endianness.h ├── extension1.pdf ├── extension2.pdf ├── iDeviceInfoFunctions.swift ├── idevicebackup2.c ├── idevicebackup2.h ├── libiMobileeDevice.dylib ├── libidevicefunctions.c ├── libidevicefunctions.h ├── socket.c ├── socket.h ├── thread.c ├── thread.h └── utils.h ├── README.md ├── deobfuscation.swift ├── libcbpatcher-old.a ├── libcbpatcher.a ├── libcrypto.dylib ├── libcurl.dylib ├── libfragmentzip.dylib ├── libiboot32patcher.a ├── libideviceactivation-1.0.2.dylib ├── libideviceactivation-1.0.a ├── libidevicerestore-old.a ├── libidevicerestore.a ├── libimobiledevice-1.0.a ├── libirecovery.dylib ├── libplist.dylib ├── libssl.dylib ├── libusbmuxd.dylib ├── libxpwntool-old.a ├── libxpwntool.a ├── libzip.dylib └── screenshots ├── app.png ├── banner.png ├── could_not_verify.png ├── settings_blocked.png └── v1.0.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/.DS_Store -------------------------------------------------------------------------------- /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/.gitignore -------------------------------------------------------------------------------- /MDMPatcher Universal.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher Universal.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MDMPatcher Universal.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher Universal.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MDMPatcher Universal.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher Universal.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /MDMPatcher Universal.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher Universal.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /MDMPatcher Universal.xcodeproj/project.xcworkspace/xcuserdata/janfabel.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher Universal.xcodeproj/project.xcworkspace/xcuserdata/janfabel.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /MDMPatcher Universal.xcodeproj/project.xcworkspace/xcuserdata/otpdevelopment.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher Universal.xcodeproj/project.xcworkspace/xcuserdata/otpdevelopment.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /MDMPatcher Universal.xcodeproj/project.xcworkspace/xcuserdata/paulroder.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher Universal.xcodeproj/project.xcworkspace/xcuserdata/paulroder.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /MDMPatcher Universal.xcodeproj/xcuserdata/janfabel.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher Universal.xcodeproj/xcuserdata/janfabel.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /MDMPatcher Universal.xcodeproj/xcuserdata/janfabel.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher Universal.xcodeproj/xcuserdata/janfabel.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /MDMPatcher Universal.xcodeproj/xcuserdata/otpdevelopment.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher Universal.xcodeproj/xcuserdata/otpdevelopment.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /MDMPatcher Universal.xcodeproj/xcuserdata/paulroder.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher Universal.xcodeproj/xcuserdata/paulroder.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /MDMPatcher/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/.DS_Store -------------------------------------------------------------------------------- /MDMPatcher/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/AppDelegate.swift -------------------------------------------------------------------------------- /MDMPatcher/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /MDMPatcher/Assets.xcassets/AppIcon.appiconset/AppIcon1028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/Assets.xcassets/AppIcon.appiconset/AppIcon1028.png -------------------------------------------------------------------------------- /MDMPatcher/Assets.xcassets/AppIcon.appiconset/AppIcon128 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/Assets.xcassets/AppIcon.appiconset/AppIcon128 1.png -------------------------------------------------------------------------------- /MDMPatcher/Assets.xcassets/AppIcon.appiconset/AppIcon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/Assets.xcassets/AppIcon.appiconset/AppIcon16.png -------------------------------------------------------------------------------- /MDMPatcher/Assets.xcassets/AppIcon.appiconset/AppIcon256 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/Assets.xcassets/AppIcon.appiconset/AppIcon256 1.png -------------------------------------------------------------------------------- /MDMPatcher/Assets.xcassets/AppIcon.appiconset/AppIcon256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/Assets.xcassets/AppIcon.appiconset/AppIcon256.png -------------------------------------------------------------------------------- /MDMPatcher/Assets.xcassets/AppIcon.appiconset/AppIcon32 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/Assets.xcassets/AppIcon.appiconset/AppIcon32 1.png -------------------------------------------------------------------------------- /MDMPatcher/Assets.xcassets/AppIcon.appiconset/AppIcon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/Assets.xcassets/AppIcon.appiconset/AppIcon32.png -------------------------------------------------------------------------------- /MDMPatcher/Assets.xcassets/AppIcon.appiconset/AppIcon512 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/Assets.xcassets/AppIcon.appiconset/AppIcon512 1.png -------------------------------------------------------------------------------- /MDMPatcher/Assets.xcassets/AppIcon.appiconset/AppIcon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/Assets.xcassets/AppIcon.appiconset/AppIcon512.png -------------------------------------------------------------------------------- /MDMPatcher/Assets.xcassets/AppIcon.appiconset/AppIcon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/Assets.xcassets/AppIcon.appiconset/AppIcon64.png -------------------------------------------------------------------------------- /MDMPatcher/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /MDMPatcher/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /MDMPatcher/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /MDMPatcher/ExtensionsShit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/ExtensionsShit.swift -------------------------------------------------------------------------------- /MDMPatcher/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/Info.plist -------------------------------------------------------------------------------- /MDMPatcher/MDMPatcher-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/MDMPatcher-Bridging-Header.h -------------------------------------------------------------------------------- /MDMPatcher/MDMPatcher.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/MDMPatcher.entitlements -------------------------------------------------------------------------------- /MDMPatcher/USBDetection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/USBDetection.swift -------------------------------------------------------------------------------- /MDMPatcher/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/ViewController.swift -------------------------------------------------------------------------------- /MDMPatcher/asprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/asprintf.h -------------------------------------------------------------------------------- /MDMPatcher/clean_archive.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/clean_archive.zip -------------------------------------------------------------------------------- /MDMPatcher/clean_info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/clean_info.plist -------------------------------------------------------------------------------- /MDMPatcher/clean_manifest.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/clean_manifest.plist -------------------------------------------------------------------------------- /MDMPatcher/endianness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/endianness.h -------------------------------------------------------------------------------- /MDMPatcher/extension1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/extension1.pdf -------------------------------------------------------------------------------- /MDMPatcher/extension2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/extension2.pdf -------------------------------------------------------------------------------- /MDMPatcher/iDeviceInfoFunctions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/iDeviceInfoFunctions.swift -------------------------------------------------------------------------------- /MDMPatcher/idevicebackup2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/idevicebackup2.c -------------------------------------------------------------------------------- /MDMPatcher/idevicebackup2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/idevicebackup2.h -------------------------------------------------------------------------------- /MDMPatcher/libiMobileeDevice.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/libiMobileeDevice.dylib -------------------------------------------------------------------------------- /MDMPatcher/libidevicefunctions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/libidevicefunctions.c -------------------------------------------------------------------------------- /MDMPatcher/libidevicefunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/libidevicefunctions.h -------------------------------------------------------------------------------- /MDMPatcher/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/socket.c -------------------------------------------------------------------------------- /MDMPatcher/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/socket.h -------------------------------------------------------------------------------- /MDMPatcher/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/thread.c -------------------------------------------------------------------------------- /MDMPatcher/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/thread.h -------------------------------------------------------------------------------- /MDMPatcher/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/MDMPatcher/utils.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/README.md -------------------------------------------------------------------------------- /deobfuscation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/deobfuscation.swift -------------------------------------------------------------------------------- /libcbpatcher-old.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/libcbpatcher-old.a -------------------------------------------------------------------------------- /libcbpatcher.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/libcbpatcher.a -------------------------------------------------------------------------------- /libcrypto.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/libcrypto.dylib -------------------------------------------------------------------------------- /libcurl.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/libcurl.dylib -------------------------------------------------------------------------------- /libfragmentzip.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/libfragmentzip.dylib -------------------------------------------------------------------------------- /libiboot32patcher.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/libiboot32patcher.a -------------------------------------------------------------------------------- /libideviceactivation-1.0.2.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/libideviceactivation-1.0.2.dylib -------------------------------------------------------------------------------- /libideviceactivation-1.0.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/libideviceactivation-1.0.a -------------------------------------------------------------------------------- /libidevicerestore-old.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/libidevicerestore-old.a -------------------------------------------------------------------------------- /libidevicerestore.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/libidevicerestore.a -------------------------------------------------------------------------------- /libimobiledevice-1.0.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/libimobiledevice-1.0.a -------------------------------------------------------------------------------- /libirecovery.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/libirecovery.dylib -------------------------------------------------------------------------------- /libplist.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/libplist.dylib -------------------------------------------------------------------------------- /libssl.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/libssl.dylib -------------------------------------------------------------------------------- /libusbmuxd.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/libusbmuxd.dylib -------------------------------------------------------------------------------- /libxpwntool-old.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/libxpwntool-old.a -------------------------------------------------------------------------------- /libxpwntool.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/libxpwntool.a -------------------------------------------------------------------------------- /libzip.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/libzip.dylib -------------------------------------------------------------------------------- /screenshots/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/screenshots/app.png -------------------------------------------------------------------------------- /screenshots/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/screenshots/banner.png -------------------------------------------------------------------------------- /screenshots/could_not_verify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/screenshots/could_not_verify.png -------------------------------------------------------------------------------- /screenshots/settings_blocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/screenshots/settings_blocked.png -------------------------------------------------------------------------------- /screenshots/v1.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fled-dev/MDMPatcher-Enhanced/HEAD/screenshots/v1.0.png --------------------------------------------------------------------------------