├── .gitignore ├── LICENSE ├── README.md ├── pyboot.py ├── requirements.txt └── resources ├── __init__.py ├── bin ├── Kernel64Patcher ├── dtree_patcher ├── eclipsa7000 ├── eclipsa7001 ├── eclipsa8000 ├── eclipsa8003 ├── iBoot64Patcher ├── iPwnder32 ├── ibootim ├── img4 ├── img4tool ├── irecovery ├── kairos ├── pzb └── tsschecker ├── bootlogo.png ├── img4.py ├── iospythontools ├── __init__.py ├── iphonewiki.py ├── ipswapi.py ├── manifest.py ├── requirements.txt └── utils.py ├── ipsw.py ├── ipwndfu ├── .gitignore ├── __init__.py ├── bin │ ├── 0x8015.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 ├── device_platform2.py ├── dfu.py ├── dfu2.py ├── 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 ├── rmsigchks.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 ├── usbexec2.py └── utilities.py ├── ipwndfu8010 ├── .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 ├── 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 ├── ipwndfuKeys ├── .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 │ ├── checkm8_nopaddingcorruption_arm64.bin │ ├── ibss-flash-nor-shellcode.bin │ ├── limera1n-shellcode.bin │ ├── steaks4uce-shellcode.bin │ ├── t8010_t8011_disable_wxn_arm64.bin │ ├── t8015_shellcode_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 ├── src │ ├── 24Kpwn-shellcode.S │ ├── SHAtter-shellcode.S │ ├── alloc8-shellcode.S │ ├── checkm8_arm64.S │ ├── checkm8_armv7.S │ ├── checkm8_nopaddingcorruption_arm64.S │ ├── ibss-flash-nor-shellcode.S │ ├── limera1n-shellcode.S │ ├── steaks4uce-shellcode.S │ ├── t8010_t8011_disable_wxn_arm64.S │ ├── t8015_shellcode_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 ├── ipwndfuX ├── .gitignore ├── JAILBREAK-GUIDE.md ├── LICENSE ├── Makefile ├── README.md ├── SHAtter.py ├── aes-keys │ └── S5L8920-firmware ├── alloc8.py ├── bin │ ├── 0x8015.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 │ ├── t8015_shellcode_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 ├── src │ ├── 0x8015.S │ ├── 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 │ ├── t8015_shellcode_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 ├── kc.bpatch └── pwn.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/README.md -------------------------------------------------------------------------------- /pyboot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/pyboot.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/bin/Kernel64Patcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/bin/Kernel64Patcher -------------------------------------------------------------------------------- /resources/bin/dtree_patcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/bin/dtree_patcher -------------------------------------------------------------------------------- /resources/bin/eclipsa7000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/bin/eclipsa7000 -------------------------------------------------------------------------------- /resources/bin/eclipsa7001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/bin/eclipsa7001 -------------------------------------------------------------------------------- /resources/bin/eclipsa8000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/bin/eclipsa8000 -------------------------------------------------------------------------------- /resources/bin/eclipsa8003: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/bin/eclipsa8003 -------------------------------------------------------------------------------- /resources/bin/iBoot64Patcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/bin/iBoot64Patcher -------------------------------------------------------------------------------- /resources/bin/iPwnder32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/bin/iPwnder32 -------------------------------------------------------------------------------- /resources/bin/ibootim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/bin/ibootim -------------------------------------------------------------------------------- /resources/bin/img4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/bin/img4 -------------------------------------------------------------------------------- /resources/bin/img4tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/bin/img4tool -------------------------------------------------------------------------------- /resources/bin/irecovery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/bin/irecovery -------------------------------------------------------------------------------- /resources/bin/kairos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/bin/kairos -------------------------------------------------------------------------------- /resources/bin/pzb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/bin/pzb -------------------------------------------------------------------------------- /resources/bin/tsschecker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/bin/tsschecker -------------------------------------------------------------------------------- /resources/bootlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/bootlogo.png -------------------------------------------------------------------------------- /resources/img4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/img4.py -------------------------------------------------------------------------------- /resources/iospythontools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/iospythontools/iphonewiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/iospythontools/iphonewiki.py -------------------------------------------------------------------------------- /resources/iospythontools/ipswapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/iospythontools/ipswapi.py -------------------------------------------------------------------------------- /resources/iospythontools/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/iospythontools/manifest.py -------------------------------------------------------------------------------- /resources/iospythontools/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/iospythontools/requirements.txt -------------------------------------------------------------------------------- /resources/iospythontools/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/iospythontools/utils.py -------------------------------------------------------------------------------- /resources/ipsw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipsw.py -------------------------------------------------------------------------------- /resources/ipwndfu/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/.gitignore -------------------------------------------------------------------------------- /resources/ipwndfu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/ipwndfu/bin/0x8015.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/bin/0x8015.bin -------------------------------------------------------------------------------- /resources/ipwndfu/bin/24Kpwn-shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/bin/24Kpwn-shellcode.bin -------------------------------------------------------------------------------- /resources/ipwndfu/bin/SHAtter-shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/bin/SHAtter-shellcode.bin -------------------------------------------------------------------------------- /resources/ipwndfu/bin/alloc8-shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/bin/alloc8-shellcode.bin -------------------------------------------------------------------------------- /resources/ipwndfu/bin/checkm8_arm64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/bin/checkm8_arm64.bin -------------------------------------------------------------------------------- /resources/ipwndfu/bin/checkm8_armv7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/bin/checkm8_armv7.bin -------------------------------------------------------------------------------- /resources/ipwndfu/bin/ibss-flash-nor-shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/bin/ibss-flash-nor-shellcode.bin -------------------------------------------------------------------------------- /resources/ipwndfu/bin/limera1n-shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/bin/limera1n-shellcode.bin -------------------------------------------------------------------------------- /resources/ipwndfu/bin/steaks4uce-shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/bin/steaks4uce-shellcode.bin -------------------------------------------------------------------------------- /resources/ipwndfu/bin/t8010_t8011_disable_wxn_arm64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/bin/t8010_t8011_disable_wxn_arm64.bin -------------------------------------------------------------------------------- /resources/ipwndfu/bin/usb_0xA1_2_arm64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/bin/usb_0xA1_2_arm64.bin -------------------------------------------------------------------------------- /resources/ipwndfu/bin/usb_0xA1_2_armv7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/bin/usb_0xA1_2_armv7.bin -------------------------------------------------------------------------------- /resources/ipwndfu/checkm8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/checkm8.py -------------------------------------------------------------------------------- /resources/ipwndfu/device_platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/device_platform.py -------------------------------------------------------------------------------- /resources/ipwndfu/device_platform2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/device_platform2.py -------------------------------------------------------------------------------- /resources/ipwndfu/dfu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/dfu.py -------------------------------------------------------------------------------- /resources/ipwndfu/dfu2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/dfu2.py -------------------------------------------------------------------------------- /resources/ipwndfu/libusbfinder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/libusbfinder/__init__.py -------------------------------------------------------------------------------- /resources/ipwndfu/libusbfinder/bottles/libusb-1.0.19.mountain_lion.bottle.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/libusbfinder/bottles/libusb-1.0.19.mountain_lion.bottle.1.tar.gz -------------------------------------------------------------------------------- /resources/ipwndfu/libusbfinder/bottles/libusb-1.0.20.mavericks.bottle.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/libusbfinder/bottles/libusb-1.0.20.mavericks.bottle.1.tar.gz -------------------------------------------------------------------------------- /resources/ipwndfu/libusbfinder/bottles/libusb-1.0.21.yosemite.bottle.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/libusbfinder/bottles/libusb-1.0.21.yosemite.bottle.tar.gz -------------------------------------------------------------------------------- /resources/ipwndfu/libusbfinder/bottles/libusb-1.0.22.el_capitan.bottle.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/libusbfinder/bottles/libusb-1.0.22.el_capitan.bottle.tar.gz -------------------------------------------------------------------------------- /resources/ipwndfu/libusbfinder/bottles/libusb-1.0.22.high_sierra.bottle.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/libusbfinder/bottles/libusb-1.0.22.high_sierra.bottle.tar.gz -------------------------------------------------------------------------------- /resources/ipwndfu/libusbfinder/bottles/libusb-1.0.22.mojave.bottle.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/libusbfinder/bottles/libusb-1.0.22.mojave.bottle.tar.gz -------------------------------------------------------------------------------- /resources/ipwndfu/libusbfinder/bottles/libusb-1.0.22.sierra.bottle.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/libusbfinder/bottles/libusb-1.0.22.sierra.bottle.tar.gz -------------------------------------------------------------------------------- /resources/ipwndfu/rmsigchks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/rmsigchks.py -------------------------------------------------------------------------------- /resources/ipwndfu/usb/ACKNOWLEDGEMENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/usb/ACKNOWLEDGEMENTS -------------------------------------------------------------------------------- /resources/ipwndfu/usb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/usb/LICENSE -------------------------------------------------------------------------------- /resources/ipwndfu/usb/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/usb/README.rst -------------------------------------------------------------------------------- /resources/ipwndfu/usb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/usb/__init__.py -------------------------------------------------------------------------------- /resources/ipwndfu/usb/_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/usb/_debug.py -------------------------------------------------------------------------------- /resources/ipwndfu/usb/_interop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/usb/_interop.py -------------------------------------------------------------------------------- /resources/ipwndfu/usb/_lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/usb/_lookup.py -------------------------------------------------------------------------------- /resources/ipwndfu/usb/_objfinalizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/usb/_objfinalizer.py -------------------------------------------------------------------------------- /resources/ipwndfu/usb/backend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/usb/backend/__init__.py -------------------------------------------------------------------------------- /resources/ipwndfu/usb/backend/libusb0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/usb/backend/libusb0.py -------------------------------------------------------------------------------- /resources/ipwndfu/usb/backend/libusb1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/usb/backend/libusb1.py -------------------------------------------------------------------------------- /resources/ipwndfu/usb/backend/openusb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/usb/backend/openusb.py -------------------------------------------------------------------------------- /resources/ipwndfu/usb/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/usb/control.py -------------------------------------------------------------------------------- /resources/ipwndfu/usb/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/usb/core.py -------------------------------------------------------------------------------- /resources/ipwndfu/usb/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/usb/legacy.py -------------------------------------------------------------------------------- /resources/ipwndfu/usb/libloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/usb/libloader.py -------------------------------------------------------------------------------- /resources/ipwndfu/usb/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/usb/util.py -------------------------------------------------------------------------------- /resources/ipwndfu/usbexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/usbexec.py -------------------------------------------------------------------------------- /resources/ipwndfu/usbexec2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/usbexec2.py -------------------------------------------------------------------------------- /resources/ipwndfu/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu/utilities.py -------------------------------------------------------------------------------- /resources/ipwndfu8010/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/.gitignore -------------------------------------------------------------------------------- /resources/ipwndfu8010/JAILBREAK-GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/JAILBREAK-GUIDE.md -------------------------------------------------------------------------------- /resources/ipwndfu8010/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/LICENSE -------------------------------------------------------------------------------- /resources/ipwndfu8010/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/Makefile -------------------------------------------------------------------------------- /resources/ipwndfu8010/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/README.md -------------------------------------------------------------------------------- /resources/ipwndfu8010/SHAtter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/SHAtter.py -------------------------------------------------------------------------------- /resources/ipwndfu8010/aes-keys/S5L8920-firmware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/aes-keys/S5L8920-firmware -------------------------------------------------------------------------------- /resources/ipwndfu8010/alloc8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/alloc8.py -------------------------------------------------------------------------------- /resources/ipwndfu8010/bin/24Kpwn-shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/bin/24Kpwn-shellcode.bin -------------------------------------------------------------------------------- /resources/ipwndfu8010/bin/SHAtter-shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/bin/SHAtter-shellcode.bin -------------------------------------------------------------------------------- /resources/ipwndfu8010/bin/alloc8-shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/bin/alloc8-shellcode.bin -------------------------------------------------------------------------------- /resources/ipwndfu8010/bin/checkm8_arm64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/bin/checkm8_arm64.bin -------------------------------------------------------------------------------- /resources/ipwndfu8010/bin/checkm8_armv7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/bin/checkm8_armv7.bin -------------------------------------------------------------------------------- /resources/ipwndfu8010/bin/ibss-flash-nor-shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/bin/ibss-flash-nor-shellcode.bin -------------------------------------------------------------------------------- /resources/ipwndfu8010/bin/limera1n-shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/bin/limera1n-shellcode.bin -------------------------------------------------------------------------------- /resources/ipwndfu8010/bin/steaks4uce-shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/bin/steaks4uce-shellcode.bin -------------------------------------------------------------------------------- /resources/ipwndfu8010/bin/t8010_t8011_disable_wxn_arm64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/bin/t8010_t8011_disable_wxn_arm64.bin -------------------------------------------------------------------------------- /resources/ipwndfu8010/bin/usb_0xA1_2_arm64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/bin/usb_0xA1_2_arm64.bin -------------------------------------------------------------------------------- /resources/ipwndfu8010/bin/usb_0xA1_2_armv7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/bin/usb_0xA1_2_armv7.bin -------------------------------------------------------------------------------- /resources/ipwndfu8010/checkm8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/checkm8.py -------------------------------------------------------------------------------- /resources/ipwndfu8010/device_platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/device_platform.py -------------------------------------------------------------------------------- /resources/ipwndfu8010/dfu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/dfu.py -------------------------------------------------------------------------------- /resources/ipwndfu8010/dfuexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/dfuexec.py -------------------------------------------------------------------------------- /resources/ipwndfu8010/ibootpatcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/ibootpatcher -------------------------------------------------------------------------------- /resources/ipwndfu8010/image3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/image3.py -------------------------------------------------------------------------------- /resources/ipwndfu8010/image3_24Kpwn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/image3_24Kpwn.py -------------------------------------------------------------------------------- /resources/ipwndfu8010/ipwndfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/ipwndfu -------------------------------------------------------------------------------- /resources/ipwndfu8010/ipwnrecovery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/ipwnrecovery -------------------------------------------------------------------------------- /resources/ipwndfu8010/libusbfinder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/libusbfinder/__init__.py -------------------------------------------------------------------------------- /resources/ipwndfu8010/libusbfinder/bottles/libusb-1.0.19.mountain_lion.bottle.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/libusbfinder/bottles/libusb-1.0.19.mountain_lion.bottle.1.tar.gz -------------------------------------------------------------------------------- /resources/ipwndfu8010/libusbfinder/bottles/libusb-1.0.20.mavericks.bottle.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/libusbfinder/bottles/libusb-1.0.20.mavericks.bottle.1.tar.gz -------------------------------------------------------------------------------- /resources/ipwndfu8010/libusbfinder/bottles/libusb-1.0.21.yosemite.bottle.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/libusbfinder/bottles/libusb-1.0.21.yosemite.bottle.tar.gz -------------------------------------------------------------------------------- /resources/ipwndfu8010/libusbfinder/bottles/libusb-1.0.22.el_capitan.bottle.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/libusbfinder/bottles/libusb-1.0.22.el_capitan.bottle.tar.gz -------------------------------------------------------------------------------- /resources/ipwndfu8010/libusbfinder/bottles/libusb-1.0.22.high_sierra.bottle.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/libusbfinder/bottles/libusb-1.0.22.high_sierra.bottle.tar.gz -------------------------------------------------------------------------------- /resources/ipwndfu8010/libusbfinder/bottles/libusb-1.0.22.mojave.bottle.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/libusbfinder/bottles/libusb-1.0.22.mojave.bottle.tar.gz -------------------------------------------------------------------------------- /resources/ipwndfu8010/libusbfinder/bottles/libusb-1.0.22.sierra.bottle.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/libusbfinder/bottles/libusb-1.0.22.sierra.bottle.tar.gz -------------------------------------------------------------------------------- /resources/ipwndfu8010/limera1n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/limera1n.py -------------------------------------------------------------------------------- /resources/ipwndfu8010/nor-backups/README: -------------------------------------------------------------------------------- 1 | Your NOR backups will be stored here. 2 | -------------------------------------------------------------------------------- /resources/ipwndfu8010/nor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/nor.py -------------------------------------------------------------------------------- /resources/ipwndfu8010/recovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/recovery.py -------------------------------------------------------------------------------- /resources/ipwndfu8010/repo/ipwndfu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/repo/ipwndfu.png -------------------------------------------------------------------------------- /resources/ipwndfu8010/rmsigchks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/rmsigchks.py -------------------------------------------------------------------------------- /resources/ipwndfu8010/src/24Kpwn-shellcode.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/src/24Kpwn-shellcode.S -------------------------------------------------------------------------------- /resources/ipwndfu8010/src/SHAtter-shellcode.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/src/SHAtter-shellcode.S -------------------------------------------------------------------------------- /resources/ipwndfu8010/src/alloc8-shellcode.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/src/alloc8-shellcode.S -------------------------------------------------------------------------------- /resources/ipwndfu8010/src/checkm8_arm64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/src/checkm8_arm64.S -------------------------------------------------------------------------------- /resources/ipwndfu8010/src/checkm8_armv7.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/src/checkm8_armv7.S -------------------------------------------------------------------------------- /resources/ipwndfu8010/src/ibss-flash-nor-shellcode.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/src/ibss-flash-nor-shellcode.S -------------------------------------------------------------------------------- /resources/ipwndfu8010/src/limera1n-shellcode.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/src/limera1n-shellcode.S -------------------------------------------------------------------------------- /resources/ipwndfu8010/src/steaks4uce-shellcode.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/src/steaks4uce-shellcode.S -------------------------------------------------------------------------------- /resources/ipwndfu8010/src/t8010_t8011_disable_wxn_arm64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/src/t8010_t8011_disable_wxn_arm64.S -------------------------------------------------------------------------------- /resources/ipwndfu8010/src/usb_0xA1_2_arm64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/src/usb_0xA1_2_arm64.S -------------------------------------------------------------------------------- /resources/ipwndfu8010/src/usb_0xA1_2_armv7.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/src/usb_0xA1_2_armv7.S -------------------------------------------------------------------------------- /resources/ipwndfu8010/steaks4uce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/steaks4uce.py -------------------------------------------------------------------------------- /resources/ipwndfu8010/usb/ACKNOWLEDGEMENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/usb/ACKNOWLEDGEMENTS -------------------------------------------------------------------------------- /resources/ipwndfu8010/usb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/usb/LICENSE -------------------------------------------------------------------------------- /resources/ipwndfu8010/usb/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/usb/README.rst -------------------------------------------------------------------------------- /resources/ipwndfu8010/usb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/usb/__init__.py -------------------------------------------------------------------------------- /resources/ipwndfu8010/usb/_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/usb/_debug.py -------------------------------------------------------------------------------- /resources/ipwndfu8010/usb/_interop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/usb/_interop.py -------------------------------------------------------------------------------- /resources/ipwndfu8010/usb/_lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/usb/_lookup.py -------------------------------------------------------------------------------- /resources/ipwndfu8010/usb/_objfinalizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/usb/_objfinalizer.py -------------------------------------------------------------------------------- /resources/ipwndfu8010/usb/backend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/usb/backend/__init__.py -------------------------------------------------------------------------------- /resources/ipwndfu8010/usb/backend/libusb0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/usb/backend/libusb0.py -------------------------------------------------------------------------------- /resources/ipwndfu8010/usb/backend/libusb1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/usb/backend/libusb1.py -------------------------------------------------------------------------------- /resources/ipwndfu8010/usb/backend/openusb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/usb/backend/openusb.py -------------------------------------------------------------------------------- /resources/ipwndfu8010/usb/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/usb/control.py -------------------------------------------------------------------------------- /resources/ipwndfu8010/usb/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/usb/core.py -------------------------------------------------------------------------------- /resources/ipwndfu8010/usb/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/usb/legacy.py -------------------------------------------------------------------------------- /resources/ipwndfu8010/usb/libloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/usb/libloader.py -------------------------------------------------------------------------------- /resources/ipwndfu8010/usb/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/usb/util.py -------------------------------------------------------------------------------- /resources/ipwndfu8010/usbexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/usbexec.py -------------------------------------------------------------------------------- /resources/ipwndfu8010/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfu8010/utilities.py -------------------------------------------------------------------------------- /resources/ipwndfuKeys/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/.gitignore -------------------------------------------------------------------------------- /resources/ipwndfuKeys/JAILBREAK-GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/JAILBREAK-GUIDE.md -------------------------------------------------------------------------------- /resources/ipwndfuKeys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/LICENSE -------------------------------------------------------------------------------- /resources/ipwndfuKeys/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/Makefile -------------------------------------------------------------------------------- /resources/ipwndfuKeys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/README.md -------------------------------------------------------------------------------- /resources/ipwndfuKeys/SHAtter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/SHAtter.py -------------------------------------------------------------------------------- /resources/ipwndfuKeys/aes-keys/S5L8920-firmware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/aes-keys/S5L8920-firmware -------------------------------------------------------------------------------- /resources/ipwndfuKeys/alloc8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/alloc8.py -------------------------------------------------------------------------------- /resources/ipwndfuKeys/bin/24Kpwn-shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/bin/24Kpwn-shellcode.bin -------------------------------------------------------------------------------- /resources/ipwndfuKeys/bin/SHAtter-shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/bin/SHAtter-shellcode.bin -------------------------------------------------------------------------------- /resources/ipwndfuKeys/bin/alloc8-shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/bin/alloc8-shellcode.bin -------------------------------------------------------------------------------- /resources/ipwndfuKeys/bin/checkm8_arm64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/bin/checkm8_arm64.bin -------------------------------------------------------------------------------- /resources/ipwndfuKeys/bin/checkm8_armv7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/bin/checkm8_armv7.bin -------------------------------------------------------------------------------- /resources/ipwndfuKeys/bin/checkm8_nopaddingcorruption_arm64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/bin/checkm8_nopaddingcorruption_arm64.bin -------------------------------------------------------------------------------- /resources/ipwndfuKeys/bin/ibss-flash-nor-shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/bin/ibss-flash-nor-shellcode.bin -------------------------------------------------------------------------------- /resources/ipwndfuKeys/bin/limera1n-shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/bin/limera1n-shellcode.bin -------------------------------------------------------------------------------- /resources/ipwndfuKeys/bin/steaks4uce-shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/bin/steaks4uce-shellcode.bin -------------------------------------------------------------------------------- /resources/ipwndfuKeys/bin/t8010_t8011_disable_wxn_arm64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/bin/t8010_t8011_disable_wxn_arm64.bin -------------------------------------------------------------------------------- /resources/ipwndfuKeys/bin/t8015_shellcode_arm64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/bin/t8015_shellcode_arm64.bin -------------------------------------------------------------------------------- /resources/ipwndfuKeys/bin/usb_0xA1_2_arm64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/bin/usb_0xA1_2_arm64.bin -------------------------------------------------------------------------------- /resources/ipwndfuKeys/bin/usb_0xA1_2_armv7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/bin/usb_0xA1_2_armv7.bin -------------------------------------------------------------------------------- /resources/ipwndfuKeys/checkm8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/checkm8.py -------------------------------------------------------------------------------- /resources/ipwndfuKeys/device_platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/device_platform.py -------------------------------------------------------------------------------- /resources/ipwndfuKeys/dfu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/dfu.py -------------------------------------------------------------------------------- /resources/ipwndfuKeys/dfuexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/dfuexec.py -------------------------------------------------------------------------------- /resources/ipwndfuKeys/ibootpatcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/ibootpatcher -------------------------------------------------------------------------------- /resources/ipwndfuKeys/image3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/image3.py -------------------------------------------------------------------------------- /resources/ipwndfuKeys/image3_24Kpwn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/image3_24Kpwn.py -------------------------------------------------------------------------------- /resources/ipwndfuKeys/ipwndfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/ipwndfu -------------------------------------------------------------------------------- /resources/ipwndfuKeys/ipwnrecovery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/ipwnrecovery -------------------------------------------------------------------------------- /resources/ipwndfuKeys/libusbfinder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/libusbfinder/__init__.py -------------------------------------------------------------------------------- /resources/ipwndfuKeys/libusbfinder/bottles/libusb-1.0.19.mountain_lion.bottle.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/libusbfinder/bottles/libusb-1.0.19.mountain_lion.bottle.1.tar.gz -------------------------------------------------------------------------------- /resources/ipwndfuKeys/libusbfinder/bottles/libusb-1.0.20.mavericks.bottle.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/libusbfinder/bottles/libusb-1.0.20.mavericks.bottle.1.tar.gz -------------------------------------------------------------------------------- /resources/ipwndfuKeys/libusbfinder/bottles/libusb-1.0.21.yosemite.bottle.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/libusbfinder/bottles/libusb-1.0.21.yosemite.bottle.tar.gz -------------------------------------------------------------------------------- /resources/ipwndfuKeys/libusbfinder/bottles/libusb-1.0.22.el_capitan.bottle.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/libusbfinder/bottles/libusb-1.0.22.el_capitan.bottle.tar.gz -------------------------------------------------------------------------------- /resources/ipwndfuKeys/libusbfinder/bottles/libusb-1.0.22.high_sierra.bottle.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/libusbfinder/bottles/libusb-1.0.22.high_sierra.bottle.tar.gz -------------------------------------------------------------------------------- /resources/ipwndfuKeys/libusbfinder/bottles/libusb-1.0.22.mojave.bottle.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/libusbfinder/bottles/libusb-1.0.22.mojave.bottle.tar.gz -------------------------------------------------------------------------------- /resources/ipwndfuKeys/libusbfinder/bottles/libusb-1.0.22.sierra.bottle.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/libusbfinder/bottles/libusb-1.0.22.sierra.bottle.tar.gz -------------------------------------------------------------------------------- /resources/ipwndfuKeys/limera1n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/limera1n.py -------------------------------------------------------------------------------- /resources/ipwndfuKeys/nor-backups/README: -------------------------------------------------------------------------------- 1 | Your NOR backups will be stored here. 2 | -------------------------------------------------------------------------------- /resources/ipwndfuKeys/nor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/nor.py -------------------------------------------------------------------------------- /resources/ipwndfuKeys/recovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/recovery.py -------------------------------------------------------------------------------- /resources/ipwndfuKeys/repo/ipwndfu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/repo/ipwndfu.png -------------------------------------------------------------------------------- /resources/ipwndfuKeys/src/24Kpwn-shellcode.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/src/24Kpwn-shellcode.S -------------------------------------------------------------------------------- /resources/ipwndfuKeys/src/SHAtter-shellcode.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/src/SHAtter-shellcode.S -------------------------------------------------------------------------------- /resources/ipwndfuKeys/src/alloc8-shellcode.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/src/alloc8-shellcode.S -------------------------------------------------------------------------------- /resources/ipwndfuKeys/src/checkm8_arm64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/src/checkm8_arm64.S -------------------------------------------------------------------------------- /resources/ipwndfuKeys/src/checkm8_armv7.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/src/checkm8_armv7.S -------------------------------------------------------------------------------- /resources/ipwndfuKeys/src/checkm8_nopaddingcorruption_arm64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/src/checkm8_nopaddingcorruption_arm64.S -------------------------------------------------------------------------------- /resources/ipwndfuKeys/src/ibss-flash-nor-shellcode.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/src/ibss-flash-nor-shellcode.S -------------------------------------------------------------------------------- /resources/ipwndfuKeys/src/limera1n-shellcode.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/src/limera1n-shellcode.S -------------------------------------------------------------------------------- /resources/ipwndfuKeys/src/steaks4uce-shellcode.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/src/steaks4uce-shellcode.S -------------------------------------------------------------------------------- /resources/ipwndfuKeys/src/t8010_t8011_disable_wxn_arm64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/src/t8010_t8011_disable_wxn_arm64.S -------------------------------------------------------------------------------- /resources/ipwndfuKeys/src/t8015_shellcode_arm64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/src/t8015_shellcode_arm64.S -------------------------------------------------------------------------------- /resources/ipwndfuKeys/src/usb_0xA1_2_arm64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/src/usb_0xA1_2_arm64.S -------------------------------------------------------------------------------- /resources/ipwndfuKeys/src/usb_0xA1_2_armv7.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/src/usb_0xA1_2_armv7.S -------------------------------------------------------------------------------- /resources/ipwndfuKeys/steaks4uce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/steaks4uce.py -------------------------------------------------------------------------------- /resources/ipwndfuKeys/usb/ACKNOWLEDGEMENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/usb/ACKNOWLEDGEMENTS -------------------------------------------------------------------------------- /resources/ipwndfuKeys/usb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/usb/LICENSE -------------------------------------------------------------------------------- /resources/ipwndfuKeys/usb/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/usb/README.rst -------------------------------------------------------------------------------- /resources/ipwndfuKeys/usb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/usb/__init__.py -------------------------------------------------------------------------------- /resources/ipwndfuKeys/usb/_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/usb/_debug.py -------------------------------------------------------------------------------- /resources/ipwndfuKeys/usb/_interop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/usb/_interop.py -------------------------------------------------------------------------------- /resources/ipwndfuKeys/usb/_lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/usb/_lookup.py -------------------------------------------------------------------------------- /resources/ipwndfuKeys/usb/_objfinalizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/usb/_objfinalizer.py -------------------------------------------------------------------------------- /resources/ipwndfuKeys/usb/backend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/usb/backend/__init__.py -------------------------------------------------------------------------------- /resources/ipwndfuKeys/usb/backend/libusb0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/usb/backend/libusb0.py -------------------------------------------------------------------------------- /resources/ipwndfuKeys/usb/backend/libusb1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/usb/backend/libusb1.py -------------------------------------------------------------------------------- /resources/ipwndfuKeys/usb/backend/openusb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/usb/backend/openusb.py -------------------------------------------------------------------------------- /resources/ipwndfuKeys/usb/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/usb/control.py -------------------------------------------------------------------------------- /resources/ipwndfuKeys/usb/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/usb/core.py -------------------------------------------------------------------------------- /resources/ipwndfuKeys/usb/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/usb/legacy.py -------------------------------------------------------------------------------- /resources/ipwndfuKeys/usb/libloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/usb/libloader.py -------------------------------------------------------------------------------- /resources/ipwndfuKeys/usb/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/usb/util.py -------------------------------------------------------------------------------- /resources/ipwndfuKeys/usbexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/usbexec.py -------------------------------------------------------------------------------- /resources/ipwndfuKeys/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuKeys/utilities.py -------------------------------------------------------------------------------- /resources/ipwndfuX/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/.gitignore -------------------------------------------------------------------------------- /resources/ipwndfuX/JAILBREAK-GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/JAILBREAK-GUIDE.md -------------------------------------------------------------------------------- /resources/ipwndfuX/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/LICENSE -------------------------------------------------------------------------------- /resources/ipwndfuX/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/Makefile -------------------------------------------------------------------------------- /resources/ipwndfuX/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/README.md -------------------------------------------------------------------------------- /resources/ipwndfuX/SHAtter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/SHAtter.py -------------------------------------------------------------------------------- /resources/ipwndfuX/aes-keys/S5L8920-firmware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/aes-keys/S5L8920-firmware -------------------------------------------------------------------------------- /resources/ipwndfuX/alloc8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/alloc8.py -------------------------------------------------------------------------------- /resources/ipwndfuX/bin/0x8015.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/bin/0x8015.bin -------------------------------------------------------------------------------- /resources/ipwndfuX/bin/24Kpwn-shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/bin/24Kpwn-shellcode.bin -------------------------------------------------------------------------------- /resources/ipwndfuX/bin/SHAtter-shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/bin/SHAtter-shellcode.bin -------------------------------------------------------------------------------- /resources/ipwndfuX/bin/alloc8-shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/bin/alloc8-shellcode.bin -------------------------------------------------------------------------------- /resources/ipwndfuX/bin/checkm8_arm64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/bin/checkm8_arm64.bin -------------------------------------------------------------------------------- /resources/ipwndfuX/bin/checkm8_armv7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/bin/checkm8_armv7.bin -------------------------------------------------------------------------------- /resources/ipwndfuX/bin/ibss-flash-nor-shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/bin/ibss-flash-nor-shellcode.bin -------------------------------------------------------------------------------- /resources/ipwndfuX/bin/limera1n-shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/bin/limera1n-shellcode.bin -------------------------------------------------------------------------------- /resources/ipwndfuX/bin/steaks4uce-shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/bin/steaks4uce-shellcode.bin -------------------------------------------------------------------------------- /resources/ipwndfuX/bin/t8010_t8011_disable_wxn_arm64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/bin/t8010_t8011_disable_wxn_arm64.bin -------------------------------------------------------------------------------- /resources/ipwndfuX/bin/t8015_shellcode_arm64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/bin/t8015_shellcode_arm64.bin -------------------------------------------------------------------------------- /resources/ipwndfuX/bin/usb_0xA1_2_arm64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/bin/usb_0xA1_2_arm64.bin -------------------------------------------------------------------------------- /resources/ipwndfuX/bin/usb_0xA1_2_armv7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/bin/usb_0xA1_2_armv7.bin -------------------------------------------------------------------------------- /resources/ipwndfuX/checkm8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/checkm8.py -------------------------------------------------------------------------------- /resources/ipwndfuX/device_platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/device_platform.py -------------------------------------------------------------------------------- /resources/ipwndfuX/dfu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/dfu.py -------------------------------------------------------------------------------- /resources/ipwndfuX/dfuexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/dfuexec.py -------------------------------------------------------------------------------- /resources/ipwndfuX/ibootpatcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/ibootpatcher -------------------------------------------------------------------------------- /resources/ipwndfuX/image3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/image3.py -------------------------------------------------------------------------------- /resources/ipwndfuX/image3_24Kpwn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/image3_24Kpwn.py -------------------------------------------------------------------------------- /resources/ipwndfuX/ipwndfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/ipwndfu -------------------------------------------------------------------------------- /resources/ipwndfuX/ipwnrecovery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/ipwnrecovery -------------------------------------------------------------------------------- /resources/ipwndfuX/libusbfinder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/libusbfinder/__init__.py -------------------------------------------------------------------------------- /resources/ipwndfuX/libusbfinder/bottles/libusb-1.0.19.mountain_lion.bottle.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/libusbfinder/bottles/libusb-1.0.19.mountain_lion.bottle.1.tar.gz -------------------------------------------------------------------------------- /resources/ipwndfuX/libusbfinder/bottles/libusb-1.0.20.mavericks.bottle.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/libusbfinder/bottles/libusb-1.0.20.mavericks.bottle.1.tar.gz -------------------------------------------------------------------------------- /resources/ipwndfuX/libusbfinder/bottles/libusb-1.0.21.yosemite.bottle.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/libusbfinder/bottles/libusb-1.0.21.yosemite.bottle.tar.gz -------------------------------------------------------------------------------- /resources/ipwndfuX/libusbfinder/bottles/libusb-1.0.22.el_capitan.bottle.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/libusbfinder/bottles/libusb-1.0.22.el_capitan.bottle.tar.gz -------------------------------------------------------------------------------- /resources/ipwndfuX/libusbfinder/bottles/libusb-1.0.22.high_sierra.bottle.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/libusbfinder/bottles/libusb-1.0.22.high_sierra.bottle.tar.gz -------------------------------------------------------------------------------- /resources/ipwndfuX/libusbfinder/bottles/libusb-1.0.22.mojave.bottle.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/libusbfinder/bottles/libusb-1.0.22.mojave.bottle.tar.gz -------------------------------------------------------------------------------- /resources/ipwndfuX/libusbfinder/bottles/libusb-1.0.22.sierra.bottle.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/libusbfinder/bottles/libusb-1.0.22.sierra.bottle.tar.gz -------------------------------------------------------------------------------- /resources/ipwndfuX/limera1n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/limera1n.py -------------------------------------------------------------------------------- /resources/ipwndfuX/nor-backups/README: -------------------------------------------------------------------------------- 1 | Your NOR backups will be stored here. 2 | -------------------------------------------------------------------------------- /resources/ipwndfuX/nor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/nor.py -------------------------------------------------------------------------------- /resources/ipwndfuX/recovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/recovery.py -------------------------------------------------------------------------------- /resources/ipwndfuX/repo/ipwndfu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/repo/ipwndfu.png -------------------------------------------------------------------------------- /resources/ipwndfuX/src/0x8015.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/src/0x8015.S -------------------------------------------------------------------------------- /resources/ipwndfuX/src/24Kpwn-shellcode.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/src/24Kpwn-shellcode.S -------------------------------------------------------------------------------- /resources/ipwndfuX/src/SHAtter-shellcode.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/src/SHAtter-shellcode.S -------------------------------------------------------------------------------- /resources/ipwndfuX/src/alloc8-shellcode.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/src/alloc8-shellcode.S -------------------------------------------------------------------------------- /resources/ipwndfuX/src/checkm8_arm64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/src/checkm8_arm64.S -------------------------------------------------------------------------------- /resources/ipwndfuX/src/checkm8_armv7.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/src/checkm8_armv7.S -------------------------------------------------------------------------------- /resources/ipwndfuX/src/ibss-flash-nor-shellcode.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/src/ibss-flash-nor-shellcode.S -------------------------------------------------------------------------------- /resources/ipwndfuX/src/limera1n-shellcode.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/src/limera1n-shellcode.S -------------------------------------------------------------------------------- /resources/ipwndfuX/src/steaks4uce-shellcode.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/src/steaks4uce-shellcode.S -------------------------------------------------------------------------------- /resources/ipwndfuX/src/t8010_t8011_disable_wxn_arm64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/src/t8010_t8011_disable_wxn_arm64.S -------------------------------------------------------------------------------- /resources/ipwndfuX/src/t8015_shellcode_arm64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/src/t8015_shellcode_arm64.S -------------------------------------------------------------------------------- /resources/ipwndfuX/src/usb_0xA1_2_arm64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/src/usb_0xA1_2_arm64.S -------------------------------------------------------------------------------- /resources/ipwndfuX/src/usb_0xA1_2_armv7.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/src/usb_0xA1_2_armv7.S -------------------------------------------------------------------------------- /resources/ipwndfuX/steaks4uce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/steaks4uce.py -------------------------------------------------------------------------------- /resources/ipwndfuX/usb/ACKNOWLEDGEMENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/usb/ACKNOWLEDGEMENTS -------------------------------------------------------------------------------- /resources/ipwndfuX/usb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/usb/LICENSE -------------------------------------------------------------------------------- /resources/ipwndfuX/usb/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/usb/README.rst -------------------------------------------------------------------------------- /resources/ipwndfuX/usb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/usb/__init__.py -------------------------------------------------------------------------------- /resources/ipwndfuX/usb/_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/usb/_debug.py -------------------------------------------------------------------------------- /resources/ipwndfuX/usb/_interop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/usb/_interop.py -------------------------------------------------------------------------------- /resources/ipwndfuX/usb/_lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/usb/_lookup.py -------------------------------------------------------------------------------- /resources/ipwndfuX/usb/_objfinalizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/usb/_objfinalizer.py -------------------------------------------------------------------------------- /resources/ipwndfuX/usb/backend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/usb/backend/__init__.py -------------------------------------------------------------------------------- /resources/ipwndfuX/usb/backend/libusb0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/usb/backend/libusb0.py -------------------------------------------------------------------------------- /resources/ipwndfuX/usb/backend/libusb1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/usb/backend/libusb1.py -------------------------------------------------------------------------------- /resources/ipwndfuX/usb/backend/openusb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/usb/backend/openusb.py -------------------------------------------------------------------------------- /resources/ipwndfuX/usb/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/usb/control.py -------------------------------------------------------------------------------- /resources/ipwndfuX/usb/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/usb/core.py -------------------------------------------------------------------------------- /resources/ipwndfuX/usb/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/usb/legacy.py -------------------------------------------------------------------------------- /resources/ipwndfuX/usb/libloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/usb/libloader.py -------------------------------------------------------------------------------- /resources/ipwndfuX/usb/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/usb/util.py -------------------------------------------------------------------------------- /resources/ipwndfuX/usbexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/usbexec.py -------------------------------------------------------------------------------- /resources/ipwndfuX/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/ipwndfuX/utilities.py -------------------------------------------------------------------------------- /resources/kc.bpatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/pwn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/PyBoot/HEAD/resources/pwn.py --------------------------------------------------------------------------------