2019-11-22 11:48:41 +01:00
# 32bit-OTA-Downgrader
2020-03-15 03:43:07 +01:00
### Downgrade/restore 32-bit iOS devices to iOS 8.4.1 or iOS 6.1.3 (see supported devices below)
2020-02-08 16:19:36 +01:00
- **Please see "Other notes" below to serve as answers for FAQs**
2019-11-21 16:48:05 +01:00
2020-03-15 03:43:07 +01:00
## Supported devices (iOS 8.4.1):
2020-03-13 05:12:49 +01:00
- All A5, A5X, A6, and A6X devices **except iPhone5,3 and 5,4 (iPhone 5C)** are supported
2020-03-15 03:43:07 +01:00
## Supported devices (iOS 6.1.3):
2020-03-13 05:12:49 +01:00
- Only iPhone 4S and iPad 2 devices except iPad2,4 (iPad 2 Rev A) are supported
2020-02-08 16:19:36 +01:00
## Prerequisites:
2020-03-13 05:12:49 +01:00
- A supported 32-bit iOS device **jailbroken** on any version
2020-03-03 02:09:07 +01:00
- **iOS [8.4.1 ](https://ipsw.me/8.4.1 ) or [6.1.3 ](https://ipsw.me/6.1.3 ) IPSW** for your device (the script can also download it for you)
2020-03-15 03:43:07 +01:00
- A 64-bit **Linux install/live USB** (see distros tested on below) (a live USB can be easily created with tools like [balenaEtcher ](https://www.balena.io/etcher/ ) or [Rufus ](https://rufus.ie/ ))
2020-03-03 01:16:32 +01:00
- **macOS** (tested on 10.13 and 10.14 only) should also work, but I won't be able to provide support when the script breaks
2020-03-03 02:09:07 +01:00
- iOS 7/8 Pangu users: Install the [latest Pangu 7.1.x Untether (deb) ](http://apt.saurik.com/debs/io.pangu.axe7_0.3_iphoneos-arm.deb ) or [latest Pangu 8.0-8.1.x Untether (deb) ](http://apt.saurik.com/debs/io.pangu.xuanyuansword8_0.5_iphoneos-arm.deb )
2020-03-13 05:12:49 +01:00
- iOS 9 and below users: Install [OpenSSH ](https://cydia.saurik.com/package/openssh/ ); The computer and iOS device must be on the same network for SSH to work
2020-02-08 16:19:36 +01:00
- iOS 10 users: Install [MTerminal ](http://cydia.saurik.com/package/com.officialscheduler.mterminal/ )
## How to use:
1. [Download ](https://github.com/LukeZGD/32bit-OTA-Downgrader/archive/master.zip ) or `git clone` this repo
2. Plug in your iOS device in normal mode
3. Open Terminal, cd to the directory where the script is located (example: `cd /home/user/32bit-OTA-Downgrader` )
2020-01-06 15:45:55 +01:00
4. Run `chmod +x restore.sh`
5. Run `./restore.sh`
2020-03-15 03:43:07 +01:00
6. Select option to be used
2020-01-06 15:45:55 +01:00
7. Follow instructions
2020-02-08 16:19:36 +01:00
## Other notes:
- **You do NOT need blobs to use this**, the script will get them for you
2020-03-13 05:12:49 +01:00
- This script will restore your device with the latest baseband (N/A to devices with no baseband)
2020-02-08 16:19:36 +01:00
- This script has a workaround for the activation error on iOS 10 devices
2020-03-13 05:12:49 +01:00
- This script uses futurerestore "Odysseus method" for downgrading (different from OdysseusOTA/2, which are deprecated)
- This script uses an unmodified IPSW to restore and does NOT create a custom IPSW
- This script only uses iBSS patches for entering kDFU mode
- This script can also be used to just enter kDFU mode for all supported devices
2020-03-06 01:14:10 +01:00
- This script can also be used to futurerestore to other iOS versions when provided with SHSH blobs
2020-03-03 01:16:32 +01:00
- This script should also work on virtual machines, but I won't provide support on them
2019-11-20 13:39:56 +01:00
2020-02-08 16:19:36 +01:00
## Linux distros tested on:
- [Lubuntu 16.04 ](http://cdimage.ubuntu.com/lubuntu/releases/16.04/release/ ) live USB
- [Lubuntu 18.04 ](http://cdimage.ubuntu.com/lubuntu/releases/18.04/release/ ) live USB
2020-03-03 01:16:32 +01:00
- [Arch Linux ](https://www.archlinux.org/ ) full install
- [Manjaro ](https://manjaro.org/ ) live USB and full install
2020-02-08 16:19:36 +01:00
2020-03-13 05:12:49 +01:00
## Tools and other stuff used by this script:
2019-11-20 13:39:56 +01:00
- cURL
- bsdiff (bspatch)
2019-11-22 13:49:48 +01:00
- ideviceinfo
- ifuse
2020-03-13 05:12:49 +01:00
- [tsschecker ](https://github.com/tihmstar/tsschecker/releases/tag/v212 )
- [futurerestore ](http://api.tihmstar.net/builds/futurerestore/futurerestore-latest.zip )
2019-11-21 16:48:05 +01:00
- [xpwntool ](https://www.youtube.com/watch?v=fh0tB6fp0Sc )
- [kloader ](https://www.youtube.com/watch?v=fh0tB6fp0Sc )
2020-03-13 05:12:49 +01:00
- [kloader5 (iOS 5) ](https://mtmdev.org/pmbonneau-archive )
2019-11-21 16:48:05 +01:00
- [kloader_hgsp (iOS 10) ](https://twitter.com/nyan_satan/status/945203180522045440 )
2020-03-13 05:12:49 +01:00
- [partialZipBrowser ](https://github.com/tihmstar/partialZipBrowser/releases/tag/36 )
2020-03-03 01:16:32 +01:00
- python3 (http.server)
2019-11-28 03:16:47 +01:00
- iBSS patches are from [OdysseusOTA ](https://www.youtube.com/watch?v=Wo7mGdMcjxw ), [OdysseusOTA2 ](https://www.youtube.com/watch?v=fh0tB6fp0Sc ), [alitek12 ](https://www.mediafire.com/folder/b1z64roy512wd/FirmwareBundles ), [gjest ](https://files.fm/u/fcbqqdnw )