mirror of
https://github.com/LukeZGD/Legacy-iOS-Kit.git
synced 2024-12-24 15:21:49 +01:00
Support flashing latest baseband with the jailbreak option
- iOS-OTA-Downgrader will now be able to flash the latest baseband even if the jailbreak option is enabled - idevicerestore is now removed, futurerestore will now always be used - windows support is now removed (now in the "windows" branch and will no longer be updated or supported) - custom ipsw option is now removed - existing custom ipsw's created from previous commits will need to be deleted and re-created to use starting from this commit - custom ipsw's created in the windows version will NOT be compatible with the latest linux/macos versions of ota downgrader
This commit is contained in:
parent
c8ce4a5c95
commit
c15e3c7984
@ -72,7 +72,6 @@
|
||||
- [libimobiledevice](https://github.com/libimobiledevice/libimobiledevice) - libimobiledevice
|
||||
- [libirecovery](https://github.com/libimobiledevice/libirecovery) - libimobiledevice
|
||||
- [imobiledevice-net](https://github.com/libimobiledevice-win32/imobiledevice-net) - libimobiledevice-win32 (macOS build)
|
||||
- [idevicerestore](https://github.com/LukeeGD/idevicerestore) - LukeZGD fork
|
||||
- ipsw tool from [xpwn](https://github.com/LukeZGD/xpwn) - LukeZGD fork
|
||||
- Python 2 (for ipwndfu, rmsigchks, SimpleHTTPServer)
|
||||
- [tsschecker](https://github.com/tihmstar/tsschecker) - tihmstar
|
||||
|
@ -1,7 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
SaveOTABlobs() {
|
||||
local APNonce=$1
|
||||
local ExtraArgs
|
||||
local SHSHChk
|
||||
local SHSHContinue
|
||||
@ -12,13 +11,8 @@ SaveOTABlobs() {
|
||||
ExtraArgs="-d $ProductType -i $OSVer -e $UniqueChipID -m $BuildManifest -o -s -B ${HWModel}ap"
|
||||
SHSHChk=${UniqueChipID}_${ProductType}_${HWModel}ap_${OSVer}-${BuildVer}*.shsh*
|
||||
if [[ $DeviceProc == 7 ]]; then
|
||||
if [[ ! -z $APNonce ]]; then
|
||||
ExtraArgs+=" --apnonce $APNonce"
|
||||
SHSHChk=${UniqueChipID}_${ProductType}_${HWModel}ap_${OSVer}-${BuildVer}_${APNonce}.shsh*
|
||||
else
|
||||
ExtraArgs+=" --generator 0x1111111111111111"
|
||||
fi
|
||||
fi
|
||||
$tsschecker $ExtraArgs
|
||||
|
||||
SHSH=$(ls $SHSHChk)
|
||||
@ -43,7 +37,7 @@ SaveOTABlobs() {
|
||||
|
||||
if [[ ! -z $SHSH && $SHSHContinue != 1 ]]; then
|
||||
mkdir -p saved/shsh 2>/dev/null
|
||||
[[ -z $APNonce && ! $SHSHExisting ]] && cp "$SHSH" saved/shsh
|
||||
[[ ! $SHSHExisting ]] && cp "$SHSH" saved/shsh
|
||||
Log "Successfully saved $OSVer blobs."
|
||||
fi
|
||||
}
|
||||
|
@ -9,7 +9,6 @@ SetToolPaths() {
|
||||
MPath+="$platform"
|
||||
bspatch="$(which bspatch)"
|
||||
futurerestore="sudo LD_LIBRARY_PATH=./resources/lib ./resources/tools/futurerestore_linux"
|
||||
futurerestore2="sudo LD_LIBRARY_PATH=./resources/lib ./resources/tools/futurerestore2_linux"
|
||||
idevicerestore="sudo LD_LIBRARY_PATH=./resources/lib ./resources/tools/idevicerestore_linux"
|
||||
python="$(which python2)"
|
||||
ipwndfu="sudo $python ipwndfu"
|
||||
@ -34,7 +33,6 @@ SetToolPaths() {
|
||||
bspatch="/usr/bin/bspatch"
|
||||
futurerestore="./resources/tools/futurerestore_macos_$(uname -m)"
|
||||
[[ ! -e $futurerestore ]] && futurerestore="./resources/tools/futurerestore_macos_arm64"
|
||||
futurerestore2="./resources/tools/futurerestore2_macos"
|
||||
idevicerestore="./resources/tools/idevicerestore_macos"
|
||||
ipwnder32="./resources/tools/ipwnder32_macos"
|
||||
python="/usr/bin/python"
|
||||
@ -42,14 +40,6 @@ SetToolPaths() {
|
||||
rmsigchks="$python rmsigchks.py"
|
||||
SimpleHTTPServer="$python -m SimpleHTTPServer 8888"
|
||||
zenity="./resources/tools/zenity_macos"
|
||||
|
||||
elif [[ $OSTYPE == "msys" ]]; then
|
||||
platform="win"
|
||||
MPath+="$platform"
|
||||
bspatch="./resources/tools/bspatch_win"
|
||||
futurerestore2="./resources/tools/futurerestore2_win"
|
||||
idevicerestore="./resources/tools/idevicerestore_win"
|
||||
python=/
|
||||
fi
|
||||
git="$(which git)"
|
||||
ideviceenterrecovery="$MPath/ideviceenterrecovery"
|
||||
@ -139,14 +129,6 @@ InstallDepends() {
|
||||
Echo "* The script will detect this automatically and will use the Homebrew versions of the tools"
|
||||
Echo "* Install using this command: 'brew install libimobiledevice libirecovery'"
|
||||
|
||||
elif [[ $platform == "win" ]]; then
|
||||
pacman -Sy --noconfirm --needed ca-certificates curl openssh unzip zip
|
||||
Log "Downloading Windows tools..."
|
||||
SaveFile https://github.com/LukeZGD/iOS-OTA-Downgrader-Keys/releases/download/tools/tools_win.zip tools_win.zip 1929c04f6f699f5e423bd9ca7ecc855a9b4f8f7c
|
||||
Log "Extracting Windows tools..."
|
||||
unzip -oq tools_win.zip -d ../resources/tools
|
||||
libimobiledevice=("https://github.com/LukeZGD/iOS-OTA-Downgrader-Keys/releases/download/tools/libimobiledevice_win.zip" "3ed553415cc669b5c467a5f3cd78f692f7149adb")
|
||||
|
||||
else
|
||||
Error "Distro not detected/supported by the install script." "See the repo README for supported OS versions/distros"
|
||||
fi
|
||||
@ -168,10 +150,5 @@ InstallDepends() {
|
||||
|
||||
cd ..
|
||||
Log "Install script done! Please run the script again to proceed"
|
||||
|
||||
if [[ $platform == "win" ]]; then
|
||||
Input "Press Enter/Return to exit."
|
||||
read -s
|
||||
fi
|
||||
exit 0
|
||||
}
|
||||
|
@ -38,6 +38,9 @@ GetDeviceValues() {
|
||||
ideviceinfo2=$($ideviceinfo -s)
|
||||
if [[ $? != 0 ]]; then
|
||||
Log "Finding device in DFU/recovery mode..."
|
||||
if [[ $platform == "linux" ]]; then
|
||||
Echo "* Enter root password of your PC when prompted"
|
||||
fi
|
||||
DeviceState="$($irecovery -q 2>/dev/null | grep -w "MODE" | cut -c 7-)"
|
||||
elif [[ ! -z $ideviceinfo2 ]]; then
|
||||
DeviceState="Normal"
|
||||
@ -68,7 +71,7 @@ GetDeviceValues() {
|
||||
if [[ ! $DeviceState ]]; then
|
||||
echo -e "\n${Color_R}[Error] No device detected. Please put the device in normal mode before proceeding. ${Color_N}"
|
||||
echo "${Color_Y}* Make sure to also trust this computer by selecting \"Trust\" at the pop-up. ${Color_N}"
|
||||
echo "${Color_Y}* For Windows/macOS users, double-check if the device is being detected by iTunes/Finder. ${Color_N}"
|
||||
echo "${Color_Y}* For macOS users, double-check if the device is being detected by iTunes/Finder. ${Color_N}"
|
||||
echo "${Color_Y}* Recovery or DFU mode is also applicable. For more details regarding alternative methods, read the \"Troubleshooting\" wiki page in GitHub ${Color_N}"
|
||||
exit 1
|
||||
fi
|
||||
@ -349,31 +352,3 @@ kDFU() {
|
||||
Echo "* Press POWER or HOME button when the device disconnects and its screen goes black"
|
||||
FindDevice "DFU"
|
||||
}
|
||||
|
||||
pwnREC() {
|
||||
local Attempt=1
|
||||
|
||||
if [[ $ProductType == "iPad4,4" || $ProductType == "iPad4,5" ]]; then
|
||||
Log "iPad mini 2 device detected. Setting iBSS and iBEC to \"ipad4b\""
|
||||
iBEC=$iBECb
|
||||
iBSS=$iBSSb
|
||||
fi
|
||||
|
||||
while (( $Attempt < 4 )); do
|
||||
Log "Entering pwnREC mode... (Attempt $Attempt)"
|
||||
Log "Sending iBSS..."
|
||||
$irecovery -f $IPSWCustom/Firmware/dfu/$iBSS.im4p
|
||||
$irecovery -f $IPSWCustom/Firmware/dfu/$iBSS.im4p
|
||||
Log "Sending iBEC..."
|
||||
$irecovery -f $IPSWCustom/Firmware/dfu/$iBEC.im4p
|
||||
sleep 3
|
||||
FindDevice "Recovery" timeout
|
||||
[[ $? == 0 ]] && break
|
||||
((Attempt++))
|
||||
done
|
||||
|
||||
if (( $Attempt == 4 )); then
|
||||
Error "Failed to enter pwnREC mode. You may have to force restart your device and start over entering pwnDFU mode again" \
|
||||
"macOS users may have to install libimobiledevice and libirecovery from Homebrew. For more details, read the \"Troubleshooting\" wiki page in GitHub"
|
||||
fi
|
||||
}
|
||||
|
@ -1,24 +1,5 @@
|
||||
#!/bin/bash
|
||||
|
||||
iDeviceRestore() {
|
||||
Log "Proceeding to idevicerestore... (Enter root password of your PC/Mac when prompted)"
|
||||
[[ $platform == "macos" ]] && sudo codesign --sign - --force --deep $idevicerestore
|
||||
mkdir shsh
|
||||
mv $SHSH shsh/${UniqueChipID}-${ProductType}-${OSVer}.shsh
|
||||
$idevicerestore -ewy $IPSWRestore.ipsw
|
||||
if [[ $? != 0 && $platform != "linux" ]]; then
|
||||
Log "An error seems to have occurred when running idevicerestore."
|
||||
if [[ $platform == "macos" ]]; then
|
||||
Echo "* If this is the \"Killed: 9\" error or similar, try these steps:"
|
||||
Echo "* Using Terminal, cd to where the script is located, then run"
|
||||
Echo "* sudo codesign --sign - --force --deep resources/tools/idevicerestore_macos"
|
||||
elif [[ $platform == "win" ]]; then
|
||||
Echo "* Windows users may encounter errors like \"Unable to send APTicket\" or \"Unable to send iBEC\" in the restore process."
|
||||
Echo "* To fix this, follow troubleshooting steps here: https://github.com/LukeZGD/iOS-OTA-Downgrader/wiki/Troubleshooting#windows"
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
FRBaseband() {
|
||||
local BasebandSHA1L
|
||||
|
||||
@ -47,9 +28,8 @@ FRBaseband() {
|
||||
}
|
||||
|
||||
FutureRestore() {
|
||||
local ExtraArgs=()
|
||||
local ExtraArgs=("--use-pwndfu")
|
||||
|
||||
[[ $IPSWCustomW != 2 ]] && ExtraArgs=("--use-pwndfu")
|
||||
if [[ $DeviceProc == 7 ]]; then
|
||||
ExtraArgs+=("-s" "$IPSWRestore/Firmware/all_flash/$SEP" "-m" "$BuildManifest")
|
||||
else
|
||||
@ -66,16 +46,6 @@ FutureRestore() {
|
||||
fi
|
||||
}
|
||||
|
||||
SetIPSWCustomW() {
|
||||
if [[ $DeviceProc == 7 ]]; then
|
||||
IPSWCustomW=2
|
||||
futurerestore=$futurerestore2
|
||||
else
|
||||
IPSWCustom="${IPSWCustom}W"
|
||||
IPSWCustomW=1
|
||||
fi
|
||||
}
|
||||
|
||||
Downgrade() {
|
||||
local IPSWExtract
|
||||
local IPSWSHA1
|
||||
@ -137,7 +107,7 @@ Downgrade() {
|
||||
echo
|
||||
fi
|
||||
|
||||
if [[ $ProductType == "iPhone5,1" && $Jailbreak != 1 ]]; then
|
||||
if [[ $ProductType == "iPhone5,1" ]]; then
|
||||
Input "Latest Baseband Option"
|
||||
Echo "* iOS-OTA-Downgrader flashes the iOS 8.4.1 baseband to iPhone5,1."
|
||||
Echo "* When this option is enabled, the latest baseband will be flashed instead, but beware of problems it may cause."
|
||||
@ -149,7 +119,7 @@ Downgrade() {
|
||||
Baseband841
|
||||
fi
|
||||
echo
|
||||
elif [[ $DeviceProc != 7 && $ProductType != "iPad2,2" && $Jailbreak != 1 ]]; then
|
||||
elif [[ $DeviceProc != 7 && $ProductType != "iPad2,2" ]]; then
|
||||
Input "Latest Baseband Option"
|
||||
Echo "* iOS-OTA-Downgrader flashes the latest baseband to 32-bit devices."
|
||||
Echo "* When this option is disabled, iOS 8.4.1 baseband will be flashed instead, but beware of problems it may cause."
|
||||
@ -167,26 +137,11 @@ Downgrade() {
|
||||
IPSW="${IPSWType}_${OSVer}_${BuildVer}_Restore"
|
||||
IPSWCustom="${IPSWType}_${OSVer}_${BuildVer}_Custom"
|
||||
|
||||
if [[ $Jailbreak != 1 && $platform == "win" ]]; then
|
||||
SetIPSWCustomW
|
||||
elif [[ $Jailbreak != 1 ]]; then
|
||||
Input "Custom IPSW Option"
|
||||
Echo "* When this option is enabled, a custom IPSW will be made for the restore."
|
||||
Echo "* Enable this option later if you experience issues with futurerestore."
|
||||
Echo "* This option is disabled by default (N)."
|
||||
read -p "$(Input 'Enable this option? (y/N):')" IPSWCustomW
|
||||
if [[ $IPSWCustomW == 'Y' || $IPSWCustomW == 'y' ]]; then
|
||||
SetIPSWCustomW
|
||||
fi
|
||||
echo
|
||||
fi
|
||||
|
||||
if [[ $Jailbreak == 1 || ! -z $IPSWCustomW ]]; then
|
||||
if [[ $Jailbreak == 1 ]]; then
|
||||
[[ -e "$IPSWCustom.ipsw" ]] && Verify=
|
||||
fi
|
||||
|
||||
if [[ $Jailbreak == 1 || $IPSWCustomW == 1 ]] &&
|
||||
[[ $Verify == 1 && $platform != "win" ]]; then
|
||||
if [[ $Jailbreak == 1 && $Verify == 1 ]]; then
|
||||
Input "Memory Option for creating custom IPSW"
|
||||
Echo "* This option makes creating the custom IPSW faster, but it requires at least 8GB of RAM."
|
||||
Echo "* If you do not have enough RAM, disable this option and make sure that you have enough storage space."
|
||||
@ -195,7 +150,7 @@ Downgrade() {
|
||||
echo
|
||||
fi
|
||||
|
||||
[[ $IPSWCustomW != 2 ]] && SaveOTABlobs
|
||||
SaveOTABlobs
|
||||
|
||||
if [[ ! -e "$IPSW.ipsw" && $Verify == 1 ]]; then
|
||||
Log "iOS $OSVer IPSW for $ProductType cannot be found."
|
||||
@ -235,11 +190,9 @@ Downgrade() {
|
||||
|
||||
[[ $DeviceState == "Normal" ]] && kDFU
|
||||
|
||||
if [[ $Jailbreak == 1 || $IPSWCustomW == 1 ]]; then
|
||||
if [[ $Jailbreak == 1 ]]; then
|
||||
IPSW32
|
||||
IPSWExtract="$IPSWCustom"
|
||||
elif [[ $IPSWCustomW == 2 && $Verify != 1 ]]; then
|
||||
IPSWExtract="$IPSWCustom"
|
||||
else
|
||||
IPSWExtract="$IPSW"
|
||||
fi
|
||||
@ -247,36 +200,28 @@ Downgrade() {
|
||||
Log "Extracting IPSW: $IPSWExtract.ipsw"
|
||||
unzip -oq "$IPSWExtract.ipsw" -d "$IPSWExtract"/
|
||||
|
||||
if [[ $IPSWCustomW == 2 ]]; then
|
||||
IPSW64
|
||||
pwnREC
|
||||
local APNonce=$($irecovery -q | grep "NONC" | cut -c 7-)
|
||||
Log "APNonce: $APNonce"
|
||||
SaveOTABlobs $APNonce
|
||||
elif [[ $Jailbreak != 1 && $IPSWCustomW != 1 ]]; then
|
||||
Log "Preparing for futurerestore... (Enter root password of your PC/Mac when prompted)"
|
||||
cd resources
|
||||
[[ $platform == "linux" ]] && $SimpleHTTPServer || $SimpleHTTPServer &
|
||||
if [[ $platform == "linux" ]]; then
|
||||
$SimpleHTTPServer
|
||||
else
|
||||
$SimpleHTTPServer &
|
||||
fi
|
||||
ServerRunning=1
|
||||
cd ..
|
||||
fi
|
||||
|
||||
if [[ ! $IPSWRestore ]]; then
|
||||
Log "Setting restore IPSW to: $IPSW.ipsw"
|
||||
IPSWRestore="$IPSW"
|
||||
fi
|
||||
|
||||
if [[ $DeviceProc == 7 && $IPSWCustomW != 2 ]]; then
|
||||
if [[ $DeviceProc == 7 ]]; then
|
||||
Log "Sending dummy file"
|
||||
$irecovery -f restore.cmd
|
||||
$irecovery -f README.md
|
||||
sleep 2
|
||||
fi
|
||||
|
||||
if [[ $Jailbreak == 1 || $IPSWCustomW == 1 ]]; then
|
||||
iDeviceRestore
|
||||
else
|
||||
FutureRestore
|
||||
fi
|
||||
|
||||
echo
|
||||
Log "Restoring done!"
|
||||
|
@ -20,21 +20,6 @@
|
||||
<string>/usr/local/share/restore/options.k93.plist</string>
|
||||
<key>SHA1</key>
|
||||
<string>241a02bb446c21e44e8470b77e09b5fbfba7d6c4</string>
|
||||
<key>BuildIdentitiesPatches</key>
|
||||
<dict>
|
||||
<key>UniqueBuildID</key>
|
||||
<data>tmhlqSVs3hfYDCFEF1CNxG9edO8=</data>
|
||||
<key>Manifest</key>
|
||||
<dict>
|
||||
<key>RestoreRamDisk</key>
|
||||
<dict>
|
||||
<key>Digest</key>
|
||||
<data>soTe26MUEWqoKnxbAlm9uDrYEA4=</data>
|
||||
<key>PartialDigest</key>
|
||||
<data>QAAAAHhwMwEwggsDt8v7VOdjNK99c7EacJVHFA==</data>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>RamdiskPatches</key>
|
||||
<dict>
|
||||
<key>asr</key>
|
||||
@ -53,58 +38,6 @@
|
||||
<string>BrightonMaps10B329.K93OS</string>
|
||||
<key>FirmwarePatches</key>
|
||||
<dict>
|
||||
<key>iBSS</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBSS.k93ap.RELEASE.dfu</string>
|
||||
<key>Key</key>
|
||||
<string>6e4cce9ea6f2ec346cba0b279beab1b43e44a0680f1fde789a00f66a1e68ffab</string>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>Patch</key>
|
||||
<string>iBSS.k93ap.RELEASE.patch</string>
|
||||
<key>IV</key>
|
||||
<string>b69f753dccd09c9b98d345ec73bbf044</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>iBEC</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBEC.k93ap.RELEASE.dfu</string>
|
||||
<key>Key</key>
|
||||
<string>69eaeb223db61b557c36d65fa7e6e4ec1c0d7547dfce9d46077f7e5b0fcba98f</string>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>Patch</key>
|
||||
<string>iBEC.k93ap.RELEASE.patch</string>
|
||||
<key>IV</key>
|
||||
<string>3a0726b7bc091915dd928eed21478728</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>RestoreDeviceTree</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.k93ap.production/DeviceTree.k93ap.img3</string>
|
||||
<key>Key</key>
|
||||
<string>7c9c0c49075fd6c47e1598f23901266237e30e60dcfc7174b8c2ea6f42532bfb</string>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/DeviceTree.k93ap.img3</string>
|
||||
<key>IV</key>
|
||||
<string>557d2b8116b04cf93bf7bff023ed6bf2</string>
|
||||
</dict>
|
||||
<key>RestoreLogo</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.k93ap.production/applelogo.s5l8940x.img3</string>
|
||||
<key>Key</key>
|
||||
<string>0e7aa7bbcfddc88dfe0e56e021363028502621c52c709afc3744850977e2fb9f</string>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/applelogo@2x.s5l8940x.img3</string>
|
||||
<key>IV</key>
|
||||
<string>623b2592ad563ea16bd8a86af6960bcb</string>
|
||||
</dict>
|
||||
<key>Restore Ramdisk</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
@ -118,19 +51,6 @@
|
||||
<key>IV</key>
|
||||
<string>8775b711d2e09e332f8ebfbebe63cce7</string>
|
||||
</dict>
|
||||
<key>RestoreKernelCache</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>kernelcache.release.k93</string>
|
||||
<key>Key</key>
|
||||
<string>2bbdf3fea41600cd7ae46157af7f19b1726900802f2ec2022aa60b9a27a3261f</string>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/kernelcache.release.k93</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>4</integer>
|
||||
<key>IV</key>
|
||||
<string>247ea923c137404f4faec7da75822b08</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>RootFilesystemKey</key>
|
||||
<string>70f5ac054bf50a522fd39071f6acbd92954804599c1507b881d7d9c4026005e3867bfab0</string>
|
||||
|
@ -2,19 +2,6 @@
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildIdentitiesPatches</key>
|
||||
<dict>
|
||||
<key>UniqueBuildID</key>
|
||||
<data>sA5Apv3DkLYurMsefxwgc2F4eww=</data>
|
||||
<key>Manifest</key>
|
||||
<dict>
|
||||
<key>RestoreRamDisk</key>
|
||||
<dict>
|
||||
<key>Digest</key>
|
||||
<data>6YT8kmZto76bYGIappOkcqg4gqg=</data>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>DownloadUrl</key>
|
||||
<string></string>
|
||||
<key>Filename</key>
|
||||
@ -36,71 +23,6 @@
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>RestoreDeviceTree</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/DeviceTree.k93ap.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.k93ap.production/DeviceTree.k93ap.img3</string>
|
||||
<key>IV</key>
|
||||
<string>5bffad9ad82108c5ae3d38150dc56aea</string>
|
||||
<key>Key</key>
|
||||
<string>12433a4c85ec86ac6e14884f01661e2c5de43adee0323d1e88d4edd8d1ae9fda</string>
|
||||
</dict>
|
||||
<key>RestoreKernelCache</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/kernelcache.release.k93</string>
|
||||
<key>File</key>
|
||||
<string>kernelcache.release.k93</string>
|
||||
<key>IV</key>
|
||||
<string>38d12734c845d1dcdb84846caf619da7</string>
|
||||
<key>Key</key>
|
||||
<string>6dea51edc4c6f6c205e25ca1d9af5b9ee7167ed5685a937ad892e7fcbfb3e615</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>4</integer>
|
||||
</dict>
|
||||
<key>RestoreLogo</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/applelogo.s5l8940x.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.k93ap.production/applelogo.s5l8940x.img3</string>
|
||||
<key>IV</key>
|
||||
<string>7024762156bac507f28dca8c1bb2f3d1</string>
|
||||
<key>Key</key>
|
||||
<string>bec85f0507dbec46982ff08e37b551310195dcf4f885649aab0162f729160066</string>
|
||||
</dict>
|
||||
<key>iBEC</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBEC.k93.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>83220a369c9525f3febb3edd331c65fb</string>
|
||||
<key>Key</key>
|
||||
<string>179027ef30b5008882d6dbd723ceb50c39cba40bb33ba620b71bcbc53ff2d424</string>
|
||||
<key>Patch</key>
|
||||
<string>iBEC.k93.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>iBSS</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBSS.k93.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>781b9672a86ba1b41f8b7fa0af714c94</string>
|
||||
<key>Key</key>
|
||||
<string>bbd7bf676dbcc6ba93c76d496b7af39ae7772eaaad2ec9fb71dc1fd004827784</string>
|
||||
<key>Patch</key>
|
||||
<string>iBSS.k93.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>Name</key>
|
||||
<string>iPad2,1_8.4.1_12H321</string>
|
||||
|
@ -20,21 +20,6 @@
|
||||
<string>/usr/local/share/restore/options.k94.plist</string>
|
||||
<key>SHA1</key>
|
||||
<string>1b7897aea7b23d2e00e3d3c5c0ad2a0c47b345cd</string>
|
||||
<key>BuildIdentitiesPatches</key>
|
||||
<dict>
|
||||
<key>UniqueBuildID</key>
|
||||
<data>8iAuVn4UX8D2WcdqFQyoa+kz0FQ=</data>
|
||||
<key>Manifest</key>
|
||||
<dict>
|
||||
<key>RestoreRamDisk</key>
|
||||
<dict>
|
||||
<key>Digest</key>
|
||||
<data>soTe26MUEWqoKnxbAlm9uDrYEA4=</data>
|
||||
<key>PartialDigest</key>
|
||||
<data>QAAAAHhwMwEwggsDt8v7VOdjNK99c7EacJVHFA==</data>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>RamdiskPatches</key>
|
||||
<dict>
|
||||
<key>asr</key>
|
||||
@ -53,58 +38,6 @@
|
||||
<string>BrightonMaps10B329.K94OS</string>
|
||||
<key>FirmwarePatches</key>
|
||||
<dict>
|
||||
<key>iBSS</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBSS.k94ap.RELEASE.dfu</string>
|
||||
<key>Key</key>
|
||||
<string>b1bd1dc5e6076054392be054d50711ae70e8fcf31a47899fb90ab0ff3111b687</string>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>Patch</key>
|
||||
<string>iBSS.k94ap.RELEASE.patch</string>
|
||||
<key>IV</key>
|
||||
<string>bc3c9f168d7fb86aa219b7ad8039584b</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>iBEC</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBEC.k94ap.RELEASE.dfu</string>
|
||||
<key>Key</key>
|
||||
<string>f4b314ce6b84de8c2bcfc9e6821a657b964767253e214f44af33b141703f6606</string>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>Patch</key>
|
||||
<string>iBEC.k94ap.RELEASE.patch</string>
|
||||
<key>IV</key>
|
||||
<string>2a160d86a7cb6c976009725a9d8c009c</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>RestoreDeviceTree</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.k94ap.production/DeviceTree.k94ap.img3</string>
|
||||
<key>Key</key>
|
||||
<string>dbb0ade4c92ec6e561dd51f513ea0332b490f89f4a168f11efc1e9967c02847d</string>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/DeviceTree.k94ap.img3</string>
|
||||
<key>IV</key>
|
||||
<string>43fdbf9046da468ecc944bb4bee19879</string>
|
||||
</dict>
|
||||
<key>RestoreLogo</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.k94ap.production/applelogo.s5l8940x.img3</string>
|
||||
<key>Key</key>
|
||||
<string>0e7aa7bbcfddc88dfe0e56e021363028502621c52c709afc3744850977e2fb9f</string>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/applelogo@2x.s5l8940x.img3</string>
|
||||
<key>IV</key>
|
||||
<string>623b2592ad563ea16bd8a86af6960bcb</string>
|
||||
</dict>
|
||||
<key>Restore Ramdisk</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
@ -118,19 +51,6 @@
|
||||
<key>IV</key>
|
||||
<string>b59813148a1246ef4f4e3a5aa70ac471</string>
|
||||
</dict>
|
||||
<key>RestoreKernelCache</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>kernelcache.release.k94</string>
|
||||
<key>Key</key>
|
||||
<string>c835455a98365c5c0dda77348109a0e88faea4e4d879a0f07a4bece7b4cc64ac</string>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/kernelcache.release.k94</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>4</integer>
|
||||
<key>IV</key>
|
||||
<string>c3e3ba1bb5627935d508c9fdf2490eba</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>RootFilesystemKey</key>
|
||||
<string>19703b03962ad004afeab0f80fcff0dd2e3ddca02c9f0e08bcd635884e941797c0b9dece</string>
|
||||
|
@ -2,19 +2,6 @@
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildIdentitiesPatches</key>
|
||||
<dict>
|
||||
<key>UniqueBuildID</key>
|
||||
<data>Q5TR6AFJAjx/0PvYeTYnUrS5B/Q=</data>
|
||||
<key>Manifest</key>
|
||||
<dict>
|
||||
<key>RestoreRamDisk</key>
|
||||
<dict>
|
||||
<key>Digest</key>
|
||||
<data>6YT8kmZto76bYGIappOkcqg4gqg=</data>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>DownloadUrl</key>
|
||||
<string></string>
|
||||
<key>Filename</key>
|
||||
@ -36,71 +23,6 @@
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>RestoreDeviceTree</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/DeviceTree.k94ap.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.k94ap.production/DeviceTree.k94ap.img3</string>
|
||||
<key>IV</key>
|
||||
<string>31eafb5f2872333f49c391407533b913</string>
|
||||
<key>Key</key>
|
||||
<string>2340ba7b12093ebe1c4f9ad6adefb78b8aa5df718f63f4671dbc882cc657abfe</string>
|
||||
</dict>
|
||||
<key>RestoreKernelCache</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/kernelcache.release.k94</string>
|
||||
<key>File</key>
|
||||
<string>kernelcache.release.k94</string>
|
||||
<key>IV</key>
|
||||
<string>fde7339da181e1197410abf1fa9f7f1b</string>
|
||||
<key>Key</key>
|
||||
<string>c5740043d184baa4d933cc376d0cf2c0c3bcdf1efee4b76c996a829e70c2767c</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>4</integer>
|
||||
</dict>
|
||||
<key>RestoreLogo</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/applelogo.s5l8940x.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.k94ap.production/applelogo.s5l8940x.img3</string>
|
||||
<key>IV</key>
|
||||
<string>7024762156bac507f28dca8c1bb2f3d1</string>
|
||||
<key>Key</key>
|
||||
<string>bec85f0507dbec46982ff08e37b551310195dcf4f885649aab0162f729160066</string>
|
||||
</dict>
|
||||
<key>iBEC</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBEC.k94.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>57fba54b264b0911d3329de2231bd4b8</string>
|
||||
<key>Key</key>
|
||||
<string>e7677abd8b4cef14f9f75e02dec7fdbb0cc1ecc0707fb51367a783e4eeea731e</string>
|
||||
<key>Patch</key>
|
||||
<string>iBEC.k94.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>iBSS</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBSS.k94.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>883c92ed915e4d2481570a062583495b</string>
|
||||
<key>Key</key>
|
||||
<string>ccfadf3732904885d38f963cce035d7e03b387b67212d526503c85773b58e52f</string>
|
||||
<key>Patch</key>
|
||||
<string>iBSS.k94.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>Name</key>
|
||||
<string>iPad2,2_8.4.1_12H321</string>
|
||||
|
@ -20,21 +20,6 @@
|
||||
<string>/usr/local/share/restore/options.k95.plist</string>
|
||||
<key>SHA1</key>
|
||||
<string>b02a4f3f5b6b948bdcd036caee71449201e72f63</string>
|
||||
<key>BuildIdentitiesPatches</key>
|
||||
<dict>
|
||||
<key>UniqueBuildID</key>
|
||||
<data>k8/0Wy73uXDFAc84NnXIXIXUnHI=</data>
|
||||
<key>Manifest</key>
|
||||
<dict>
|
||||
<key>RestoreRamDisk</key>
|
||||
<dict>
|
||||
<key>Digest</key>
|
||||
<data>soTe26MUEWqoKnxbAlm9uDrYEA4=</data>
|
||||
<key>PartialDigest</key>
|
||||
<data>QAAAAHhwMwEwggsDt8v7VOdjNK99c7EacJVHFA==</data>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>RamdiskPatches</key>
|
||||
<dict>
|
||||
<key>asr</key>
|
||||
@ -53,58 +38,6 @@
|
||||
<string>BrightonMaps10B329.K95OS</string>
|
||||
<key>FirmwarePatches</key>
|
||||
<dict>
|
||||
<key>iBSS</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBSS.k95ap.RELEASE.dfu</string>
|
||||
<key>Key</key>
|
||||
<string>0bb841b8f1922ae73d85ed9ed0d7a3583a10af909787857c15af2691b39bba30</string>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>Patch</key>
|
||||
<string>iBSS.k95ap.RELEASE.patch</string>
|
||||
<key>IV</key>
|
||||
<string>56f964ee19bfd31f06e43e9d8fe93902</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>iBEC</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBEC.k95ap.RELEASE.dfu</string>
|
||||
<key>Key</key>
|
||||
<string>12805eb0cabe89539cfecbf886b0638a6fe941976ef9afe8bf3dc838139357ba</string>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>Patch</key>
|
||||
<string>iBEC.k95ap.RELEASE.patch</string>
|
||||
<key>IV</key>
|
||||
<string>5aeb8eb73be0c634f9fa2a4eae791438</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>RestoreDeviceTree</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.k95ap.production/DeviceTree.k95ap.img3</string>
|
||||
<key>Key</key>
|
||||
<string>8debb89e1457cc695e10891312bdbfbb4d5f40f7eaa6913dfe7dc61be6d9e5c7</string>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/DeviceTree.k95ap.img3</string>
|
||||
<key>IV</key>
|
||||
<string>e28736e5e1a7c3fd31021398ed65af62</string>
|
||||
</dict>
|
||||
<key>RestoreLogo</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.k95ap.production/applelogo.s5l8940x.img3</string>
|
||||
<key>Key</key>
|
||||
<string>0e7aa7bbcfddc88dfe0e56e021363028502621c52c709afc3744850977e2fb9f</string>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/applelogo@2x.s5l8940x.img3</string>
|
||||
<key>IV</key>
|
||||
<string>623b2592ad563ea16bd8a86af6960bcb</string>
|
||||
</dict>
|
||||
<key>Restore Ramdisk</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
@ -118,19 +51,6 @@
|
||||
<key>IV</key>
|
||||
<string>4edaee1b65d86a5f9a16c3ef09b262bf</string>
|
||||
</dict>
|
||||
<key>RestoreKernelCache</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>kernelcache.release.k95</string>
|
||||
<key>Key</key>
|
||||
<string>0e2f5fa117fa62535dc18ee0526137d6e73b4fc69edec9d99f1528f2a632fc83</string>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/kernelcache.release.k95</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>4</integer>
|
||||
<key>IV</key>
|
||||
<string>0cc133db4539b82dee5849d6abbcc467</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>RootFilesystemKey</key>
|
||||
<string>b51815b65f7e572ad0cc1238bf799edb558b602b0ee390a76cd874d714b7daf10205b195</string>
|
||||
|
@ -2,19 +2,6 @@
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildIdentitiesPatches</key>
|
||||
<dict>
|
||||
<key>UniqueBuildID</key>
|
||||
<data>pDKBwm1m6yz2+fqPvqp9bDYBpaU=</data>
|
||||
<key>Manifest</key>
|
||||
<dict>
|
||||
<key>RestoreRamDisk</key>
|
||||
<dict>
|
||||
<key>Digest</key>
|
||||
<data>6YT8kmZto76bYGIappOkcqg4gqg=</data>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>DownloadUrl</key>
|
||||
<string></string>
|
||||
<key>Filename</key>
|
||||
@ -36,71 +23,6 @@
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>RestoreDeviceTree</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/DeviceTree.k95ap.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.k95ap.production/DeviceTree.k95ap.img3</string>
|
||||
<key>IV</key>
|
||||
<string>9f1dd056d28cb0afd775a31910ecbc35</string>
|
||||
<key>Key</key>
|
||||
<string>2aeb4fa57f51a2246b1521cc81f18ceef7205e75de9610d60044c701858560ea</string>
|
||||
</dict>
|
||||
<key>RestoreKernelCache</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/kernelcache.release.k95</string>
|
||||
<key>File</key>
|
||||
<string>kernelcache.release.k95</string>
|
||||
<key>IV</key>
|
||||
<string>1a8ae97c20ddf5008133ddb159f93dab</string>
|
||||
<key>Key</key>
|
||||
<string>1d1e7b65358637fd062b08d0892a8401e395b40ac284c92c3809f94469d5da43</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>4</integer>
|
||||
</dict>
|
||||
<key>RestoreLogo</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/applelogo.s5l8942x.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.k95ap.production/applelogo.s5l8940x.img3</string>
|
||||
<key>IV</key>
|
||||
<string>7024762156bac507f28dca8c1bb2f3d1</string>
|
||||
<key>Key</key>
|
||||
<string>bec85f0507dbec46982ff08e37b551310195dcf4f885649aab0162f729160066</string>
|
||||
</dict>
|
||||
<key>iBEC</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBEC.k95.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>2cec1c5aa4a6fbc8630ef22a668271c0</string>
|
||||
<key>Key</key>
|
||||
<string>0f8e5042b574f246016c04b904dce329fcf0adcc08d23357058d9e5bd5e586e1</string>
|
||||
<key>Patch</key>
|
||||
<string>iBEC.k95.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>iBSS</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBSS.k95.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>460116385cca6d5596221c58ae122669</string>
|
||||
<key>Key</key>
|
||||
<string>7852f1fd93d9d49ebea44021081e8f1dffa336d0d3e9517374f8be451dd92eb7</string>
|
||||
<key>Patch</key>
|
||||
<string>iBSS.k95.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>Name</key>
|
||||
<string>iPad2,3_8.4.1_12H321</string>
|
||||
|
@ -2,19 +2,6 @@
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildIdentitiesPatches</key>
|
||||
<dict>
|
||||
<key>UniqueBuildID</key>
|
||||
<data>kDmCfTcEYH4By8TNUhF8HBscL7E=</data>
|
||||
<key>Manifest</key>
|
||||
<dict>
|
||||
<key>RestoreRamDisk</key>
|
||||
<dict>
|
||||
<key>Digest</key>
|
||||
<data>W1s9h0o+OyNm+s3fBxFQQRoLNbA=</data>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>DownloadUrl</key>
|
||||
<string></string>
|
||||
<key>Filename</key>
|
||||
@ -36,71 +23,6 @@
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>RestoreDeviceTree</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/DeviceTree.k93aap.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.k93aap.production/DeviceTree.k93aap.img3</string>
|
||||
<key>IV</key>
|
||||
<string>dd6d2ee190455770e5bb930db280e42d</string>
|
||||
<key>Key</key>
|
||||
<string>db9945495d24e808cfe305a9a062b28f6c341e4577018482d3f51f7d19057443</string>
|
||||
</dict>
|
||||
<key>RestoreKernelCache</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/kernelcache.release.k93a</string>
|
||||
<key>File</key>
|
||||
<string>kernelcache.release.k93a</string>
|
||||
<key>IV</key>
|
||||
<string>7571c911c20b12935ca28fd1f22e023b</string>
|
||||
<key>Key</key>
|
||||
<string>dcf3723fc23543626910fdf36436386a62d350b4378b4440984d6a16d94b3039</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>4</integer>
|
||||
</dict>
|
||||
<key>RestoreLogo</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/applelogo.s5l8942x.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.k93aap.production/applelogo.s5l8942x.img3</string>
|
||||
<key>IV</key>
|
||||
<string>a5fcfc2bd24e4d134a1813852d8489ef</string>
|
||||
<key>Key</key>
|
||||
<string>6889fbdf361060167c6a7d9a655d032a23b5c77d4360cee8f8b79f487fb6caa7</string>
|
||||
</dict>
|
||||
<key>iBEC</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBEC.k93a.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>27a1dedaf83ccb53088fd9fb82974062</string>
|
||||
<key>Key</key>
|
||||
<string>019947f0da4258ce36c0fd1b2f3d61fc7add1fd9065cb96be24f86c322832cda</string>
|
||||
<key>Patch</key>
|
||||
<string>iBEC.k93a.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>iBSS</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBSS.k93a.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>976aa656929ac699fff36715de96876d</string>
|
||||
<key>Key</key>
|
||||
<string>5fe5c47b5620c2b40b1ca2bd1764a92d568901a24e1caf8faf0cf0f84ae11b4e</string>
|
||||
<key>Patch</key>
|
||||
<string>iBSS.k93a.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>Name</key>
|
||||
<string>iPad2,4_8.4.1_12H321</string>
|
||||
|
@ -2,19 +2,6 @@
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildIdentitiesPatches</key>
|
||||
<dict>
|
||||
<key>UniqueBuildID</key>
|
||||
<data>FJ/7cGGhbJ01m6fAApGSTG25V9o=</data>
|
||||
<key>Manifest</key>
|
||||
<dict>
|
||||
<key>RestoreRamDisk</key>
|
||||
<dict>
|
||||
<key>Digest</key>
|
||||
<data>W1s9h0o+OyNm+s3fBxFQQRoLNbA=</data>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>DownloadUrl</key>
|
||||
<string></string>
|
||||
<key>Filename</key>
|
||||
@ -36,71 +23,6 @@
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>RestoreDeviceTree</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/DeviceTree.p105ap.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.p105ap.production/DeviceTree.p105ap.img3</string>
|
||||
<key>IV</key>
|
||||
<string>c9c12cfe3a16823f1d678775c7aedc88</string>
|
||||
<key>Key</key>
|
||||
<string>050f2457801615132e7455b622c8c8dfb65f09d4ff1eb86b5c0a1160678117c2</string>
|
||||
</dict>
|
||||
<key>RestoreKernelCache</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/kernelcache.release.p105</string>
|
||||
<key>File</key>
|
||||
<string>kernelcache.release.p105</string>
|
||||
<key>IV</key>
|
||||
<string>ada137bf6aa705925d8ac5ada6025c11</string>
|
||||
<key>Key</key>
|
||||
<string>0155c713f32ee5fb9f18187e0b87d19ef38b9e56af121821264163627f894b05</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>4</integer>
|
||||
</dict>
|
||||
<key>RestoreLogo</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/applelogo.s5l8942x.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.p105ap.production/applelogo.s5l8942x.img3</string>
|
||||
<key>IV</key>
|
||||
<string>a5fcfc2bd24e4d134a1813852d8489ef</string>
|
||||
<key>Key</key>
|
||||
<string>6889fbdf361060167c6a7d9a655d032a23b5c77d4360cee8f8b79f487fb6caa7</string>
|
||||
</dict>
|
||||
<key>iBEC</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBEC.p105.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>8460cab6348e74ba7134ba0f9462b632</string>
|
||||
<key>Key</key>
|
||||
<string>485ddb5f7e70cecfc25c036f812641b9e55bd97783de1488306e3a80abf6950b</string>
|
||||
<key>Patch</key>
|
||||
<string>iBEC.p105.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>iBSS</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBSS.p105.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>b21abc8689b0dea8f6e613f9f970e241</string>
|
||||
<key>Key</key>
|
||||
<string>b9ed63e4a31f5d9d4d7dddc527e65fd31d1ea48c70204e6b44551c1e6dfc52b5</string>
|
||||
<key>Patch</key>
|
||||
<string>iBSS.p105.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>Name</key>
|
||||
<string>iPad2,5_8.4.1_12H321</string>
|
||||
|
@ -2,19 +2,6 @@
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildIdentitiesPatches</key>
|
||||
<dict>
|
||||
<key>UniqueBuildID</key>
|
||||
<data>z4kGqKa2uWZN+w9eRF+bArOVpCI=</data>
|
||||
<key>Manifest</key>
|
||||
<dict>
|
||||
<key>RestoreRamDisk</key>
|
||||
<dict>
|
||||
<key>Digest</key>
|
||||
<data>W1s9h0o+OyNm+s3fBxFQQRoLNbA=</data>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>DownloadUrl</key>
|
||||
<string></string>
|
||||
<key>Filename</key>
|
||||
@ -36,71 +23,6 @@
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>RestoreDeviceTree</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/DeviceTree.p106ap.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.p106ap.production/DeviceTree.p106ap.img3</string>
|
||||
<key>IV</key>
|
||||
<string>633cecb9cecbe0f1bbd5ba3444f59857</string>
|
||||
<key>Key</key>
|
||||
<string>1ac6524ed5b610a2b192a31fe533b5a88da330e6d48fb05ad376b79fa62c2fac</string>
|
||||
</dict>
|
||||
<key>RestoreKernelCache</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/kernelcache.release.p106</string>
|
||||
<key>File</key>
|
||||
<string>kernelcache.release.p106</string>
|
||||
<key>IV</key>
|
||||
<string>32bdfec1574df78e6b2f72dbdbeadc41</string>
|
||||
<key>Key</key>
|
||||
<string>f89d3d9d9f9b59a9477323d702b544b3dcc7bd186ca966104a2c1cd0a2bcf45d</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>4</integer>
|
||||
</dict>
|
||||
<key>RestoreLogo</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/applelogo.s5l8942x.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.p106ap.production/applelogo.s5l8942x.img3</string>
|
||||
<key>IV</key>
|
||||
<string>a5fcfc2bd24e4d134a1813852d8489ef</string>
|
||||
<key>Key</key>
|
||||
<string>6889fbdf361060167c6a7d9a655d032a23b5c77d4360cee8f8b79f487fb6caa7</string>
|
||||
</dict>
|
||||
<key>iBEC</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBEC.p106.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>4d59863b07ec59662ddb4872d4fd6909</string>
|
||||
<key>Key</key>
|
||||
<string>b70e6a9abacc46dc6a7bb55c09d7338d34acad2eed33df6db4d47f5694f978b9</string>
|
||||
<key>Patch</key>
|
||||
<string>iBEC.p106.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>iBSS</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBSS.p106.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>56231fd62c6296ed0c8c411bcef602e0</string>
|
||||
<key>Key</key>
|
||||
<string>cdb2142489e5e936fa8f3540bd036f62ed0f27ddb6fec96b9fbfec5a65bc5f17</string>
|
||||
<key>Patch</key>
|
||||
<string>iBSS.p106.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>Name</key>
|
||||
<string>iPad2,6_8.4.1_12H321</string>
|
||||
|
@ -2,19 +2,6 @@
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildIdentitiesPatches</key>
|
||||
<dict>
|
||||
<key>UniqueBuildID</key>
|
||||
<data>6k6aeJJ6bpXZW+P3p1Pmy9NttuM=</data>
|
||||
<key>Manifest</key>
|
||||
<dict>
|
||||
<key>RestoreRamDisk</key>
|
||||
<dict>
|
||||
<key>Digest</key>
|
||||
<data>W1s9h0o+OyNm+s3fBxFQQRoLNbA=</data>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>DownloadUrl</key>
|
||||
<string></string>
|
||||
<key>Filename</key>
|
||||
@ -36,71 +23,6 @@
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>RestoreDeviceTree</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/DeviceTree.p107ap.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.p107ap.production/DeviceTree.p107ap.img3</string>
|
||||
<key>IV</key>
|
||||
<string>ade3c16e5919c6a820d631c95da3fae2</string>
|
||||
<key>Key</key>
|
||||
<string>7faab4991cefdea2b460305e45c1557d4dddd072ddf492a8f756e5ece156f238</string>
|
||||
</dict>
|
||||
<key>RestoreKernelCache</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/kernelcache.release.p107</string>
|
||||
<key>File</key>
|
||||
<string>kernelcache.release.p107</string>
|
||||
<key>IV</key>
|
||||
<string>505d5717132faa13c35daac2d76d2d19</string>
|
||||
<key>Key</key>
|
||||
<string>8c53d8a9c6358a7ae89a207bdd0e02538be3eccf6f32925ea81a61e9d28d4859</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>4</integer>
|
||||
</dict>
|
||||
<key>RestoreLogo</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/applelogo.s5l8942x.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.p107ap.production/applelogo.s5l8942x.img3</string>
|
||||
<key>IV</key>
|
||||
<string>a5fcfc2bd24e4d134a1813852d8489ef</string>
|
||||
<key>Key</key>
|
||||
<string>6889fbdf361060167c6a7d9a655d032a23b5c77d4360cee8f8b79f487fb6caa7</string>
|
||||
</dict>
|
||||
<key>iBEC</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBEC.p107.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>6569eed96df512cc8e8807a50fe79270</string>
|
||||
<key>Key</key>
|
||||
<string>23c2d76e12dbef7c2a107d8733b96dc79cbbb353bf649cdc7fea63c91904f623</string>
|
||||
<key>Patch</key>
|
||||
<string>iBEC.p107.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>iBSS</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBSS.p107.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>fa39c596b6569e572d90f0820e4e4357</string>
|
||||
<key>Key</key>
|
||||
<string>34b359fcc729a0f0d2853e786a78b245ed36a9212c8296aaab95dc0401cf07de</string>
|
||||
<key>Patch</key>
|
||||
<string>iBSS.p107.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>Name</key>
|
||||
<string>iPad2,7_8.4.1_12H321</string>
|
||||
|
@ -2,19 +2,6 @@
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildIdentitiesPatches</key>
|
||||
<dict>
|
||||
<key>UniqueBuildID</key>
|
||||
<data>RbzAXeFgNq/YYimL8v7L6xPvI2Q=</data>
|
||||
<key>Manifest</key>
|
||||
<dict>
|
||||
<key>RestoreRamDisk</key>
|
||||
<dict>
|
||||
<key>Digest</key>
|
||||
<data>iIAxhUXqVmz+44ZiP0wQANYfNI8=</data>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>DownloadUrl</key>
|
||||
<string></string>
|
||||
<key>Filename</key>
|
||||
@ -36,71 +23,6 @@
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>RestoreDeviceTree</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/DeviceTree.j1ap.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.j1ap.production/DeviceTree.j1ap.img3</string>
|
||||
<key>IV</key>
|
||||
<string>2e0ec7a136b34d93527aed0957945231</string>
|
||||
<key>Key</key>
|
||||
<string>02b1fe2b74a8592aa1baf8a8f1ecb768ca33c7a2616f5a791766e0e8e1f04a7e</string>
|
||||
</dict>
|
||||
<key>RestoreKernelCache</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/kernelcache.release.j1</string>
|
||||
<key>File</key>
|
||||
<string>kernelcache.release.j1</string>
|
||||
<key>IV</key>
|
||||
<string>6351467627ff19918f08df13ff7d6511</string>
|
||||
<key>Key</key>
|
||||
<string>2620c3f911677de9c596ff6e380e5c8082203fa62f8890b83a10f86506ae409d</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>4</integer>
|
||||
</dict>
|
||||
<key>RestoreLogo</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/applelogo@2x~ipad.s5l8945x.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.j1ap.production/applelogo@2x~ipad.s5l8945x.img3</string>
|
||||
<key>IV</key>
|
||||
<string>3df4d1dea7c24fe4c46d5cff958b69e9</string>
|
||||
<key>Key</key>
|
||||
<string>1ae2c4ba9b387976f3360c2203d4de6e1996f741678eaa9d9078fd76a57c3b79</string>
|
||||
</dict>
|
||||
<key>iBEC</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBEC.j1.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>1d9c3a01d5060390788f54b2f3506a08</string>
|
||||
<key>Key</key>
|
||||
<string>a46f952d0eb17f6aec56132826395675bc7d1a0a570956fd905e4a0b98b5a874</string>
|
||||
<key>Patch</key>
|
||||
<string>iBEC.j1.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>iBSS</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBSS.j1.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>c3ea87ed43788dfc3e268abdf1af27dd</string>
|
||||
<key>Key</key>
|
||||
<string>cd3dd7eee07b9ce8b180d1526632cf86dc7fef7d52352d06af354598ab9cf2ef</string>
|
||||
<key>Patch</key>
|
||||
<string>iBSS.j1.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>Name</key>
|
||||
<string>iPad3,1_8.4.1_12H321</string>
|
||||
|
@ -2,19 +2,6 @@
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildIdentitiesPatches</key>
|
||||
<dict>
|
||||
<key>UniqueBuildID</key>
|
||||
<data>s9t+Ngrs5F3Gw0dvg4cVvggFP8k=</data>
|
||||
<key>Manifest</key>
|
||||
<dict>
|
||||
<key>RestoreRamDisk</key>
|
||||
<dict>
|
||||
<key>Digest</key>
|
||||
<data>iIAxhUXqVmz+44ZiP0wQANYfNI8=</data>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>DownloadUrl</key>
|
||||
<string></string>
|
||||
<key>Filename</key>
|
||||
@ -36,71 +23,6 @@
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>RestoreDeviceTree</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/DeviceTree.j2ap.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.j2ap.production/DeviceTree.j2ap.img3</string>
|
||||
<key>IV</key>
|
||||
<string>f041c468aba69101d01739523ed8d65d</string>
|
||||
<key>Key</key>
|
||||
<string>7fffc3f21fa220e10b6647a6868bb3cadac303275a4f8f759ee0a4bd7383afd6</string>
|
||||
</dict>
|
||||
<key>RestoreKernelCache</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/kernelcache.release.j2</string>
|
||||
<key>File</key>
|
||||
<string>kernelcache.release.j2</string>
|
||||
<key>IV</key>
|
||||
<string>6f33619a83648cb26b16cca9bcf1b888</string>
|
||||
<key>Key</key>
|
||||
<string>e2dd61488a3eab46606c67ca6c288a9031ce095b22989c27f5254523844370bc</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>4</integer>
|
||||
</dict>
|
||||
<key>RestoreLogo</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/applelogo@2x~ipad.s5l8945x.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.j2ap.production/applelogo@2x~ipad.s5l8945x.img3</string>
|
||||
<key>IV</key>
|
||||
<string>3df4d1dea7c24fe4c46d5cff958b69e9</string>
|
||||
<key>Key</key>
|
||||
<string>1ae2c4ba9b387976f3360c2203d4de6e1996f741678eaa9d9078fd76a57c3b79</string>
|
||||
</dict>
|
||||
<key>iBEC</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBEC.j2.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>eb9ec046d583d2cdc9a5394a734aa167</string>
|
||||
<key>Key</key>
|
||||
<string>63d6d85e986ffafe595f217651acd672c9439b630ae7f953f7917eff86d489c3</string>
|
||||
<key>Patch</key>
|
||||
<string>iBEC.j2.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>iBSS</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBSS.j2.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>32fcd912cb9a472ef2a6db72596ae01c</string>
|
||||
<key>Key</key>
|
||||
<string>076720d5a07e8011bdda6f6eafaf4845b40a441615cd1d7c1a9cca438ce7db17</string>
|
||||
<key>Patch</key>
|
||||
<string>iBSS.j2.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>Name</key>
|
||||
<string>iPad3,2_8.4.1_12H321</string>
|
||||
|
@ -2,19 +2,6 @@
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildIdentitiesPatches</key>
|
||||
<dict>
|
||||
<key>UniqueBuildID</key>
|
||||
<data>4BRM2aN9L5ZBKJRmSur/LHSebwQ=</data>
|
||||
<key>Manifest</key>
|
||||
<dict>
|
||||
<key>RestoreRamDisk</key>
|
||||
<dict>
|
||||
<key>Digest</key>
|
||||
<data>iIAxhUXqVmz+44ZiP0wQANYfNI8=</data>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>DownloadUrl</key>
|
||||
<string></string>
|
||||
<key>Filename</key>
|
||||
@ -36,71 +23,6 @@
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>RestoreDeviceTree</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/DeviceTree.j2aap.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.j2aap.production/DeviceTree.j2aap.img3</string>
|
||||
<key>IV</key>
|
||||
<string>82636e066f841cd08786a9cfb239e350</string>
|
||||
<key>Key</key>
|
||||
<string>41cd6dc7de49c5f2b72bd7cc20f61c27c7c61738eecd12affbf805c0492708b5</string>
|
||||
</dict>
|
||||
<key>RestoreKernelCache</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/kernelcache.release.j2a</string>
|
||||
<key>File</key>
|
||||
<string>kernelcache.release.j2a</string>
|
||||
<key>IV</key>
|
||||
<string>9664ad3b2f5df350d22fe8fd2340aa32</string>
|
||||
<key>Key</key>
|
||||
<string>b953731b34e0342ddfd5f75a83244df4b4c39c43d83c668b249c8dd9197239e9</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>4</integer>
|
||||
</dict>
|
||||
<key>RestoreLogo</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/applelogo@2x~ipad.s5l8945x.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.j2aap.production/applelogo@2x~ipad.s5l8945x.img3</string>
|
||||
<key>IV</key>
|
||||
<string>3df4d1dea7c24fe4c46d5cff958b69e9</string>
|
||||
<key>Key</key>
|
||||
<string>1ae2c4ba9b387976f3360c2203d4de6e1996f741678eaa9d9078fd76a57c3b79</string>
|
||||
</dict>
|
||||
<key>iBEC</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBEC.j2a.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>79517c3e4ffc35d3cfe563d0fae93775</string>
|
||||
<key>Key</key>
|
||||
<string>ff6c7004d45ecfc1ee69f2b0fb2e15c4dc3c7f192563b8254e82edb7e8f426fe</string>
|
||||
<key>Patch</key>
|
||||
<string>iBEC.j2a.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>iBSS</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBSS.j2a.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>e6b041970cd611c8a1561a4c210bc476</string>
|
||||
<key>Key</key>
|
||||
<string>aec6a888d45bd26106ac620d7d4ec0c160ab80276deedc1b50ce8f5d99dcc9af</string>
|
||||
<key>Patch</key>
|
||||
<string>iBSS.j2a.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>Name</key>
|
||||
<string>iPad3,3_8.4.1_12H321</string>
|
||||
|
@ -2,19 +2,6 @@
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildIdentitiesPatches</key>
|
||||
<dict>
|
||||
<key>UniqueBuildID</key>
|
||||
<data>cAk3FZk408iw5IMiSAvj21hRZWE=</data>
|
||||
<key>Manifest</key>
|
||||
<dict>
|
||||
<key>RestoreRamDisk</key>
|
||||
<dict>
|
||||
<key>Digest</key>
|
||||
<data>dKo3Kn9R8PeR5H6YncOmfEwm8ug=</data>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>DownloadUrl</key>
|
||||
<string></string>
|
||||
<key>Filename</key>
|
||||
@ -36,71 +23,6 @@
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>RestoreDeviceTree</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/DeviceTree.p101ap.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.p101ap.production/DeviceTree.p101ap.img3</string>
|
||||
<key>IV</key>
|
||||
<string>667bff76ee274db0b5658361f040ac89</string>
|
||||
<key>Key</key>
|
||||
<string>e1c09c81f08dedc06d9aba515e82b3665b7d724b0dd5d9ad012adaf8b7f6268b</string>
|
||||
</dict>
|
||||
<key>RestoreKernelCache</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/kernelcache.release.p101</string>
|
||||
<key>File</key>
|
||||
<string>kernelcache.release.p101</string>
|
||||
<key>IV</key>
|
||||
<string>6a417efd8f6d5fd1bb91c97367b428ca</string>
|
||||
<key>Key</key>
|
||||
<string>42dc4a9f72b46686f7f53fa76782b108c2fda37056095ddd775eb000b2fdfa7d</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>4</integer>
|
||||
</dict>
|
||||
<key>RestoreLogo</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/applelogo@2x~ipad.s5l8955x.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.p101ap.production/applelogo@2x~ipad.s5l8955x.img3</string>
|
||||
<key>IV</key>
|
||||
<string>adf49517c9d99ba14466e24628cf68db</string>
|
||||
<key>Key</key>
|
||||
<string>54db70d5cd7dc3c3dc5acbe408a91f0faf7061a9ef6b070da2cb1feb2e7bb04b</string>
|
||||
</dict>
|
||||
<key>iBEC</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBEC.p101.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>add7db95ab270c16ddd632cdc9a4ebac</string>
|
||||
<key>Key</key>
|
||||
<string>77b7990cbb88f3d091aaff10b424ab19c5263f100eb1ee642771500510b0dd42</string>
|
||||
<key>Patch</key>
|
||||
<string>iBEC.p101.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>iBSS</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBSS.p101.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>a5892a58c90b6d3fb0e0b20db95070d7</string>
|
||||
<key>Key</key>
|
||||
<string>75612774968009e3f85545ac0088d0d0bb9cb4e2c2970e8f88489be0b9dfe103</string>
|
||||
<key>Patch</key>
|
||||
<string>iBSS.p101.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>Name</key>
|
||||
<string>iPad3,4_8.4.1_12H321</string>
|
||||
|
@ -2,19 +2,6 @@
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildIdentitiesPatches</key>
|
||||
<dict>
|
||||
<key>UniqueBuildID</key>
|
||||
<data>KIbYgNGP7qPe4cvyJblXevSlRjs=</data>
|
||||
<key>Manifest</key>
|
||||
<dict>
|
||||
<key>RestoreRamDisk</key>
|
||||
<dict>
|
||||
<key>Digest</key>
|
||||
<data>dKo3Kn9R8PeR5H6YncOmfEwm8ug=</data>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>DownloadUrl</key>
|
||||
<string></string>
|
||||
<key>Filename</key>
|
||||
@ -36,71 +23,6 @@
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>RestoreDeviceTree</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/DeviceTree.p102ap.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.p102ap.production/DeviceTree.p102ap.img3</string>
|
||||
<key>IV</key>
|
||||
<string>93a05abd1c925866fe610be1c7951f6a</string>
|
||||
<key>Key</key>
|
||||
<string>ed82f4764c704f1a441d1e9ce6c021d869c263ead509626c2194b8ccbcb32bce</string>
|
||||
</dict>
|
||||
<key>RestoreKernelCache</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/kernelcache.release.p102</string>
|
||||
<key>File</key>
|
||||
<string>kernelcache.release.p102</string>
|
||||
<key>IV</key>
|
||||
<string>db33c789914a1c5b6aa78edc87852716</string>
|
||||
<key>Key</key>
|
||||
<string>3edb2a54b611034334df77fd06b44cd2824e53e3db59521f4759e624ca1cab14</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>4</integer>
|
||||
</dict>
|
||||
<key>RestoreLogo</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/applelogo@2x~ipad.s5l8955x.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.p102ap.production/applelogo@2x~ipad.s5l8955x.img3</string>
|
||||
<key>IV</key>
|
||||
<string>adf49517c9d99ba14466e24628cf68db</string>
|
||||
<key>Key</key>
|
||||
<string>54db70d5cd7dc3c3dc5acbe408a91f0faf7061a9ef6b070da2cb1feb2e7bb04b</string>
|
||||
</dict>
|
||||
<key>iBEC</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBEC.p102.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>e0215af209f1de638d82fc2f0850b7e1</string>
|
||||
<key>Key</key>
|
||||
<string>7f4ebb46f7b6f5936bc7a3af20b389adc923d69db0b4bcae58ac728502bbb8fb</string>
|
||||
<key>Patch</key>
|
||||
<string>iBEC.p102.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>iBSS</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBSS.p102.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>fba6d9aaec7237891c80390e6ffa88bf</string>
|
||||
<key>Key</key>
|
||||
<string>92909dca9bfdb9193131f9ad9b628b1a4971b1cbab52c0ddd114a6253fad96c0</string>
|
||||
<key>Patch</key>
|
||||
<string>iBSS.p102.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>Name</key>
|
||||
<string>iPad3,5_8.4.1_12H321</string>
|
||||
|
@ -2,19 +2,6 @@
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildIdentitiesPatches</key>
|
||||
<dict>
|
||||
<key>UniqueBuildID</key>
|
||||
<data>Aq/TM9+fzfChTyHI3ostc1RGGkE=</data>
|
||||
<key>Manifest</key>
|
||||
<dict>
|
||||
<key>RestoreRamDisk</key>
|
||||
<dict>
|
||||
<key>Digest</key>
|
||||
<data>dKo3Kn9R8PeR5H6YncOmfEwm8ug=</data>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>DownloadUrl</key>
|
||||
<string></string>
|
||||
<key>Filename</key>
|
||||
@ -36,71 +23,6 @@
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>RestoreDeviceTree</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/DeviceTree.p103ap.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.p103ap.production/DeviceTree.p103ap.img3</string>
|
||||
<key>IV</key>
|
||||
<string>2835a2bd7d30e630045431f8c9558fab</string>
|
||||
<key>Key</key>
|
||||
<string>52de0f1b2669905ec0817f2407ad3e4ce2c757cf8ed650c56c0d03afdf28409f</string>
|
||||
</dict>
|
||||
<key>RestoreKernelCache</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/kernelcache.release.p103</string>
|
||||
<key>File</key>
|
||||
<string>kernelcache.release.p103</string>
|
||||
<key>IV</key>
|
||||
<string>b325c546459c70277dc9aae74dd950cd</string>
|
||||
<key>Key</key>
|
||||
<string>29a61a3886ff3ae7df2a3e489f02e38e97a16365b3dae13430ffbb4b54eecee6</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>4</integer>
|
||||
</dict>
|
||||
<key>RestoreLogo</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/applelogo@2x~ipad.s5l8955x.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.p103ap.production/applelogo@2x~ipad.s5l8955x.img3</string>
|
||||
<key>IV</key>
|
||||
<string>adf49517c9d99ba14466e24628cf68db</string>
|
||||
<key>Key</key>
|
||||
<string>54db70d5cd7dc3c3dc5acbe408a91f0faf7061a9ef6b070da2cb1feb2e7bb04b</string>
|
||||
</dict>
|
||||
<key>iBEC</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBEC.p103.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>edcb09e4654f10318856f4d27d31d999</string>
|
||||
<key>Key</key>
|
||||
<string>18898da62750874c3ef2ecd64d8e6dfc3af5f381221e56dcbf16ed36b496a084</string>
|
||||
<key>Patch</key>
|
||||
<string>iBEC.p103.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>iBSS</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBSS.p103.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>1d99e780d96c32a25ca7e4b1c7fe14c0</string>
|
||||
<key>Key</key>
|
||||
<string>4e2c14927693d61e1da375e340061521c9376007163f6ab55afbe1a03b901fd3</string>
|
||||
<key>Patch</key>
|
||||
<string>iBSS.p103.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>Name</key>
|
||||
<string>iPad3,6_8.4.1_12H321</string>
|
||||
|
@ -20,21 +20,6 @@
|
||||
<string>/usr/local/share/restore/options.n94.plist</string>
|
||||
<key>SHA1</key>
|
||||
<string>7a62ee60b574301a6aafc48dcc9cccf0894ffb27</string>
|
||||
<key>BuildIdentitiesPatches</key>
|
||||
<dict>
|
||||
<key>UniqueBuildID</key>
|
||||
<data>3Usl6yRx4qezMq1vuVZf69RDnU8=</data>
|
||||
<key>Manifest</key>
|
||||
<dict>
|
||||
<key>RestoreRamDisk</key>
|
||||
<dict>
|
||||
<key>Digest</key>
|
||||
<data>soTe26MUEWqoKnxbAlm9uDrYEA4=</data>
|
||||
<key>PartialDigest</key>
|
||||
<data>QAAAAHhwMwEwggsDt8v7VOdjNK99c7EacJVHFA==</data>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>RamdiskPatches</key>
|
||||
<dict>
|
||||
<key>asr</key>
|
||||
@ -55,58 +40,6 @@
|
||||
<data>3Usl6yRx4qezMq1vuVZf69RDnU8=</data>
|
||||
<key>FirmwarePatches</key>
|
||||
<dict>
|
||||
<key>iBSS</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBSS.n94ap.RELEASE.dfu</string>
|
||||
<key>Key</key>
|
||||
<string>35343d5139e0313c81ee59dbae292da26e739ed75b3da5db9da7d4d26046498c</string>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>Patch</key>
|
||||
<string>iBSS.n94ap.RELEASE.patch</string>
|
||||
<key>IV</key>
|
||||
<string>d3fe01e99bd0967e80dccfc0739f93d5</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>iBEC</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBEC.n94ap.RELEASE.dfu</string>
|
||||
<key>Key</key>
|
||||
<string>aba0d7f3e2d40d2a0039a36086c469e25e1eafb2fee2f50e36a3e5f7cd4d89c9</string>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>Patch</key>
|
||||
<string>iBEC.n94ap.RELEASE.patch</string>
|
||||
<key>IV</key>
|
||||
<string>1f12075441b7f193c5967c51ede025bf</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>RestoreDeviceTree</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.n94ap.production/DeviceTree.n94ap.img3</string>
|
||||
<key>Key</key>
|
||||
<string>bd500bdc2a66aba636311037b9bd2b6ab3bd7374542352225d5be0c23998dd84</string>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/DeviceTree.n94ap.img3</string>
|
||||
<key>IV</key>
|
||||
<string>fabb698a3b2e845d7ad6849fbc067870</string>
|
||||
</dict>
|
||||
<key>RestoreLogo</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.n94ap.production/applelogo@2x.s5l8940x.img3</string>
|
||||
<key>Key</key>
|
||||
<string>e7e9b79f5e6e81ff6d6bf81bf272af56e6ab0f1c691088eff2aca5b1ee31455e</string>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/applelogo@2x.s5l8940x.img3</string>
|
||||
<key>IV</key>
|
||||
<string>09678f1312084547b5bedce677e6a828</string>
|
||||
</dict>
|
||||
<key>Restore Ramdisk</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
@ -120,19 +53,6 @@
|
||||
<key>IV</key>
|
||||
<string>d30fa37b6ed56715121337a5fc039801</string>
|
||||
</dict>
|
||||
<key>RestoreKernelCache</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>kernelcache.release.n94</string>
|
||||
<key>Key</key>
|
||||
<string>a374109c958957200f879f7b6ef34437fbde1a9f178b7c2412755cf9a3ed2d72</string>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/kernelcache.release.n94</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>4</integer>
|
||||
<key>IV</key>
|
||||
<string>8a2c03ef8a0e45947780cdde01be40fb</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>RootFilesystemKey</key>
|
||||
<string>d4685a3c01a0b6f762350191d98b8964d4c7af349aa84bacef828be9683514ccf44a8426</string>
|
||||
|
@ -20,19 +20,6 @@
|
||||
<string>/usr/local/share/restore/options.n94.plist</string>
|
||||
<key>SHA1</key>
|
||||
<string>0858ce92863751e3f1b750b5ee3cc3e44800a52d</string>
|
||||
<key>BuildIdentitiesPatches</key>
|
||||
<dict>
|
||||
<key>UniqueBuildID</key>
|
||||
<data>eMMUaFp+ot+OMIZHCzrwrU85W60=</data>
|
||||
<key>Manifest</key>
|
||||
<dict>
|
||||
<key>RestoreRamDisk</key>
|
||||
<dict>
|
||||
<key>Digest</key>
|
||||
<data>6YT8kmZto76bYGIappOkcqg4gqg=</data>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>RamdiskPatches</key>
|
||||
<dict>
|
||||
<key>asr</key>
|
||||
@ -51,58 +38,6 @@
|
||||
<string>Donner12H321.N94APOS</string>
|
||||
<key>FirmwarePatches</key>
|
||||
<dict>
|
||||
<key>iBSS</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBSS.n94.RELEASE.dfu</string>
|
||||
<key>Key</key>
|
||||
<string>6ea1eb62a9f403ee212c1f6b3039df093963b46739c6093407190fe3d750c69c</string>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>Patch</key>
|
||||
<string>iBSS.n94.RELEASE.patch</string>
|
||||
<key>IV</key>
|
||||
<string>147cdef921ed14a5c10631c5e6e02d1e</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>iBEC</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBEC.n94.RELEASE.dfu</string>
|
||||
<key>Key</key>
|
||||
<string>03d3ecffe7df8729a85df6eafc96ee78bead7822f63ebab21016ac4157dee793</string>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>Patch</key>
|
||||
<string>iBEC.n94.RELEASE.patch</string>
|
||||
<key>IV</key>
|
||||
<string>b9f99de35e106350d89af30482249df3</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>RestoreDeviceTree</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.n94ap.production/DeviceTree.n94ap.img3</string>
|
||||
<key>Key</key>
|
||||
<string>ca597a5833a96eafcf4316790a25f37fb2593b2da170b0c5e855c4fab93c2469</string>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/DeviceTree.n94ap.img3</string>
|
||||
<key>IV</key>
|
||||
<string>70860c7ffbd16f51b4ac998eda7db70d</string>
|
||||
</dict>
|
||||
<key>RestoreLogo</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.n94ap.production/applelogo@2x~iphone.s5l8940x.img3</string>
|
||||
<key>Key</key>
|
||||
<string>f5cc9c8f3c0242183869327e00fd2838f8624032e9cc3a6f595407ba3d5c2c08</string>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/applelogo@2x~iphone.s5l8940x.img3</string>
|
||||
<key>IV</key>
|
||||
<string>96b38c2b31a20def160b6a1fdcbd6c3b</string>
|
||||
</dict>
|
||||
<key>Restore Ramdisk</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
@ -116,19 +51,6 @@
|
||||
<key>IV</key>
|
||||
<string>b41ffb8429157ff7677db6c7a654d1b4</string>
|
||||
</dict>
|
||||
<key>RestoreKernelCache</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>kernelcache.release.n94</string>
|
||||
<key>Key</key>
|
||||
<string>7bdb23aa85a6de247a1aacde70b7ace76b0f4a4c5dd9de4e1e55183cbe4040fd</string>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/kernelcache.release.n94</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>4</integer>
|
||||
<key>IV</key>
|
||||
<string>d98ab32f9db9f1bc72ff25a4c226f3b9</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>RootFilesystemKey</key>
|
||||
<string>8fd9823be521060b9160272962fc2f65520de7b5ab55fe574953997e3ee5306d7bab5e02</string>
|
||||
|
@ -20,19 +20,6 @@
|
||||
<string>/usr/local/share/restore/options.n41.plist</string>
|
||||
<key>SHA1</key>
|
||||
<string>1e0f9ebf293eafd4e43f10e61b877b86b27838b2</string>
|
||||
<key>BuildIdentitiesPatches</key>
|
||||
<dict>
|
||||
<key>UniqueBuildID</key>
|
||||
<data>Orhpt1ZWgw21W/jf1AjNMiuMcfs=</data>
|
||||
<key>Manifest</key>
|
||||
<dict>
|
||||
<key>RestoreRamDisk</key>
|
||||
<dict>
|
||||
<key>Digest</key>
|
||||
<data>IsceeVqQCLCQOuVYWRRghycOAE8=</data>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>RamdiskPatches</key>
|
||||
<dict>
|
||||
<key>asr</key>
|
||||
@ -51,58 +38,6 @@
|
||||
<string>Donner12H321.N41OS</string>
|
||||
<key>FirmwarePatches</key>
|
||||
<dict>
|
||||
<key>iBSS</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBSS.n41.RELEASE.dfu</string>
|
||||
<key>Key</key>
|
||||
<string>BAF05FE0282F78C18C2E3842BE4F9021919D586B55594281F5B5ABD0F6E61495</string>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>Patch</key>
|
||||
<string>iBSS.n41.RELEASE.patch</string>
|
||||
<key>IV</key>
|
||||
<string>BD0C8B039A819604A30F0D39ADF88572</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>iBEC</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBEC.n41.RELEASE.dfu</string>
|
||||
<key>Key</key>
|
||||
<string>df94c70aa77322498b3be544e3134b820236fef0f155e7f1354db662d6031368</string>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>Patch</key>
|
||||
<string>iBEC.n41.RELEASE.patch</string>
|
||||
<key>IV</key>
|
||||
<string>2055ec501ea1bb9474d7c914dd883e61</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>RestoreDeviceTree</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.n41ap.production/DeviceTree.n41ap.img3</string>
|
||||
<key>Key</key>
|
||||
<string>a7ad85c49ef64cfb37549c1126ab13ff7297e038f5548410adedbdb29efdfa77</string>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/DeviceTree.n41ap.img3</string>
|
||||
<key>IV</key>
|
||||
<string>5ff721d45504fe136759292b2966e3f2</string>
|
||||
</dict>
|
||||
<key>RestoreLogo</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.n41ap.production/applelogo@2x~iphone.s5l8950x.img3</string>
|
||||
<key>Key</key>
|
||||
<string>967e260de1a600600ead78fa451865be406c851f8d97da4ddc6d7429173f5648</string>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/applelogo@2x~iphone.s5l8950x.img3</string>
|
||||
<key>IV</key>
|
||||
<string>ef41848f4bdd07ea7de5a2bd2d90b989</string>
|
||||
</dict>
|
||||
<key>Restore Ramdisk</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
@ -116,19 +51,6 @@
|
||||
<key>IV</key>
|
||||
<string>22e450d708b6319a619d5edecad88a86</string>
|
||||
</dict>
|
||||
<key>RestoreKernelCache</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>kernelcache.release.n41</string>
|
||||
<key>Key</key>
|
||||
<string>6c4dfcd48110c6d13df01874e6d2d12348d95320d2a5971c5465316eca6f8061</string>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/kernelcache.release.n41</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>4</integer>
|
||||
<key>IV</key>
|
||||
<string>31ff9006a2d8326cbadf0c7795c71c1d</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>RootFilesystemKey</key>
|
||||
<string>da2aa06747849210b9cc1ff219b4584572d1df2832e2cd3ad6636d281447c156ae544b35</string>
|
||||
|
@ -20,19 +20,6 @@
|
||||
<string>/usr/local/share/restore/options.n42.plist</string>
|
||||
<key>SHA1</key>
|
||||
<string>da4e50bf721d91bbd0b4a90ba9df9cdf2e8b9f53</string>
|
||||
<key>BuildIdentitiesPatches</key>
|
||||
<dict>
|
||||
<key>UniqueBuildID</key>
|
||||
<data>ybHEo3Fv0y/6IYp0X45hxqDY7zM=</data>
|
||||
<key>Manifest</key>
|
||||
<dict>
|
||||
<key>RestoreRamDisk</key>
|
||||
<dict>
|
||||
<key>Digest</key>
|
||||
<data>IsceeVqQCLCQOuVYWRRghycOAE8=</data>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>RamdiskPatches</key>
|
||||
<dict>
|
||||
<key>asr</key>
|
||||
@ -51,58 +38,6 @@
|
||||
<string>Donner12H321.N42OS</string>
|
||||
<key>FirmwarePatches</key>
|
||||
<dict>
|
||||
<key>iBSS</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBSS.n42.RELEASE.dfu</string>
|
||||
<key>Key</key>
|
||||
<string>74cd68729b800a20b1f8e8a3cb5517024a09f074eaa05b099db530fb5783275e</string>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>Patch</key>
|
||||
<string>iBSS.n42.RELEASE.patch</string>
|
||||
<key>IV</key>
|
||||
<string>fdad2b7a35384fa2ffc7221213ca1082</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>iBEC</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBEC.n42.RELEASE.dfu</string>
|
||||
<key>Key</key>
|
||||
<string>888f24c26a13fdb2c8182b156d793b1350428e2b6c31a634d16a61752b236dc9</string>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>Patch</key>
|
||||
<string>iBEC.n42.RELEASE.patch</string>
|
||||
<key>IV</key>
|
||||
<string>ba178c287f6ce38acbec569f6adbf170</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>RestoreDeviceTree</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.n42ap.production/DeviceTree.n42ap.img3</string>
|
||||
<key>Key</key>
|
||||
<string>dccfcf97891d4fa62fef944ff646ce9a81e821883f2b6bc3cc5ca3a22ee90ce9</string>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/DeviceTree.n42ap.img3</string>
|
||||
<key>IV</key>
|
||||
<string>40dc28c4fc1b28df6f44bff7f833b44d</string>
|
||||
</dict>
|
||||
<key>RestoreLogo</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.n42ap.production/applelogo@2x~iphone.s5l8950x.img3</string>
|
||||
<key>Key</key>
|
||||
<string>967e260de1a600600ead78fa451865be406c851f8d97da4ddc6d7429173f5648</string>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/applelogo@2x~iphone.s5l8950x.img3</string>
|
||||
<key>IV</key>
|
||||
<string>ef41848f4bdd07ea7de5a2bd2d90b989</string>
|
||||
</dict>
|
||||
<key>Restore Ramdisk</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
@ -116,19 +51,6 @@
|
||||
<key>IV</key>
|
||||
<string>9f3c9ed053e2057f7b2be54a80c3eec8</string>
|
||||
</dict>
|
||||
<key>RestoreKernelCache</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>kernelcache.release.n42</string>
|
||||
<key>Key</key>
|
||||
<string>66b8ca4f732113f54dae9de7d1713093d6c54731c06033eef94489c168a8db3a</string>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/kernelcache.release.n42</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>4</integer>
|
||||
<key>IV</key>
|
||||
<string>a037ef50ae5bf24ae2d373345b6e5be5</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>RootFilesystemKey</key>
|
||||
<string>7f68bec2637d5ac0837e38878a8a411c72131fc6394b5a84fd0f878f54f97af3801f34fd</string>
|
||||
|
@ -2,19 +2,6 @@
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildIdentitiesPatches</key>
|
||||
<dict>
|
||||
<key>UniqueBuildID</key>
|
||||
<data>hKC1ZNXdVd8kti1w2WlpC4sG28c=</data>
|
||||
<key>Manifest</key>
|
||||
<dict>
|
||||
<key>RestoreRamDisk</key>
|
||||
<dict>
|
||||
<key>Digest</key>
|
||||
<data>W1s9h0o+OyNm+s3fBxFQQRoLNbA=</data>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>DownloadUrl</key>
|
||||
<string></string>
|
||||
<key>Filename</key>
|
||||
@ -36,71 +23,6 @@
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>RestoreDeviceTree</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/DeviceTree.n78ap.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.n78ap.production/DeviceTree.n78ap.img3</string>
|
||||
<key>IV</key>
|
||||
<string>67b2dd2762aeacb6e3ea1fe0ec5ccda1</string>
|
||||
<key>Key</key>
|
||||
<string>1e0ffa0989ca51c34f86964b7c9642436ad3071acfb5c877f3fc0e84cc7180b9</string>
|
||||
</dict>
|
||||
<key>RestoreKernelCache</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/kernelcache.release.n78</string>
|
||||
<key>File</key>
|
||||
<string>kernelcache.release.n78</string>
|
||||
<key>IV</key>
|
||||
<string>c96b701e3dc9ae4d07bf722a4cb50011</string>
|
||||
<key>Key</key>
|
||||
<string>e7904495a19966d622389ce0e1113f4f00e0fc7c0fa65c4d66e79dd12450edf9</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>4</integer>
|
||||
</dict>
|
||||
<key>RestoreLogo</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/applelogo@2x~iphone.s5l8942x.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.n78ap.production/applelogo@2x~iphone.s5l8942x.img3</string>
|
||||
<key>IV</key>
|
||||
<string>4e4d5f6f690d61dbb0dc41faac09969d</string>
|
||||
<key>Key</key>
|
||||
<string>636d92f146bde17843278ee1a35f512e3fcc65b91a9dbd686bdb947ca9e498dc</string>
|
||||
</dict>
|
||||
<key>iBEC</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBEC.n78.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>ef80ca77212ebc1f823b15664076eb66</string>
|
||||
<key>Key</key>
|
||||
<string>5fac4cdeac38c7fbc19f6c2be83eabdcea7fe0ae7f57cf9a70182cc9cad8209f</string>
|
||||
<key>Patch</key>
|
||||
<string>iBEC.n78.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>iBSS</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBSS.n78.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>e0175b03bc29817adc312638884e0898</string>
|
||||
<key>Key</key>
|
||||
<string>0a0e0aedc8171669c9af6a229930a395959df55dcd8a3ee1fe0f4c009007df3c</string>
|
||||
<key>Patch</key>
|
||||
<string>iBSS.n78.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>Name</key>
|
||||
<string>iPod5,1_8.4.1_12H321</string>
|
||||
|
@ -2,19 +2,6 @@
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildIdentitiesPatches</key>
|
||||
<dict>
|
||||
<key>UniqueBuildID</key>
|
||||
<data>kDmCfTcEYH4By8TNUhF8HBscL7E=</data>
|
||||
<key>Manifest</key>
|
||||
<dict>
|
||||
<key>RestoreRamDisk</key>
|
||||
<dict>
|
||||
<key>Digest</key>
|
||||
<data>W1s9h0o+OyNm+s3fBxFQQRoLNbA=</data>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>DownloadUrl</key>
|
||||
<string></string>
|
||||
<key>Filename</key>
|
||||
@ -50,71 +37,6 @@
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>RestoreDeviceTree</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/DeviceTree.k93aap.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.k93aap.production/DeviceTree.k93aap.img3</string>
|
||||
<key>IV</key>
|
||||
<string>dd6d2ee190455770e5bb930db280e42d</string>
|
||||
<key>Key</key>
|
||||
<string>db9945495d24e808cfe305a9a062b28f6c341e4577018482d3f51f7d19057443</string>
|
||||
</dict>
|
||||
<key>RestoreKernelCache</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/kernelcache.release.k93a</string>
|
||||
<key>File</key>
|
||||
<string>kernelcache.release.k93a</string>
|
||||
<key>IV</key>
|
||||
<string>7571c911c20b12935ca28fd1f22e023b</string>
|
||||
<key>Key</key>
|
||||
<string>dcf3723fc23543626910fdf36436386a62d350b4378b4440984d6a16d94b3039</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>4</integer>
|
||||
</dict>
|
||||
<key>RestoreLogo</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/applelogo.s5l8942x.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.k93aap.production/applelogo.s5l8942x.img3</string>
|
||||
<key>IV</key>
|
||||
<string>a5fcfc2bd24e4d134a1813852d8489ef</string>
|
||||
<key>Key</key>
|
||||
<string>6889fbdf361060167c6a7d9a655d032a23b5c77d4360cee8f8b79f487fb6caa7</string>
|
||||
</dict>
|
||||
<key>iBEC</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBEC.k93a.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>27a1dedaf83ccb53088fd9fb82974062</string>
|
||||
<key>Key</key>
|
||||
<string>019947f0da4258ce36c0fd1b2f3d61fc7add1fd9065cb96be24f86c322832cda</string>
|
||||
<key>Patch</key>
|
||||
<string>iBEC.k93a.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>iBSS</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBSS.k93a.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>976aa656929ac699fff36715de96876d</string>
|
||||
<key>Key</key>
|
||||
<string>5fe5c47b5620c2b40b1ca2bd1764a92d568901a24e1caf8faf0cf0f84ae11b4e</string>
|
||||
<key>Patch</key>
|
||||
<string>iBSS.k93a.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>Name</key>
|
||||
<string>iPad2,4_8.4.1_12H321</string>
|
||||
|
@ -2,19 +2,6 @@
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildIdentitiesPatches</key>
|
||||
<dict>
|
||||
<key>UniqueBuildID</key>
|
||||
<data>FJ/7cGGhbJ01m6fAApGSTG25V9o=</data>
|
||||
<key>Manifest</key>
|
||||
<dict>
|
||||
<key>RestoreRamDisk</key>
|
||||
<dict>
|
||||
<key>Digest</key>
|
||||
<data>W1s9h0o+OyNm+s3fBxFQQRoLNbA=</data>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>DownloadUrl</key>
|
||||
<string></string>
|
||||
<key>Filename</key>
|
||||
@ -50,71 +37,6 @@
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>RestoreDeviceTree</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/DeviceTree.p105ap.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.p105ap.production/DeviceTree.p105ap.img3</string>
|
||||
<key>IV</key>
|
||||
<string>c9c12cfe3a16823f1d678775c7aedc88</string>
|
||||
<key>Key</key>
|
||||
<string>050f2457801615132e7455b622c8c8dfb65f09d4ff1eb86b5c0a1160678117c2</string>
|
||||
</dict>
|
||||
<key>RestoreKernelCache</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/kernelcache.release.p105</string>
|
||||
<key>File</key>
|
||||
<string>kernelcache.release.p105</string>
|
||||
<key>IV</key>
|
||||
<string>ada137bf6aa705925d8ac5ada6025c11</string>
|
||||
<key>Key</key>
|
||||
<string>0155c713f32ee5fb9f18187e0b87d19ef38b9e56af121821264163627f894b05</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>4</integer>
|
||||
</dict>
|
||||
<key>RestoreLogo</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/applelogo.s5l8942x.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.p105ap.production/applelogo.s5l8942x.img3</string>
|
||||
<key>IV</key>
|
||||
<string>a5fcfc2bd24e4d134a1813852d8489ef</string>
|
||||
<key>Key</key>
|
||||
<string>6889fbdf361060167c6a7d9a655d032a23b5c77d4360cee8f8b79f487fb6caa7</string>
|
||||
</dict>
|
||||
<key>iBEC</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBEC.p105.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>8460cab6348e74ba7134ba0f9462b632</string>
|
||||
<key>Key</key>
|
||||
<string>485ddb5f7e70cecfc25c036f812641b9e55bd97783de1488306e3a80abf6950b</string>
|
||||
<key>Patch</key>
|
||||
<string>iBEC.p105.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>iBSS</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBSS.p105.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>b21abc8689b0dea8f6e613f9f970e241</string>
|
||||
<key>Key</key>
|
||||
<string>b9ed63e4a31f5d9d4d7dddc527e65fd31d1ea48c70204e6b44551c1e6dfc52b5</string>
|
||||
<key>Patch</key>
|
||||
<string>iBSS.p105.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>Name</key>
|
||||
<string>iPad2,5_8.4.1_12H321</string>
|
||||
|
@ -2,19 +2,6 @@
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildIdentitiesPatches</key>
|
||||
<dict>
|
||||
<key>UniqueBuildID</key>
|
||||
<data>z4kGqKa2uWZN+w9eRF+bArOVpCI=</data>
|
||||
<key>Manifest</key>
|
||||
<dict>
|
||||
<key>RestoreRamDisk</key>
|
||||
<dict>
|
||||
<key>Digest</key>
|
||||
<data>W1s9h0o+OyNm+s3fBxFQQRoLNbA=</data>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>DownloadUrl</key>
|
||||
<string></string>
|
||||
<key>Filename</key>
|
||||
@ -50,71 +37,6 @@
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>RestoreDeviceTree</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/DeviceTree.p106ap.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.p106ap.production/DeviceTree.p106ap.img3</string>
|
||||
<key>IV</key>
|
||||
<string>633cecb9cecbe0f1bbd5ba3444f59857</string>
|
||||
<key>Key</key>
|
||||
<string>1ac6524ed5b610a2b192a31fe533b5a88da330e6d48fb05ad376b79fa62c2fac</string>
|
||||
</dict>
|
||||
<key>RestoreKernelCache</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/kernelcache.release.p106</string>
|
||||
<key>File</key>
|
||||
<string>kernelcache.release.p106</string>
|
||||
<key>IV</key>
|
||||
<string>32bdfec1574df78e6b2f72dbdbeadc41</string>
|
||||
<key>Key</key>
|
||||
<string>f89d3d9d9f9b59a9477323d702b544b3dcc7bd186ca966104a2c1cd0a2bcf45d</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>4</integer>
|
||||
</dict>
|
||||
<key>RestoreLogo</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/applelogo.s5l8942x.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.p106ap.production/applelogo.s5l8942x.img3</string>
|
||||
<key>IV</key>
|
||||
<string>a5fcfc2bd24e4d134a1813852d8489ef</string>
|
||||
<key>Key</key>
|
||||
<string>6889fbdf361060167c6a7d9a655d032a23b5c77d4360cee8f8b79f487fb6caa7</string>
|
||||
</dict>
|
||||
<key>iBEC</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBEC.p106.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>4d59863b07ec59662ddb4872d4fd6909</string>
|
||||
<key>Key</key>
|
||||
<string>b70e6a9abacc46dc6a7bb55c09d7338d34acad2eed33df6db4d47f5694f978b9</string>
|
||||
<key>Patch</key>
|
||||
<string>iBEC.p106.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>iBSS</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBSS.p106.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>56231fd62c6296ed0c8c411bcef602e0</string>
|
||||
<key>Key</key>
|
||||
<string>cdb2142489e5e936fa8f3540bd036f62ed0f27ddb6fec96b9fbfec5a65bc5f17</string>
|
||||
<key>Patch</key>
|
||||
<string>iBSS.p106.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>Name</key>
|
||||
<string>iPad2,6_8.4.1_12H321</string>
|
||||
|
@ -2,19 +2,6 @@
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildIdentitiesPatches</key>
|
||||
<dict>
|
||||
<key>UniqueBuildID</key>
|
||||
<data>6k6aeJJ6bpXZW+P3p1Pmy9NttuM=</data>
|
||||
<key>Manifest</key>
|
||||
<dict>
|
||||
<key>RestoreRamDisk</key>
|
||||
<dict>
|
||||
<key>Digest</key>
|
||||
<data>W1s9h0o+OyNm+s3fBxFQQRoLNbA=</data>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>DownloadUrl</key>
|
||||
<string></string>
|
||||
<key>Filename</key>
|
||||
@ -50,71 +37,6 @@
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>RestoreDeviceTree</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/DeviceTree.p107ap.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.p107ap.production/DeviceTree.p107ap.img3</string>
|
||||
<key>IV</key>
|
||||
<string>ade3c16e5919c6a820d631c95da3fae2</string>
|
||||
<key>Key</key>
|
||||
<string>7faab4991cefdea2b460305e45c1557d4dddd072ddf492a8f756e5ece156f238</string>
|
||||
</dict>
|
||||
<key>RestoreKernelCache</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/kernelcache.release.p107</string>
|
||||
<key>File</key>
|
||||
<string>kernelcache.release.p107</string>
|
||||
<key>IV</key>
|
||||
<string>505d5717132faa13c35daac2d76d2d19</string>
|
||||
<key>Key</key>
|
||||
<string>8c53d8a9c6358a7ae89a207bdd0e02538be3eccf6f32925ea81a61e9d28d4859</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>4</integer>
|
||||
</dict>
|
||||
<key>RestoreLogo</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/applelogo.s5l8942x.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.p107ap.production/applelogo.s5l8942x.img3</string>
|
||||
<key>IV</key>
|
||||
<string>a5fcfc2bd24e4d134a1813852d8489ef</string>
|
||||
<key>Key</key>
|
||||
<string>6889fbdf361060167c6a7d9a655d032a23b5c77d4360cee8f8b79f487fb6caa7</string>
|
||||
</dict>
|
||||
<key>iBEC</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBEC.p107.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>6569eed96df512cc8e8807a50fe79270</string>
|
||||
<key>Key</key>
|
||||
<string>23c2d76e12dbef7c2a107d8733b96dc79cbbb353bf649cdc7fea63c91904f623</string>
|
||||
<key>Patch</key>
|
||||
<string>iBEC.p107.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>iBSS</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBSS.p107.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>fa39c596b6569e572d90f0820e4e4357</string>
|
||||
<key>Key</key>
|
||||
<string>34b359fcc729a0f0d2853e786a78b245ed36a9212c8296aaab95dc0401cf07de</string>
|
||||
<key>Patch</key>
|
||||
<string>iBSS.p107.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>Name</key>
|
||||
<string>iPad2,7_8.4.1_12H321</string>
|
||||
|
@ -2,19 +2,6 @@
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildIdentitiesPatches</key>
|
||||
<dict>
|
||||
<key>UniqueBuildID</key>
|
||||
<data>RbzAXeFgNq/YYimL8v7L6xPvI2Q=</data>
|
||||
<key>Manifest</key>
|
||||
<dict>
|
||||
<key>RestoreRamDisk</key>
|
||||
<dict>
|
||||
<key>Digest</key>
|
||||
<data>iIAxhUXqVmz+44ZiP0wQANYfNI8=</data>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>DownloadUrl</key>
|
||||
<string></string>
|
||||
<key>Filename</key>
|
||||
@ -50,71 +37,6 @@
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>RestoreDeviceTree</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/DeviceTree.j1ap.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.j1ap.production/DeviceTree.j1ap.img3</string>
|
||||
<key>IV</key>
|
||||
<string>2e0ec7a136b34d93527aed0957945231</string>
|
||||
<key>Key</key>
|
||||
<string>02b1fe2b74a8592aa1baf8a8f1ecb768ca33c7a2616f5a791766e0e8e1f04a7e</string>
|
||||
</dict>
|
||||
<key>RestoreKernelCache</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/kernelcache.release.j1</string>
|
||||
<key>File</key>
|
||||
<string>kernelcache.release.j1</string>
|
||||
<key>IV</key>
|
||||
<string>6351467627ff19918f08df13ff7d6511</string>
|
||||
<key>Key</key>
|
||||
<string>2620c3f911677de9c596ff6e380e5c8082203fa62f8890b83a10f86506ae409d</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>4</integer>
|
||||
</dict>
|
||||
<key>RestoreLogo</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/applelogo@2x~ipad.s5l8945x.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.j1ap.production/applelogo@2x~ipad.s5l8945x.img3</string>
|
||||
<key>IV</key>
|
||||
<string>3df4d1dea7c24fe4c46d5cff958b69e9</string>
|
||||
<key>Key</key>
|
||||
<string>1ae2c4ba9b387976f3360c2203d4de6e1996f741678eaa9d9078fd76a57c3b79</string>
|
||||
</dict>
|
||||
<key>iBEC</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBEC.j1.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>1d9c3a01d5060390788f54b2f3506a08</string>
|
||||
<key>Key</key>
|
||||
<string>a46f952d0eb17f6aec56132826395675bc7d1a0a570956fd905e4a0b98b5a874</string>
|
||||
<key>Patch</key>
|
||||
<string>iBEC.j1.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>iBSS</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBSS.j1.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>c3ea87ed43788dfc3e268abdf1af27dd</string>
|
||||
<key>Key</key>
|
||||
<string>cd3dd7eee07b9ce8b180d1526632cf86dc7fef7d52352d06af354598ab9cf2ef</string>
|
||||
<key>Patch</key>
|
||||
<string>iBSS.j1.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>Name</key>
|
||||
<string>iPad3,1_8.4.1_12H321</string>
|
||||
|
@ -2,19 +2,6 @@
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildIdentitiesPatches</key>
|
||||
<dict>
|
||||
<key>UniqueBuildID</key>
|
||||
<data>s9t+Ngrs5F3Gw0dvg4cVvggFP8k=</data>
|
||||
<key>Manifest</key>
|
||||
<dict>
|
||||
<key>RestoreRamDisk</key>
|
||||
<dict>
|
||||
<key>Digest</key>
|
||||
<data>iIAxhUXqVmz+44ZiP0wQANYfNI8=</data>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>DownloadUrl</key>
|
||||
<string></string>
|
||||
<key>Filename</key>
|
||||
@ -50,71 +37,6 @@
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>RestoreDeviceTree</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/DeviceTree.j2ap.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.j2ap.production/DeviceTree.j2ap.img3</string>
|
||||
<key>IV</key>
|
||||
<string>f041c468aba69101d01739523ed8d65d</string>
|
||||
<key>Key</key>
|
||||
<string>7fffc3f21fa220e10b6647a6868bb3cadac303275a4f8f759ee0a4bd7383afd6</string>
|
||||
</dict>
|
||||
<key>RestoreKernelCache</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/kernelcache.release.j2</string>
|
||||
<key>File</key>
|
||||
<string>kernelcache.release.j2</string>
|
||||
<key>IV</key>
|
||||
<string>6f33619a83648cb26b16cca9bcf1b888</string>
|
||||
<key>Key</key>
|
||||
<string>e2dd61488a3eab46606c67ca6c288a9031ce095b22989c27f5254523844370bc</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>4</integer>
|
||||
</dict>
|
||||
<key>RestoreLogo</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/applelogo@2x~ipad.s5l8945x.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.j2ap.production/applelogo@2x~ipad.s5l8945x.img3</string>
|
||||
<key>IV</key>
|
||||
<string>3df4d1dea7c24fe4c46d5cff958b69e9</string>
|
||||
<key>Key</key>
|
||||
<string>1ae2c4ba9b387976f3360c2203d4de6e1996f741678eaa9d9078fd76a57c3b79</string>
|
||||
</dict>
|
||||
<key>iBEC</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBEC.j2.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>eb9ec046d583d2cdc9a5394a734aa167</string>
|
||||
<key>Key</key>
|
||||
<string>63d6d85e986ffafe595f217651acd672c9439b630ae7f953f7917eff86d489c3</string>
|
||||
<key>Patch</key>
|
||||
<string>iBEC.j2.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>iBSS</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBSS.j2.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>32fcd912cb9a472ef2a6db72596ae01c</string>
|
||||
<key>Key</key>
|
||||
<string>076720d5a07e8011bdda6f6eafaf4845b40a441615cd1d7c1a9cca438ce7db17</string>
|
||||
<key>Patch</key>
|
||||
<string>iBSS.j2.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>Name</key>
|
||||
<string>iPad3,2_8.4.1_12H321</string>
|
||||
|
@ -2,19 +2,6 @@
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildIdentitiesPatches</key>
|
||||
<dict>
|
||||
<key>UniqueBuildID</key>
|
||||
<data>4BRM2aN9L5ZBKJRmSur/LHSebwQ=</data>
|
||||
<key>Manifest</key>
|
||||
<dict>
|
||||
<key>RestoreRamDisk</key>
|
||||
<dict>
|
||||
<key>Digest</key>
|
||||
<data>iIAxhUXqVmz+44ZiP0wQANYfNI8=</data>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>DownloadUrl</key>
|
||||
<string></string>
|
||||
<key>Filename</key>
|
||||
@ -50,71 +37,6 @@
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>RestoreDeviceTree</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/DeviceTree.j2aap.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.j2aap.production/DeviceTree.j2aap.img3</string>
|
||||
<key>IV</key>
|
||||
<string>82636e066f841cd08786a9cfb239e350</string>
|
||||
<key>Key</key>
|
||||
<string>41cd6dc7de49c5f2b72bd7cc20f61c27c7c61738eecd12affbf805c0492708b5</string>
|
||||
</dict>
|
||||
<key>RestoreKernelCache</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/kernelcache.release.j2a</string>
|
||||
<key>File</key>
|
||||
<string>kernelcache.release.j2a</string>
|
||||
<key>IV</key>
|
||||
<string>9664ad3b2f5df350d22fe8fd2340aa32</string>
|
||||
<key>Key</key>
|
||||
<string>b953731b34e0342ddfd5f75a83244df4b4c39c43d83c668b249c8dd9197239e9</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>4</integer>
|
||||
</dict>
|
||||
<key>RestoreLogo</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/applelogo@2x~ipad.s5l8945x.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.j2aap.production/applelogo@2x~ipad.s5l8945x.img3</string>
|
||||
<key>IV</key>
|
||||
<string>3df4d1dea7c24fe4c46d5cff958b69e9</string>
|
||||
<key>Key</key>
|
||||
<string>1ae2c4ba9b387976f3360c2203d4de6e1996f741678eaa9d9078fd76a57c3b79</string>
|
||||
</dict>
|
||||
<key>iBEC</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBEC.j2a.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>79517c3e4ffc35d3cfe563d0fae93775</string>
|
||||
<key>Key</key>
|
||||
<string>ff6c7004d45ecfc1ee69f2b0fb2e15c4dc3c7f192563b8254e82edb7e8f426fe</string>
|
||||
<key>Patch</key>
|
||||
<string>iBEC.j2a.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>iBSS</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBSS.j2a.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>e6b041970cd611c8a1561a4c210bc476</string>
|
||||
<key>Key</key>
|
||||
<string>aec6a888d45bd26106ac620d7d4ec0c160ab80276deedc1b50ce8f5d99dcc9af</string>
|
||||
<key>Patch</key>
|
||||
<string>iBSS.j2a.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>Name</key>
|
||||
<string>iPad3,3_8.4.1_12H321</string>
|
||||
|
@ -22,19 +22,6 @@
|
||||
<string>/usr/local/share/restore/options.n94.plist</string>
|
||||
<key>SHA1</key>
|
||||
<string>0858ce92863751e3f1b750b5ee3cc3e44800a52d</string>
|
||||
<key>BuildIdentitiesPatches</key>
|
||||
<dict>
|
||||
<key>UniqueBuildID</key>
|
||||
<data>eMMUaFp+ot+OMIZHCzrwrU85W60=</data>
|
||||
<key>Manifest</key>
|
||||
<dict>
|
||||
<key>RestoreRamDisk</key>
|
||||
<dict>
|
||||
<key>Digest</key>
|
||||
<data>6YT8kmZto76bYGIappOkcqg4gqg=</data>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>RamdiskPatches</key>
|
||||
<dict>
|
||||
<key>asr</key>
|
||||
@ -67,58 +54,6 @@
|
||||
<string>Donner12H321.N94APOS</string>
|
||||
<key>FirmwarePatches</key>
|
||||
<dict>
|
||||
<key>iBSS</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBSS.n94.RELEASE.dfu</string>
|
||||
<key>Key</key>
|
||||
<string>6ea1eb62a9f403ee212c1f6b3039df093963b46739c6093407190fe3d750c69c</string>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>Patch</key>
|
||||
<string>iBSS.n94.RELEASE.patch</string>
|
||||
<key>IV</key>
|
||||
<string>147cdef921ed14a5c10631c5e6e02d1e</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>iBEC</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBEC.n94.RELEASE.dfu</string>
|
||||
<key>Key</key>
|
||||
<string>03d3ecffe7df8729a85df6eafc96ee78bead7822f63ebab21016ac4157dee793</string>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>Patch</key>
|
||||
<string>iBEC.n94.RELEASE.patch</string>
|
||||
<key>IV</key>
|
||||
<string>b9f99de35e106350d89af30482249df3</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>RestoreDeviceTree</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.n94ap.production/DeviceTree.n94ap.img3</string>
|
||||
<key>Key</key>
|
||||
<string>ca597a5833a96eafcf4316790a25f37fb2593b2da170b0c5e855c4fab93c2469</string>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/DeviceTree.n94ap.img3</string>
|
||||
<key>IV</key>
|
||||
<string>70860c7ffbd16f51b4ac998eda7db70d</string>
|
||||
</dict>
|
||||
<key>RestoreLogo</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.n94ap.production/applelogo@2x~iphone.s5l8940x.img3</string>
|
||||
<key>Key</key>
|
||||
<string>f5cc9c8f3c0242183869327e00fd2838f8624032e9cc3a6f595407ba3d5c2c08</string>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/applelogo@2x~iphone.s5l8940x.img3</string>
|
||||
<key>IV</key>
|
||||
<string>96b38c2b31a20def160b6a1fdcbd6c3b</string>
|
||||
</dict>
|
||||
<key>Restore Ramdisk</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
@ -132,19 +67,6 @@
|
||||
<key>IV</key>
|
||||
<string>b41ffb8429157ff7677db6c7a654d1b4</string>
|
||||
</dict>
|
||||
<key>RestoreKernelCache</key>
|
||||
<dict>
|
||||
<key>File</key>
|
||||
<string>kernelcache.release.n94</string>
|
||||
<key>Key</key>
|
||||
<string>7bdb23aa85a6de247a1aacde70b7ace76b0f4a4c5dd9de4e1e55183cbe4040fd</string>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/kernelcache.release.n94</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>4</integer>
|
||||
<key>IV</key>
|
||||
<string>d98ab32f9db9f1bc72ff25a4c226f3b9</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>RootFilesystemKey</key>
|
||||
<string>8fd9823be521060b9160272962fc2f65520de7b5ab55fe574953997e3ee5306d7bab5e02</string>
|
||||
|
@ -2,19 +2,6 @@
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildIdentitiesPatches</key>
|
||||
<dict>
|
||||
<key>UniqueBuildID</key>
|
||||
<data>hKC1ZNXdVd8kti1w2WlpC4sG28c=</data>
|
||||
<key>Manifest</key>
|
||||
<dict>
|
||||
<key>RestoreRamDisk</key>
|
||||
<dict>
|
||||
<key>Digest</key>
|
||||
<data>W1s9h0o+OyNm+s3fBxFQQRoLNbA=</data>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>DownloadUrl</key>
|
||||
<string></string>
|
||||
<key>Filename</key>
|
||||
@ -50,71 +37,6 @@
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>RestoreDeviceTree</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/DeviceTree.n78ap.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.n78ap.production/DeviceTree.n78ap.img3</string>
|
||||
<key>IV</key>
|
||||
<string>67b2dd2762aeacb6e3ea1fe0ec5ccda1</string>
|
||||
<key>Key</key>
|
||||
<string>1e0ffa0989ca51c34f86964b7c9642436ad3071acfb5c877f3fc0e84cc7180b9</string>
|
||||
</dict>
|
||||
<key>RestoreKernelCache</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/kernelcache.release.n78</string>
|
||||
<key>File</key>
|
||||
<string>kernelcache.release.n78</string>
|
||||
<key>IV</key>
|
||||
<string>c96b701e3dc9ae4d07bf722a4cb50011</string>
|
||||
<key>Key</key>
|
||||
<string>e7904495a19966d622389ce0e1113f4f00e0fc7c0fa65c4d66e79dd12450edf9</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>4</integer>
|
||||
</dict>
|
||||
<key>RestoreLogo</key>
|
||||
<dict>
|
||||
<key>DecryptPath</key>
|
||||
<string>Downgrade/applelogo@2x~iphone.s5l8942x.img3</string>
|
||||
<key>File</key>
|
||||
<string>Firmware/all_flash/all_flash.n78ap.production/applelogo@2x~iphone.s5l8942x.img3</string>
|
||||
<key>IV</key>
|
||||
<string>4e4d5f6f690d61dbb0dc41faac09969d</string>
|
||||
<key>Key</key>
|
||||
<string>636d92f146bde17843278ee1a35f512e3fcc65b91a9dbd686bdb947ca9e498dc</string>
|
||||
</dict>
|
||||
<key>iBEC</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBEC.n78.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>ef80ca77212ebc1f823b15664076eb66</string>
|
||||
<key>Key</key>
|
||||
<string>5fac4cdeac38c7fbc19f6c2be83eabdcea7fe0ae7f57cf9a70182cc9cad8209f</string>
|
||||
<key>Patch</key>
|
||||
<string>iBEC.n78.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<key>iBSS</key>
|
||||
<dict>
|
||||
<key>Decrypt</key>
|
||||
<true/>
|
||||
<key>File</key>
|
||||
<string>Firmware/dfu/iBSS.n78.RELEASE.dfu</string>
|
||||
<key>IV</key>
|
||||
<string>e0175b03bc29817adc312638884e0898</string>
|
||||
<key>Key</key>
|
||||
<string>0a0e0aedc8171669c9af6a229930a395959df55dcd8a3ee1fe0f4c009007df3c</string>
|
||||
<key>Patch</key>
|
||||
<string>iBSS.n78.RELEASE.patch</string>
|
||||
<key>TypeFlag</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>Name</key>
|
||||
<string>iPod5,1_8.4.1_12H321</string>
|
||||
|
@ -90,30 +90,3 @@ IPSW32() {
|
||||
Log "Setting restore IPSW to: $IPSWCustom.ipsw"
|
||||
IPSWRestore=$IPSWCustom
|
||||
}
|
||||
|
||||
IPSW64() {
|
||||
if [[ $IPSWRestore == $IPSWCustom ]]; then
|
||||
Log "Found existing Custom IPSW. Skipping IPSW creation."
|
||||
return
|
||||
fi
|
||||
|
||||
Log "Preparing custom IPSW..."
|
||||
$bspatch $IPSW/Firmware/dfu/$iBSS.im4p $iBSS.im4p resources/patches/$iBSS.patch
|
||||
$bspatch $IPSW/Firmware/dfu/$iBEC.im4p $iBEC.im4p resources/patches/$iBEC.patch
|
||||
if [[ $ProductType == "iPad4"* ]]; then
|
||||
$bspatch $IPSW/Firmware/dfu/$iBSSb.im4p $iBSSb.im4p resources/patches/$iBSSb.patch
|
||||
$bspatch $IPSW/Firmware/dfu/$iBECb.im4p $iBECb.im4p resources/patches/$iBECb.patch
|
||||
mv -f $iBSSb.im4p $iBECb.im4p $IPSW/Firmware/dfu
|
||||
fi
|
||||
mv -f $iBSS.im4p $iBEC.im4p $IPSW/Firmware/dfu
|
||||
cd $IPSW
|
||||
zip -rq0 ../$IPSWCustom.ipsw *
|
||||
cd ..
|
||||
mv $IPSW $IPSWCustom
|
||||
if [[ ! -e $IPSWCustom.ipsw ]]; then
|
||||
Error "Failed to find custom IPSW. Please run the script again"
|
||||
fi
|
||||
|
||||
Log "Setting restore IPSW to: $IPSWCustom.ipsw"
|
||||
IPSWRestore=$IPSWCustom
|
||||
}
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,2 +0,0 @@
|
||||
@echo off
|
||||
C:\msys64\msys2.exe "./restore.sh"
|
40
restore.sh
40
restore.sh
@ -41,10 +41,6 @@ Error() {
|
||||
echo -e "\n${Color_R}[Error] $1 ${Color_N}"
|
||||
[[ ! -z $2 ]] && echo "${Color_R}* $2 ${Color_N}"
|
||||
echo
|
||||
if [[ $platform == "win" ]]; then
|
||||
Input "Press Enter/Return to exit."
|
||||
read -s
|
||||
fi
|
||||
exit 1
|
||||
}
|
||||
|
||||
@ -104,9 +100,7 @@ Main() {
|
||||
InstallDepends
|
||||
fi
|
||||
|
||||
if [[ $platform != "win" ]]; then
|
||||
SaveExternal LukeZGD ipwndfu
|
||||
fi
|
||||
|
||||
GetDeviceValues
|
||||
|
||||
@ -140,31 +134,10 @@ Main() {
|
||||
|
||||
if [[ $Mode != "Downgrade" ]]; then
|
||||
$Mode
|
||||
if [[ $platform == "win" ]]; then
|
||||
Input "Press Enter/Return to exit."
|
||||
read -s
|
||||
fi
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [[ $DeviceProc == 7 && $platform == "win" ]]; then
|
||||
local Message="If you want to restore your A7 device on Windows, put the device in pwnDFU mode."
|
||||
if [[ $DeviceState == "Normal" ]]; then
|
||||
Error "$Message"
|
||||
elif [[ $DeviceState == "Recovery" ]]; then
|
||||
Log "A7 device detected in recovery mode."
|
||||
Log "$Message"
|
||||
RecoveryExit
|
||||
elif [[ $DeviceState == "DFU" ]]; then
|
||||
Log "A7 device detected in DFU mode."
|
||||
Echo "* Make sure that your device is already in pwnDFU mode with signature checks disabled."
|
||||
Echo "* If your device is not in pwnDFU mode, the restore will not proceed!"
|
||||
Echo "* Entering pwnDFU mode is not supported on Windows. You need to use a Mac/Linux machine or another iOS device to do so."
|
||||
Input "Press Enter/Return to continue (or press Ctrl+C to cancel)"
|
||||
read -s
|
||||
fi
|
||||
|
||||
elif [[ $DeviceProc == 7 ]]; then
|
||||
if [[ $DeviceProc == 7 ]]; then
|
||||
if [[ $DeviceState == "Normal" ]]; then
|
||||
Echo "* The device needs to be in recovery/DFU mode before proceeding."
|
||||
read -p "$(Input 'Send device to recovery mode? (y/N):')" Selection
|
||||
@ -180,10 +153,8 @@ Main() {
|
||||
Echo "* Advanced Options Menu"
|
||||
Input "This device is in:"
|
||||
Selection=("kDFU mode")
|
||||
if [[ $platform != "win" ]]; then
|
||||
[[ $DeviceProc == 5 ]] && Selection+=("pwnDFU mode (A5)")
|
||||
[[ $DeviceProc == 6 ]] && Selection+=("DFU mode (A6)")
|
||||
fi
|
||||
Selection+=("Any other key to exit")
|
||||
select opt in "${Selection[@]}"; do
|
||||
case $opt in
|
||||
@ -201,7 +172,7 @@ Main() {
|
||||
Log "Downgrading $ProductType in kDFU/pwnDFU mode..."
|
||||
|
||||
elif [[ $DeviceState == "Recovery" ]]; then
|
||||
if [[ $DeviceProc == 6 && $platform != "win" ]]; then
|
||||
if [[ $DeviceProc == 6 ]]; then
|
||||
Recovery
|
||||
else
|
||||
Log "32-bit A${DeviceProc} device detected in recovery mode."
|
||||
@ -213,11 +184,6 @@ Main() {
|
||||
fi
|
||||
|
||||
Downgrade
|
||||
|
||||
if [[ $platform == "win" ]]; then
|
||||
Input "Press Enter/Return to exit."
|
||||
read -s
|
||||
fi
|
||||
exit 0
|
||||
}
|
||||
|
||||
@ -241,7 +207,7 @@ SelectVersion() {
|
||||
Selection+=("iOS 6.1.3")
|
||||
fi
|
||||
|
||||
[[ $Mode == "Downgrade" && $platform != "win" ]] && Selection+=("Other (use SHSH blobs)")
|
||||
[[ $Mode == "Downgrade" ]] && Selection+=("Other (use SHSH blobs)")
|
||||
Selection+=("(Any other key to exit)")
|
||||
|
||||
echo
|
||||
|
Loading…
Reference in New Issue
Block a user