├── .gitignore ├── .licenses ├── Kernel64Patcher_LICENSE ├── gtar_LICENSE ├── img4tool_LICENSE ├── iproxy_LICENSE ├── jq_LICENSE ├── libdmg-hfsplus_LICENSE ├── libirecovery_COPYING ├── partialZipBrowser_LICENSE ├── sshpass_LICENSE └── xcbuild_LICENSE ├── CloudConfigurationDetails.plist ├── Darwin ├── Kernel64Patcher ├── gtar ├── iBoot64Patcher ├── img4 ├── img4tool ├── iproxy ├── irecovery ├── jq ├── kerneldiff ├── pzb └── sshpass ├── LICENSE ├── Linux ├── Kernel64Patcher ├── PlistBuddy ├── hfsplus ├── iBoot64Patcher ├── img4 ├── img4tool ├── iproxy ├── irecovery ├── jq ├── kerneldiff ├── pzb └── sshpass ├── README.md ├── other ├── bootlogo.im4p └── ramdisk.tar.gz ├── shsh ├── 0x7000.shsh ├── 0x7001.shsh ├── 0x8000.shsh ├── 0x8003.shsh ├── 0x8010.shsh ├── 0x8011.shsh ├── 0x8012.shsh ├── 0x8015.shsh └── 0x8960.shsh └── sshrd.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/.gitignore -------------------------------------------------------------------------------- /.licenses/Kernel64Patcher_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/.licenses/Kernel64Patcher_LICENSE -------------------------------------------------------------------------------- /.licenses/gtar_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/.licenses/gtar_LICENSE -------------------------------------------------------------------------------- /.licenses/img4tool_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/.licenses/img4tool_LICENSE -------------------------------------------------------------------------------- /.licenses/iproxy_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/.licenses/iproxy_LICENSE -------------------------------------------------------------------------------- /.licenses/jq_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/.licenses/jq_LICENSE -------------------------------------------------------------------------------- /.licenses/libdmg-hfsplus_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/.licenses/libdmg-hfsplus_LICENSE -------------------------------------------------------------------------------- /.licenses/libirecovery_COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/.licenses/libirecovery_COPYING -------------------------------------------------------------------------------- /.licenses/partialZipBrowser_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/.licenses/partialZipBrowser_LICENSE -------------------------------------------------------------------------------- /.licenses/sshpass_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/.licenses/sshpass_LICENSE -------------------------------------------------------------------------------- /.licenses/xcbuild_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/.licenses/xcbuild_LICENSE -------------------------------------------------------------------------------- /CloudConfigurationDetails.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/CloudConfigurationDetails.plist -------------------------------------------------------------------------------- /Darwin/Kernel64Patcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/Darwin/Kernel64Patcher -------------------------------------------------------------------------------- /Darwin/gtar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/Darwin/gtar -------------------------------------------------------------------------------- /Darwin/iBoot64Patcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/Darwin/iBoot64Patcher -------------------------------------------------------------------------------- /Darwin/img4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/Darwin/img4 -------------------------------------------------------------------------------- /Darwin/img4tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/Darwin/img4tool -------------------------------------------------------------------------------- /Darwin/iproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/Darwin/iproxy -------------------------------------------------------------------------------- /Darwin/irecovery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/Darwin/irecovery -------------------------------------------------------------------------------- /Darwin/jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/Darwin/jq -------------------------------------------------------------------------------- /Darwin/kerneldiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/Darwin/kerneldiff -------------------------------------------------------------------------------- /Darwin/pzb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/Darwin/pzb -------------------------------------------------------------------------------- /Darwin/sshpass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/Darwin/sshpass -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/LICENSE -------------------------------------------------------------------------------- /Linux/Kernel64Patcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/Linux/Kernel64Patcher -------------------------------------------------------------------------------- /Linux/PlistBuddy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/Linux/PlistBuddy -------------------------------------------------------------------------------- /Linux/hfsplus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/Linux/hfsplus -------------------------------------------------------------------------------- /Linux/iBoot64Patcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/Linux/iBoot64Patcher -------------------------------------------------------------------------------- /Linux/img4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/Linux/img4 -------------------------------------------------------------------------------- /Linux/img4tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/Linux/img4tool -------------------------------------------------------------------------------- /Linux/iproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/Linux/iproxy -------------------------------------------------------------------------------- /Linux/irecovery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/Linux/irecovery -------------------------------------------------------------------------------- /Linux/jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/Linux/jq -------------------------------------------------------------------------------- /Linux/kerneldiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/Linux/kerneldiff -------------------------------------------------------------------------------- /Linux/pzb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/Linux/pzb -------------------------------------------------------------------------------- /Linux/sshpass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/Linux/sshpass -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/README.md -------------------------------------------------------------------------------- /other/bootlogo.im4p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/other/bootlogo.im4p -------------------------------------------------------------------------------- /other/ramdisk.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/other/ramdisk.tar.gz -------------------------------------------------------------------------------- /shsh/0x7000.shsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/shsh/0x7000.shsh -------------------------------------------------------------------------------- /shsh/0x7001.shsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/shsh/0x7001.shsh -------------------------------------------------------------------------------- /shsh/0x8000.shsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/shsh/0x8000.shsh -------------------------------------------------------------------------------- /shsh/0x8003.shsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/shsh/0x8003.shsh -------------------------------------------------------------------------------- /shsh/0x8010.shsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/shsh/0x8010.shsh -------------------------------------------------------------------------------- /shsh/0x8011.shsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/shsh/0x8011.shsh -------------------------------------------------------------------------------- /shsh/0x8012.shsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/shsh/0x8012.shsh -------------------------------------------------------------------------------- /shsh/0x8015.shsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/shsh/0x8015.shsh -------------------------------------------------------------------------------- /shsh/0x8960.shsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/shsh/0x8960.shsh -------------------------------------------------------------------------------- /sshrd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikhric/ios15-mdm-bypass/HEAD/sshrd.sh --------------------------------------------------------------------------------