├── .gitignore ├── JAILBREAK-GUIDE.md ├── LICENSE ├── Makefile ├── README.md ├── SHAtter.py ├── aes-keys └── S5L8920-firmware ├── alloc8.py ├── bin ├── 24Kpwn-shellcode.bin ├── SHAtter-shellcode.bin ├── alloc8-shellcode.bin ├── checkm8_arm64.bin ├── checkm8_armv7.bin ├── ibss-flash-nor-shellcode.bin ├── limera1n-shellcode.bin ├── steaks4uce-shellcode.bin ├── t8010_t8011_disable_wxn_arm64.bin ├── usb_0xA1_2_arm64.bin └── usb_0xA1_2_armv7.bin ├── checkm8.py ├── device_platform.py ├── dfu.py ├── dfuexec.py ├── ibootpatcher ├── image3.py ├── image3_24Kpwn.py ├── ipwndfu ├── ipwnrecovery ├── libusbfinder ├── __init__.py └── bottles │ ├── libusb-1.0.19.mountain_lion.bottle.1.tar.gz │ ├── libusb-1.0.20.mavericks.bottle.1.tar.gz │ ├── libusb-1.0.21.yosemite.bottle.tar.gz │ ├── libusb-1.0.22.el_capitan.bottle.tar.gz │ ├── libusb-1.0.22.high_sierra.bottle.tar.gz │ ├── libusb-1.0.22.mojave.bottle.tar.gz │ └── libusb-1.0.22.sierra.bottle.tar.gz ├── limera1n.py ├── nor-backups └── README ├── nor.py ├── recovery.py ├── repo └── ipwndfu.png ├── rmsigchks.py ├── rmsigchks_t8015.py ├── src ├── 24Kpwn-shellcode.S ├── SHAtter-shellcode.S ├── alloc8-shellcode.S ├── checkm8_arm64.S ├── checkm8_armv7.S ├── ibss-flash-nor-shellcode.S ├── limera1n-shellcode.S ├── steaks4uce-shellcode.S ├── t8010_t8011_disable_wxn_arm64.S ├── usb_0xA1_2_arm64.S └── usb_0xA1_2_armv7.S ├── steaks4uce.py ├── usb ├── ACKNOWLEDGEMENTS ├── LICENSE ├── README.rst ├── __init__.py ├── _debug.py ├── _interop.py ├── _lookup.py ├── _objfinalizer.py ├── backend │ ├── __init__.py │ ├── libusb0.py │ ├── libusb1.py │ └── openusb.py ├── control.py ├── core.py ├── legacy.py ├── libloader.py └── util.py ├── usbexec.py └── utilities.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/.gitignore -------------------------------------------------------------------------------- /JAILBREAK-GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/JAILBREAK-GUIDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/README.md -------------------------------------------------------------------------------- /SHAtter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/SHAtter.py -------------------------------------------------------------------------------- /aes-keys/S5L8920-firmware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/aes-keys/S5L8920-firmware -------------------------------------------------------------------------------- /alloc8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/alloc8.py -------------------------------------------------------------------------------- /bin/24Kpwn-shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/bin/24Kpwn-shellcode.bin -------------------------------------------------------------------------------- /bin/SHAtter-shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/bin/SHAtter-shellcode.bin -------------------------------------------------------------------------------- /bin/alloc8-shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/bin/alloc8-shellcode.bin -------------------------------------------------------------------------------- /bin/checkm8_arm64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/bin/checkm8_arm64.bin -------------------------------------------------------------------------------- /bin/checkm8_armv7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/bin/checkm8_armv7.bin -------------------------------------------------------------------------------- /bin/ibss-flash-nor-shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/bin/ibss-flash-nor-shellcode.bin -------------------------------------------------------------------------------- /bin/limera1n-shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/bin/limera1n-shellcode.bin -------------------------------------------------------------------------------- /bin/steaks4uce-shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/bin/steaks4uce-shellcode.bin -------------------------------------------------------------------------------- /bin/t8010_t8011_disable_wxn_arm64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/bin/t8010_t8011_disable_wxn_arm64.bin -------------------------------------------------------------------------------- /bin/usb_0xA1_2_arm64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/bin/usb_0xA1_2_arm64.bin -------------------------------------------------------------------------------- /bin/usb_0xA1_2_armv7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/bin/usb_0xA1_2_armv7.bin -------------------------------------------------------------------------------- /checkm8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/checkm8.py -------------------------------------------------------------------------------- /device_platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/device_platform.py -------------------------------------------------------------------------------- /dfu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/dfu.py -------------------------------------------------------------------------------- /dfuexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/dfuexec.py -------------------------------------------------------------------------------- /ibootpatcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/ibootpatcher -------------------------------------------------------------------------------- /image3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/image3.py -------------------------------------------------------------------------------- /image3_24Kpwn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/image3_24Kpwn.py -------------------------------------------------------------------------------- /ipwndfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/ipwndfu -------------------------------------------------------------------------------- /ipwnrecovery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/ipwnrecovery -------------------------------------------------------------------------------- /libusbfinder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/libusbfinder/__init__.py -------------------------------------------------------------------------------- /libusbfinder/bottles/libusb-1.0.19.mountain_lion.bottle.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/libusbfinder/bottles/libusb-1.0.19.mountain_lion.bottle.1.tar.gz -------------------------------------------------------------------------------- /libusbfinder/bottles/libusb-1.0.20.mavericks.bottle.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/libusbfinder/bottles/libusb-1.0.20.mavericks.bottle.1.tar.gz -------------------------------------------------------------------------------- /libusbfinder/bottles/libusb-1.0.21.yosemite.bottle.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/libusbfinder/bottles/libusb-1.0.21.yosemite.bottle.tar.gz -------------------------------------------------------------------------------- /libusbfinder/bottles/libusb-1.0.22.el_capitan.bottle.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/libusbfinder/bottles/libusb-1.0.22.el_capitan.bottle.tar.gz -------------------------------------------------------------------------------- /libusbfinder/bottles/libusb-1.0.22.high_sierra.bottle.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/libusbfinder/bottles/libusb-1.0.22.high_sierra.bottle.tar.gz -------------------------------------------------------------------------------- /libusbfinder/bottles/libusb-1.0.22.mojave.bottle.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/libusbfinder/bottles/libusb-1.0.22.mojave.bottle.tar.gz -------------------------------------------------------------------------------- /libusbfinder/bottles/libusb-1.0.22.sierra.bottle.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/libusbfinder/bottles/libusb-1.0.22.sierra.bottle.tar.gz -------------------------------------------------------------------------------- /limera1n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/limera1n.py -------------------------------------------------------------------------------- /nor-backups/README: -------------------------------------------------------------------------------- 1 | Your NOR backups will be stored here. 2 | -------------------------------------------------------------------------------- /nor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/nor.py -------------------------------------------------------------------------------- /recovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/recovery.py -------------------------------------------------------------------------------- /repo/ipwndfu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/repo/ipwndfu.png -------------------------------------------------------------------------------- /rmsigchks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/rmsigchks.py -------------------------------------------------------------------------------- /rmsigchks_t8015.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/rmsigchks_t8015.py -------------------------------------------------------------------------------- /src/24Kpwn-shellcode.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/src/24Kpwn-shellcode.S -------------------------------------------------------------------------------- /src/SHAtter-shellcode.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/src/SHAtter-shellcode.S -------------------------------------------------------------------------------- /src/alloc8-shellcode.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/src/alloc8-shellcode.S -------------------------------------------------------------------------------- /src/checkm8_arm64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/src/checkm8_arm64.S -------------------------------------------------------------------------------- /src/checkm8_armv7.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/src/checkm8_armv7.S -------------------------------------------------------------------------------- /src/ibss-flash-nor-shellcode.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/src/ibss-flash-nor-shellcode.S -------------------------------------------------------------------------------- /src/limera1n-shellcode.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/src/limera1n-shellcode.S -------------------------------------------------------------------------------- /src/steaks4uce-shellcode.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/src/steaks4uce-shellcode.S -------------------------------------------------------------------------------- /src/t8010_t8011_disable_wxn_arm64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/src/t8010_t8011_disable_wxn_arm64.S -------------------------------------------------------------------------------- /src/usb_0xA1_2_arm64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/src/usb_0xA1_2_arm64.S -------------------------------------------------------------------------------- /src/usb_0xA1_2_armv7.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/src/usb_0xA1_2_armv7.S -------------------------------------------------------------------------------- /steaks4uce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/steaks4uce.py -------------------------------------------------------------------------------- /usb/ACKNOWLEDGEMENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/usb/ACKNOWLEDGEMENTS -------------------------------------------------------------------------------- /usb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/usb/LICENSE -------------------------------------------------------------------------------- /usb/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/usb/README.rst -------------------------------------------------------------------------------- /usb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/usb/__init__.py -------------------------------------------------------------------------------- /usb/_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/usb/_debug.py -------------------------------------------------------------------------------- /usb/_interop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/usb/_interop.py -------------------------------------------------------------------------------- /usb/_lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/usb/_lookup.py -------------------------------------------------------------------------------- /usb/_objfinalizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/usb/_objfinalizer.py -------------------------------------------------------------------------------- /usb/backend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/usb/backend/__init__.py -------------------------------------------------------------------------------- /usb/backend/libusb0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/usb/backend/libusb0.py -------------------------------------------------------------------------------- /usb/backend/libusb1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/usb/backend/libusb1.py -------------------------------------------------------------------------------- /usb/backend/openusb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/usb/backend/openusb.py -------------------------------------------------------------------------------- /usb/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/usb/control.py -------------------------------------------------------------------------------- /usb/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/usb/core.py -------------------------------------------------------------------------------- /usb/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/usb/legacy.py -------------------------------------------------------------------------------- /usb/libloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/usb/libloader.py -------------------------------------------------------------------------------- /usb/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/usb/util.py -------------------------------------------------------------------------------- /usbexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/usbexec.py -------------------------------------------------------------------------------- /utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusHenze/ipwndfu_public/HEAD/utilities.py --------------------------------------------------------------------------------