├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── binaries ├── .DS_Store ├── .licenses │ ├── Kernel64Patcher_LICENSE │ ├── iBootpatch2_LICENSE │ ├── img4tool_LICENSE │ ├── jq_LICENSE │ ├── libirecovery_COPYING │ └── pzb_LICENSE ├── Darwin │ ├── Kernel64Patcher │ ├── checkra1n │ ├── gaster │ ├── iBoot64Patcher │ ├── iBootpatch2 │ ├── ideviceenterrecovery │ ├── ideviceinfo │ ├── img4 │ ├── img4tool │ ├── iproxy │ ├── irecovery │ ├── jq │ ├── pzb │ └── sshpass ├── Kernel15Patcher.ios ├── Kernel16Patcher.ios └── Linux │ ├── Kernel64Patcher │ ├── checkra1n │ ├── gaster │ ├── iBoot64Patcher │ ├── iBootpatch2 │ ├── ideviceenterrecovery │ ├── ideviceinfo │ ├── img4 │ ├── iproxy │ ├── irecovery │ ├── jq │ ├── pzb │ └── sshpass ├── boot ├── other ├── .DS_Store ├── checkra1n-kpf-pongo ├── pongo.bin ├── rootedramdisk.dmg └── rootless │ ├── rd15.dmg │ └── rd16.dmg ├── palera1n.sh └── rootless ├── .DS_Store ├── bootstrap-ssh-iphoneos-arm64.tar.zst ├── deploy.sh ├── ellekit_rootless.deb ├── org.coolstar.sileonightly_2.4_iphoneos-arm64.deb ├── preferenceloader_2.2.6-1debug_iphoneos-arm64.deb └── src ├── .DS_Store └── iphoneos-arm64 └── install.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/LICENSE -------------------------------------------------------------------------------- /binaries/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/binaries/.DS_Store -------------------------------------------------------------------------------- /binaries/.licenses/Kernel64Patcher_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/binaries/.licenses/Kernel64Patcher_LICENSE -------------------------------------------------------------------------------- /binaries/.licenses/iBootpatch2_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/binaries/.licenses/iBootpatch2_LICENSE -------------------------------------------------------------------------------- /binaries/.licenses/img4tool_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/binaries/.licenses/img4tool_LICENSE -------------------------------------------------------------------------------- /binaries/.licenses/jq_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/binaries/.licenses/jq_LICENSE -------------------------------------------------------------------------------- /binaries/.licenses/libirecovery_COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/binaries/.licenses/libirecovery_COPYING -------------------------------------------------------------------------------- /binaries/.licenses/pzb_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/binaries/.licenses/pzb_LICENSE -------------------------------------------------------------------------------- /binaries/Darwin/Kernel64Patcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/binaries/Darwin/Kernel64Patcher -------------------------------------------------------------------------------- /binaries/Darwin/checkra1n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/binaries/Darwin/checkra1n -------------------------------------------------------------------------------- /binaries/Darwin/gaster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/binaries/Darwin/gaster -------------------------------------------------------------------------------- /binaries/Darwin/iBoot64Patcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/binaries/Darwin/iBoot64Patcher -------------------------------------------------------------------------------- /binaries/Darwin/iBootpatch2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/binaries/Darwin/iBootpatch2 -------------------------------------------------------------------------------- /binaries/Darwin/ideviceenterrecovery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/binaries/Darwin/ideviceenterrecovery -------------------------------------------------------------------------------- /binaries/Darwin/ideviceinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/binaries/Darwin/ideviceinfo -------------------------------------------------------------------------------- /binaries/Darwin/img4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/binaries/Darwin/img4 -------------------------------------------------------------------------------- /binaries/Darwin/img4tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/binaries/Darwin/img4tool -------------------------------------------------------------------------------- /binaries/Darwin/iproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/binaries/Darwin/iproxy -------------------------------------------------------------------------------- /binaries/Darwin/irecovery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/binaries/Darwin/irecovery -------------------------------------------------------------------------------- /binaries/Darwin/jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/binaries/Darwin/jq -------------------------------------------------------------------------------- /binaries/Darwin/pzb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/binaries/Darwin/pzb -------------------------------------------------------------------------------- /binaries/Darwin/sshpass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/binaries/Darwin/sshpass -------------------------------------------------------------------------------- /binaries/Kernel15Patcher.ios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/binaries/Kernel15Patcher.ios -------------------------------------------------------------------------------- /binaries/Kernel16Patcher.ios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/binaries/Kernel16Patcher.ios -------------------------------------------------------------------------------- /binaries/Linux/Kernel64Patcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/binaries/Linux/Kernel64Patcher -------------------------------------------------------------------------------- /binaries/Linux/checkra1n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/binaries/Linux/checkra1n -------------------------------------------------------------------------------- /binaries/Linux/gaster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/binaries/Linux/gaster -------------------------------------------------------------------------------- /binaries/Linux/iBoot64Patcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/binaries/Linux/iBoot64Patcher -------------------------------------------------------------------------------- /binaries/Linux/iBootpatch2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/binaries/Linux/iBootpatch2 -------------------------------------------------------------------------------- /binaries/Linux/ideviceenterrecovery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/binaries/Linux/ideviceenterrecovery -------------------------------------------------------------------------------- /binaries/Linux/ideviceinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/binaries/Linux/ideviceinfo -------------------------------------------------------------------------------- /binaries/Linux/img4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/binaries/Linux/img4 -------------------------------------------------------------------------------- /binaries/Linux/iproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/binaries/Linux/iproxy -------------------------------------------------------------------------------- /binaries/Linux/irecovery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/binaries/Linux/irecovery -------------------------------------------------------------------------------- /binaries/Linux/jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/binaries/Linux/jq -------------------------------------------------------------------------------- /binaries/Linux/pzb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/binaries/Linux/pzb -------------------------------------------------------------------------------- /binaries/Linux/sshpass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/binaries/Linux/sshpass -------------------------------------------------------------------------------- /boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/boot -------------------------------------------------------------------------------- /other/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/other/.DS_Store -------------------------------------------------------------------------------- /other/checkra1n-kpf-pongo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/other/checkra1n-kpf-pongo -------------------------------------------------------------------------------- /other/pongo.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/other/pongo.bin -------------------------------------------------------------------------------- /other/rootedramdisk.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/other/rootedramdisk.dmg -------------------------------------------------------------------------------- /other/rootless/rd15.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/other/rootless/rd15.dmg -------------------------------------------------------------------------------- /other/rootless/rd16.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/other/rootless/rd16.dmg -------------------------------------------------------------------------------- /palera1n.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/palera1n.sh -------------------------------------------------------------------------------- /rootless/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/rootless/.DS_Store -------------------------------------------------------------------------------- /rootless/bootstrap-ssh-iphoneos-arm64.tar.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/rootless/bootstrap-ssh-iphoneos-arm64.tar.zst -------------------------------------------------------------------------------- /rootless/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/rootless/deploy.sh -------------------------------------------------------------------------------- /rootless/ellekit_rootless.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/rootless/ellekit_rootless.deb -------------------------------------------------------------------------------- /rootless/org.coolstar.sileonightly_2.4_iphoneos-arm64.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/rootless/org.coolstar.sileonightly_2.4_iphoneos-arm64.deb -------------------------------------------------------------------------------- /rootless/preferenceloader_2.2.6-1debug_iphoneos-arm64.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/rootless/preferenceloader_2.2.6-1debug_iphoneos-arm64.deb -------------------------------------------------------------------------------- /rootless/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/rootless/src/.DS_Store -------------------------------------------------------------------------------- /rootless/src/iphoneos-arm64/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDengHui/palera1n_cn/HEAD/rootless/src/iphoneos-arm64/install.sh --------------------------------------------------------------------------------