├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── CatalinaFix.sh ├── README.md ├── device.py ├── ipsw.py ├── requirements.txt ├── resources ├── bin │ ├── futurerestore │ ├── igetnonce │ ├── irecovery │ ├── kloader │ ├── kloader10 │ └── tsschecker ├── ipwndfu │ ├── .gitignore │ ├── __init__.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 │ ├── 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 ├── manifests │ ├── BuildManifest613_iPad2,1.plist │ ├── BuildManifest613_iPad2,2.plist │ ├── BuildManifest613_iPad2,3.plist │ ├── BuildManifest613_iPhone4,1.plist │ ├── BuildManifest_iPad2,1.plist │ ├── BuildManifest_iPad2,2.plist │ ├── BuildManifest_iPad2,3.plist │ ├── BuildManifest_iPad2,4.plist │ ├── BuildManifest_iPad2,5.plist │ ├── BuildManifest_iPad2,6.plist │ ├── BuildManifest_iPad2,7.plist │ ├── BuildManifest_iPad3,1.plist │ ├── BuildManifest_iPad3,2.plist │ ├── BuildManifest_iPad3,3.plist │ ├── BuildManifest_iPad3,4.plist │ ├── BuildManifest_iPad3,5.plist │ ├── BuildManifest_iPad3,6.plist │ ├── BuildManifest_iPad4,1.plist │ ├── BuildManifest_iPad4,2.plist │ ├── BuildManifest_iPad4,3.plist │ ├── BuildManifest_iPad4,4.plist │ ├── BuildManifest_iPad4,5.plist │ ├── BuildManifest_iPhone4,1.plist │ ├── BuildManifest_iPhone5,1.plist │ ├── BuildManifest_iPhone5,2.plist │ ├── BuildManifest_iPhone6,1.plist │ ├── BuildManifest_iPhone6,2.plist │ └── BuildManifest_iPod5,1.plist ├── other │ └── .blank └── patches │ ├── ibec.iphone5.patch │ ├── ibec5s.patch │ ├── ibec_ipad4.patch │ ├── ibec_ipad4b.patch │ ├── ibss.ipad2,1.613.patch │ ├── ibss.ipad2,1.841.patch │ ├── ibss.ipad2,2.613.patch │ ├── ibss.ipad2,2.841.patch │ ├── ibss.ipad2,3.613.patch │ ├── ibss.ipad2,3.841.patch │ ├── ibss.ipad2,4.841.patch │ ├── ibss.ipad25.patch │ ├── ibss.ipad26.patch │ ├── ibss.ipad27.patch │ ├── ibss.ipad31.patch │ ├── ibss.ipad32.patch │ ├── ibss.ipad33.patch │ ├── ibss.ipad34.patch │ ├── ibss.ipad35.patch │ ├── ibss.ipad36.patch │ ├── ibss.iphone4,1.613.patch │ ├── ibss.iphone4,1.841.patch │ ├── ibss.iphone51.patch │ ├── ibss.iphone52.patch │ ├── ibss.ipod51.patch │ ├── ibss5s.patch │ ├── ibss_ipad4.patch │ └── ibss_ipad4b.patch ├── restore.py ├── utils.py └── vieux /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/.gitignore -------------------------------------------------------------------------------- /CatalinaFix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/CatalinaFix.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/README.md -------------------------------------------------------------------------------- /device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/device.py -------------------------------------------------------------------------------- /ipsw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/ipsw.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/bin/futurerestore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/bin/futurerestore -------------------------------------------------------------------------------- /resources/bin/igetnonce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/bin/igetnonce -------------------------------------------------------------------------------- /resources/bin/irecovery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/bin/irecovery -------------------------------------------------------------------------------- /resources/bin/kloader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/bin/kloader -------------------------------------------------------------------------------- /resources/bin/kloader10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/bin/kloader10 -------------------------------------------------------------------------------- /resources/bin/tsschecker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/bin/tsschecker -------------------------------------------------------------------------------- /resources/ipwndfu/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/.gitignore -------------------------------------------------------------------------------- /resources/ipwndfu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/ipwndfu/bin/24Kpwn-shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/bin/24Kpwn-shellcode.bin -------------------------------------------------------------------------------- /resources/ipwndfu/bin/SHAtter-shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/bin/SHAtter-shellcode.bin -------------------------------------------------------------------------------- /resources/ipwndfu/bin/alloc8-shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/bin/alloc8-shellcode.bin -------------------------------------------------------------------------------- /resources/ipwndfu/bin/checkm8_arm64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/bin/checkm8_arm64.bin -------------------------------------------------------------------------------- /resources/ipwndfu/bin/checkm8_armv7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/bin/checkm8_armv7.bin -------------------------------------------------------------------------------- /resources/ipwndfu/bin/ibss-flash-nor-shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/bin/ibss-flash-nor-shellcode.bin -------------------------------------------------------------------------------- /resources/ipwndfu/bin/limera1n-shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/bin/limera1n-shellcode.bin -------------------------------------------------------------------------------- /resources/ipwndfu/bin/steaks4uce-shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/bin/steaks4uce-shellcode.bin -------------------------------------------------------------------------------- /resources/ipwndfu/bin/t8010_t8011_disable_wxn_arm64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/bin/t8010_t8011_disable_wxn_arm64.bin -------------------------------------------------------------------------------- /resources/ipwndfu/bin/usb_0xA1_2_arm64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/bin/usb_0xA1_2_arm64.bin -------------------------------------------------------------------------------- /resources/ipwndfu/bin/usb_0xA1_2_armv7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/bin/usb_0xA1_2_armv7.bin -------------------------------------------------------------------------------- /resources/ipwndfu/checkm8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/checkm8.py -------------------------------------------------------------------------------- /resources/ipwndfu/device_platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/device_platform.py -------------------------------------------------------------------------------- /resources/ipwndfu/device_platform2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/device_platform2.py -------------------------------------------------------------------------------- /resources/ipwndfu/dfu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/dfu.py -------------------------------------------------------------------------------- /resources/ipwndfu/dfu2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/dfu2.py -------------------------------------------------------------------------------- /resources/ipwndfu/libusbfinder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/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/Vieux/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/Vieux/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/Vieux/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/Vieux/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/Vieux/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/Vieux/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/Vieux/HEAD/resources/ipwndfu/libusbfinder/bottles/libusb-1.0.22.sierra.bottle.tar.gz -------------------------------------------------------------------------------- /resources/ipwndfu/rmsigchks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/rmsigchks.py -------------------------------------------------------------------------------- /resources/ipwndfu/usb/ACKNOWLEDGEMENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/usb/ACKNOWLEDGEMENTS -------------------------------------------------------------------------------- /resources/ipwndfu/usb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/usb/LICENSE -------------------------------------------------------------------------------- /resources/ipwndfu/usb/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/usb/README.rst -------------------------------------------------------------------------------- /resources/ipwndfu/usb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/usb/__init__.py -------------------------------------------------------------------------------- /resources/ipwndfu/usb/_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/usb/_debug.py -------------------------------------------------------------------------------- /resources/ipwndfu/usb/_interop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/usb/_interop.py -------------------------------------------------------------------------------- /resources/ipwndfu/usb/_lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/usb/_lookup.py -------------------------------------------------------------------------------- /resources/ipwndfu/usb/_objfinalizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/usb/_objfinalizer.py -------------------------------------------------------------------------------- /resources/ipwndfu/usb/backend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/usb/backend/__init__.py -------------------------------------------------------------------------------- /resources/ipwndfu/usb/backend/libusb0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/usb/backend/libusb0.py -------------------------------------------------------------------------------- /resources/ipwndfu/usb/backend/libusb1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/usb/backend/libusb1.py -------------------------------------------------------------------------------- /resources/ipwndfu/usb/backend/openusb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/usb/backend/openusb.py -------------------------------------------------------------------------------- /resources/ipwndfu/usb/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/usb/control.py -------------------------------------------------------------------------------- /resources/ipwndfu/usb/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/usb/core.py -------------------------------------------------------------------------------- /resources/ipwndfu/usb/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/usb/legacy.py -------------------------------------------------------------------------------- /resources/ipwndfu/usb/libloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/usb/libloader.py -------------------------------------------------------------------------------- /resources/ipwndfu/usb/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/usb/util.py -------------------------------------------------------------------------------- /resources/ipwndfu/usbexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/usbexec.py -------------------------------------------------------------------------------- /resources/ipwndfu/usbexec2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/usbexec2.py -------------------------------------------------------------------------------- /resources/ipwndfu/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/ipwndfu/utilities.py -------------------------------------------------------------------------------- /resources/manifests/BuildManifest613_iPad2,1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/manifests/BuildManifest613_iPad2,1.plist -------------------------------------------------------------------------------- /resources/manifests/BuildManifest613_iPad2,2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/manifests/BuildManifest613_iPad2,2.plist -------------------------------------------------------------------------------- /resources/manifests/BuildManifest613_iPad2,3.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/manifests/BuildManifest613_iPad2,3.plist -------------------------------------------------------------------------------- /resources/manifests/BuildManifest613_iPhone4,1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/manifests/BuildManifest613_iPhone4,1.plist -------------------------------------------------------------------------------- /resources/manifests/BuildManifest_iPad2,1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/manifests/BuildManifest_iPad2,1.plist -------------------------------------------------------------------------------- /resources/manifests/BuildManifest_iPad2,2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/manifests/BuildManifest_iPad2,2.plist -------------------------------------------------------------------------------- /resources/manifests/BuildManifest_iPad2,3.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/manifests/BuildManifest_iPad2,3.plist -------------------------------------------------------------------------------- /resources/manifests/BuildManifest_iPad2,4.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/manifests/BuildManifest_iPad2,4.plist -------------------------------------------------------------------------------- /resources/manifests/BuildManifest_iPad2,5.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/manifests/BuildManifest_iPad2,5.plist -------------------------------------------------------------------------------- /resources/manifests/BuildManifest_iPad2,6.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/manifests/BuildManifest_iPad2,6.plist -------------------------------------------------------------------------------- /resources/manifests/BuildManifest_iPad2,7.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/manifests/BuildManifest_iPad2,7.plist -------------------------------------------------------------------------------- /resources/manifests/BuildManifest_iPad3,1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/manifests/BuildManifest_iPad3,1.plist -------------------------------------------------------------------------------- /resources/manifests/BuildManifest_iPad3,2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/manifests/BuildManifest_iPad3,2.plist -------------------------------------------------------------------------------- /resources/manifests/BuildManifest_iPad3,3.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/manifests/BuildManifest_iPad3,3.plist -------------------------------------------------------------------------------- /resources/manifests/BuildManifest_iPad3,4.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/manifests/BuildManifest_iPad3,4.plist -------------------------------------------------------------------------------- /resources/manifests/BuildManifest_iPad3,5.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/manifests/BuildManifest_iPad3,5.plist -------------------------------------------------------------------------------- /resources/manifests/BuildManifest_iPad3,6.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/manifests/BuildManifest_iPad3,6.plist -------------------------------------------------------------------------------- /resources/manifests/BuildManifest_iPad4,1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/manifests/BuildManifest_iPad4,1.plist -------------------------------------------------------------------------------- /resources/manifests/BuildManifest_iPad4,2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/manifests/BuildManifest_iPad4,2.plist -------------------------------------------------------------------------------- /resources/manifests/BuildManifest_iPad4,3.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/manifests/BuildManifest_iPad4,3.plist -------------------------------------------------------------------------------- /resources/manifests/BuildManifest_iPad4,4.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/manifests/BuildManifest_iPad4,4.plist -------------------------------------------------------------------------------- /resources/manifests/BuildManifest_iPad4,5.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/manifests/BuildManifest_iPad4,5.plist -------------------------------------------------------------------------------- /resources/manifests/BuildManifest_iPhone4,1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/manifests/BuildManifest_iPhone4,1.plist -------------------------------------------------------------------------------- /resources/manifests/BuildManifest_iPhone5,1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/manifests/BuildManifest_iPhone5,1.plist -------------------------------------------------------------------------------- /resources/manifests/BuildManifest_iPhone5,2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/manifests/BuildManifest_iPhone5,2.plist -------------------------------------------------------------------------------- /resources/manifests/BuildManifest_iPhone6,1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/manifests/BuildManifest_iPhone6,1.plist -------------------------------------------------------------------------------- /resources/manifests/BuildManifest_iPhone6,2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/manifests/BuildManifest_iPhone6,2.plist -------------------------------------------------------------------------------- /resources/manifests/BuildManifest_iPod5,1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/manifests/BuildManifest_iPod5,1.plist -------------------------------------------------------------------------------- /resources/other/.blank: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/other/.blank -------------------------------------------------------------------------------- /resources/patches/ibec.iphone5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/patches/ibec.iphone5.patch -------------------------------------------------------------------------------- /resources/patches/ibec5s.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/patches/ibec5s.patch -------------------------------------------------------------------------------- /resources/patches/ibec_ipad4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/patches/ibec_ipad4.patch -------------------------------------------------------------------------------- /resources/patches/ibec_ipad4b.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/patches/ibec_ipad4b.patch -------------------------------------------------------------------------------- /resources/patches/ibss.ipad2,1.613.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/patches/ibss.ipad2,1.613.patch -------------------------------------------------------------------------------- /resources/patches/ibss.ipad2,1.841.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/patches/ibss.ipad2,1.841.patch -------------------------------------------------------------------------------- /resources/patches/ibss.ipad2,2.613.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/patches/ibss.ipad2,2.613.patch -------------------------------------------------------------------------------- /resources/patches/ibss.ipad2,2.841.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/patches/ibss.ipad2,2.841.patch -------------------------------------------------------------------------------- /resources/patches/ibss.ipad2,3.613.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/patches/ibss.ipad2,3.613.patch -------------------------------------------------------------------------------- /resources/patches/ibss.ipad2,3.841.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/patches/ibss.ipad2,3.841.patch -------------------------------------------------------------------------------- /resources/patches/ibss.ipad2,4.841.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/patches/ibss.ipad2,4.841.patch -------------------------------------------------------------------------------- /resources/patches/ibss.ipad25.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/patches/ibss.ipad25.patch -------------------------------------------------------------------------------- /resources/patches/ibss.ipad26.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/patches/ibss.ipad26.patch -------------------------------------------------------------------------------- /resources/patches/ibss.ipad27.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/patches/ibss.ipad27.patch -------------------------------------------------------------------------------- /resources/patches/ibss.ipad31.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/patches/ibss.ipad31.patch -------------------------------------------------------------------------------- /resources/patches/ibss.ipad32.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/patches/ibss.ipad32.patch -------------------------------------------------------------------------------- /resources/patches/ibss.ipad33.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/patches/ibss.ipad33.patch -------------------------------------------------------------------------------- /resources/patches/ibss.ipad34.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/patches/ibss.ipad34.patch -------------------------------------------------------------------------------- /resources/patches/ibss.ipad35.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/patches/ibss.ipad35.patch -------------------------------------------------------------------------------- /resources/patches/ibss.ipad36.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/patches/ibss.ipad36.patch -------------------------------------------------------------------------------- /resources/patches/ibss.iphone4,1.613.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/patches/ibss.iphone4,1.613.patch -------------------------------------------------------------------------------- /resources/patches/ibss.iphone4,1.841.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/patches/ibss.iphone4,1.841.patch -------------------------------------------------------------------------------- /resources/patches/ibss.iphone51.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/patches/ibss.iphone51.patch -------------------------------------------------------------------------------- /resources/patches/ibss.iphone52.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/patches/ibss.iphone52.patch -------------------------------------------------------------------------------- /resources/patches/ibss.ipod51.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/patches/ibss.ipod51.patch -------------------------------------------------------------------------------- /resources/patches/ibss5s.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/patches/ibss5s.patch -------------------------------------------------------------------------------- /resources/patches/ibss_ipad4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/patches/ibss_ipad4.patch -------------------------------------------------------------------------------- /resources/patches/ibss_ipad4b.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/resources/patches/ibss_ipad4b.patch -------------------------------------------------------------------------------- /restore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/restore.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/utils.py -------------------------------------------------------------------------------- /vieux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Vieux/HEAD/vieux --------------------------------------------------------------------------------