2021-05-29 13:26:08 +02:00
#!/bin/bash
FindDevice( ) {
2021-07-12 16:36:51 +02:00
local DeviceIn
local i = 0
local Timeout = 999
2021-05-29 13:26:08 +02:00
local USB
[ [ $1 = = "DFU" ] ] && USB = 1227 || USB = 1281
2021-07-12 16:36:51 +02:00
[ [ ! -z $2 ] ] && Timeout = 3
2021-05-29 13:26:08 +02:00
Log " Finding device in $1 mode... "
2021-07-12 16:36:51 +02:00
while ( ( $i < $Timeout ) ) ; do
2021-09-29 07:33:34 +02:00
if [ [ $platform = = "linux" ] ] ; then
DeviceIn = $( lsusb | grep -c " 05ac: $USB " )
else
[ [ $( $irecovery -q 2>/dev/null | grep -w "MODE" | cut -c 7-) = = " $1 " ] ] && DeviceIn = 1
fi
2021-07-12 16:36:51 +02:00
if [ [ $DeviceIn = = 1 ] ] ; then
Log " Found device in $1 mode. "
DeviceState = " $1 "
break
fi
2021-05-29 13:26:08 +02:00
sleep 1
2021-07-12 16:36:51 +02:00
( ( i++) )
2021-05-29 13:26:08 +02:00
done
2021-07-12 16:36:51 +02:00
if [ [ $DeviceIn != 1 ] ] ; then
[ [ $2 = = "error" ] ] && Error " Failed to find device in $1 mode. (Timed out) "
return 1
fi
2021-05-29 13:26:08 +02:00
}
GetDeviceValues( ) {
local ideviceinfo2
2021-11-06 15:10:04 +01:00
local version
2021-05-29 13:26:08 +02:00
Log "Finding device in Normal mode..."
2021-09-06 10:50:29 +02:00
DeviceState =
2021-05-29 13:26:08 +02:00
ideviceinfo2 = $( $ideviceinfo -s)
if [ [ $? != 0 ] ] ; then
Log "Finding device in DFU/recovery mode..."
2021-11-06 15:10:04 +01:00
[ [ $platform = = "linux" ] ] && Echo "* Enter root password of your PC when prompted"
2021-07-20 06:49:03 +02:00
DeviceState = " $( $irecovery -q 2>/dev/null | grep -w "MODE" | cut -c 7-) "
2021-09-06 10:50:29 +02:00
elif [ [ ! -z $ideviceinfo2 ] ] ; then
2021-05-29 13:26:08 +02:00
DeviceState = "Normal"
fi
2021-09-13 14:02:22 +02:00
2021-05-29 13:26:08 +02:00
if [ [ $DeviceState = = "DFU" || $DeviceState = = "Recovery" ] ] ; then
local ProdCut = 7
2021-09-29 07:33:34 +02:00
ProductType = $( $irecovery -qv 2>& 1 | grep "Connected to iP" | cut -c 14-)
2021-05-29 13:26:08 +02:00
[ [ $( echo $ProductType | cut -c 3) = = 'h' ] ] && ProdCut = 9
ProductType = $( echo $ProductType | cut -c -$ProdCut )
2021-09-06 10:50:29 +02:00
if [ [ ! $ProductType ] ] ; then
read -p " $( Input 'Enter ProductType (eg. iPad2,1):' ) " ProductType
fi
2021-05-29 13:26:08 +02:00
UniqueChipID = $(( 16# $( echo $( $irecovery -q | grep "ECID" | cut -c 7-) | cut -c 3-) ))
2021-09-06 10:50:29 +02:00
if [ [ ! $UniqueChipID || $UniqueChipID = = 0 ] ] ; then
read -p " $( Input 'Enter UniqueChipID (ECID, must be decimal):' ) " UniqueChipID
fi
2021-05-29 13:26:08 +02:00
ProductVer = "Unknown"
else
ProductType = $( echo " $ideviceinfo2 " | grep "ProductType" | cut -c 14-)
[ [ ! $ProductType ] ] && ProductType = $( $ideviceinfo | grep "ProductType" | cut -c 14-)
ProductVer = $( echo " $ideviceinfo2 " | grep "ProductVer" | cut -c 17-)
UniqueChipID = $( echo " $ideviceinfo2 " | grep "UniqueChipID" | cut -c 15-)
UniqueDeviceID = $( echo " $ideviceinfo2 " | grep "UniqueDeviceID" | cut -c 17-)
2021-11-06 15:10:04 +01:00
version = " (iOS $ProductVer ) "
2021-05-29 13:26:08 +02:00
fi
2021-09-06 10:50:29 +02:00
if [ [ ! $DeviceState ] ] ; then
2021-10-02 06:46:35 +02:00
echo -e " \n ${ Color_R } [Error] No device detected. Please put the device in normal mode before proceeding. ${ Color_N } "
2021-10-12 09:02:37 +02:00
echo " ${ Color_Y } * Make sure to also trust this computer by selecting \"Trust\" at the pop-up. ${ Color_N } "
2021-11-02 09:21:06 +01:00
echo " ${ Color_Y } * For macOS users, double-check if the device is being detected by iTunes/Finder. ${ Color_N } "
2021-10-05 05:10:32 +02:00
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 } "
2021-10-02 06:46:35 +02:00
exit 1
2021-05-29 13:26:08 +02:00
fi
Firmware = resources/firmware/$ProductType
Baseband = 0
BasebandURL = $( cat $Firmware /13G37/url 2>/dev/null)
if [ [ $ProductType = = "iPad2,2" ] ] ; then
BasebandURL = $( cat $Firmware /13G36/url)
Baseband = "ICE3_04.12.09_BOOT_02.13.Release.bbfw"
BasebandSHA1 = "e6f54acc5d5652d39a0ef9af5589681df39e0aca"
elif [ [ $ProductType = = "iPad2,3" ] ] ; then
Baseband = "Phoenix-3.6.03.Release.bbfw"
BasebandSHA1 = "8d4efb2214344ea8e7c9305392068ab0a7168ba4"
elif [ [ $ProductType = = "iPad2,6" || $ProductType = = "iPad2,7" ] ] ; then
Baseband = "Mav5-11.80.00.Release.bbfw"
BasebandSHA1 = "aa52cf75b82fc686f94772e216008345b6a2a750"
elif [ [ $ProductType = = "iPad3,2" || $ProductType = = "iPad3,3" ] ] ; then
Baseband = "Mav4-6.7.00.Release.bbfw"
BasebandSHA1 = "a5d6978ecead8d9c056250ad4622db4d6c71d15e"
elif [ [ $ProductType = = "iPhone4,1" ] ] ; then
Baseband = "Trek-6.7.00.Release.bbfw"
BasebandSHA1 = "22a35425a3cdf8fa1458b5116cfb199448eecf49"
elif [ [ $ProductType = = "iPad3,5" || $ProductType = = "iPad3,6" ||
$ProductType = = "iPhone5,1" || $ProductType = = "iPhone5,2" ] ] ; then
BasebandURL = $( cat $Firmware /14G61/url)
Baseband = "Mav5-11.80.00.Release.bbfw"
BasebandSHA1 = "8951cf09f16029c5c0533e951eb4c06609d0ba7f"
elif [ [ $ProductType = = "iPad4,2" || $ProductType = = "iPad4,3" || $ProductType = = "iPad4,5" ||
$ProductType = = "iPhone6,1" || $ProductType = = "iPhone6,2" ] ] ; then
BasebandURL = $( cat $Firmware /14G60/url)
Baseband = "Mav7Mav8-7.60.00.Release.bbfw"
BasebandSHA1 = "f397724367f6bed459cf8f3d523553c13e8ae12c"
elif [ [ $ProductType != "iPad2" * && $ProductType != "iPad3" * && $ProductType != "iPad4,1" &&
$ProductType != "iPad4,4" && $ProductType != "iPod5,1" && $ProductType != "iPhone5" * ] ] ; then
2021-11-06 15:10:04 +01:00
Error " Your device $ProductType ${ version } is not supported. "
2021-05-29 13:26:08 +02:00
else
BasebandURL = 0
fi
if [ [ $ProductType = = "iPad2" * || $ProductType = = "iPad3,1" || $ProductType = = "iPad3,2" ||
$ProductType = = "iPad3,3" || $ProductType = = "iPhone4,1" || $ProductType = = "iPod5,1" ] ] ; then
DeviceProc = 5
2021-06-19 09:31:20 +02:00
elif [ [ $ProductType = = "iPhone5" * || $ProductType = = "iPad3" * ] ] ; then
2021-05-29 13:26:08 +02:00
DeviceProc = 6
elif [ [ $ProductType = = "iPhone6" * || $ProductType = = "iPad4" * ] ] ; then
DeviceProc = 7
fi
HWModel = $( cat $Firmware /hwmodel)
if [ [ ! $BasebandURL || ! $HWModel ] ] ; then
2021-05-30 05:03:39 +02:00
Error "Missing BasebandURL and/or HWModel values. Is the firmware folder missing?" \
2021-10-05 05:10:32 +02:00
"Reinstall dependencies and try again. For more details, read the \"Troubleshooting\" wiki page in GitHub"
2021-05-29 13:26:08 +02:00
fi
if [ [ $ProductType = = "iPod5,1" ] ] ; then
iBSS = " ${ HWModel } ap "
iBSSBuildVer = "10B329"
elif [ [ $ProductType = = "iPad3,1" ] ] ; then
iBSS = " ${ HWModel } ap "
iBSSBuildVer = "11D257"
elif [ [ $ProductType = = "iPhone6" * ] ] ; then
iBSS = "iphone6"
IPSWType = "iPhone_4.0_64bit"
elif [ [ $ProductType = = "iPad4" * ] ] ; then
iBSS = "ipad4"
IPSWType = "iPad_64bit"
else
iBSS = " $HWModel "
iBSSBuildVer = "12H321"
fi
[ [ ! $IPSWType ] ] && IPSWType = " $ProductType "
iBSS = " iBSS. $iBSS .RELEASE "
SEP = " sep-firmware. $HWModel .RELEASE.im4p "
2021-11-06 15:10:04 +01:00
Log " $ProductType ${ version } connected in $DeviceState mode. "
Log " ECID: $UniqueChipID "
2021-05-29 13:26:08 +02:00
}
2021-10-26 05:41:09 +02:00
Baseband841( ) {
BasebandURL = $( cat $Firmware /12H321/url)
if [ [ $ProductType = = "iPad2,3" ] ] ; then
Baseband = "Phoenix-3.0.04.Release.bbfw"
BasebandSHA1 = "a507ee2fe061dfbf8bee7e512df52ade8777e113"
elif [ [ $ProductType = = "iPad3,2" || $ProductType = = "iPad3,3" ] ] ; then
Baseband = "Mav4-5.4.00.Release.bbfw"
BasebandSHA1 = "b51f10bda04cd51f673a75d064c18af1ccb661fe"
elif [ [ $ProductType = = "iPhone4,1" ] ] ; then
Baseband = "Trek-5.5.00.Release.bbfw"
BasebandSHA1 = "24849fa866a855e7e640c72c1cb2af6a0e30c742"
elif [ [ $ProductType = = "iPad2,6" || $ProductType = = "iPad2,7" ||
$ProductType = = "iPad3,5" || $ProductType = = "iPad3,6" ||
$ProductType = = "iPhone5,1" || $ProductType = = "iPhone5,2" ] ] ; then
Baseband = "Mav5-8.02.00.Release.bbfw"
BasebandSHA1 = "db71823841ffab5bb41341576e7adaaeceddef1c"
fi
}
2021-05-29 13:26:08 +02:00
CheckM8( ) {
local pwnDFUTool
2021-06-08 05:04:40 +02:00
local pwnDFUDevice
2021-08-20 03:58:17 +02:00
local pwnD = 1
2021-05-29 13:26:08 +02:00
2021-06-27 10:13:51 +02:00
if [ [ $platform = = "macos" && $( uname -m) != "x86_64" ] ] ; then
pwnDFUTool = "iPwnder32"
elif [ [ $platform = = "macos" ] ] ; then
Selection = ( "iPwnder32" "ipwndfu" )
Input "Select pwnDFU tool to use (Select 1 if unsure):"
select opt in " ${ Selection [@] } " ; do
2021-06-27 10:20:23 +02:00
case $opt in
"ipwndfu" ) pwnDFUTool = "ipwndfu" ; break; ;
*) pwnDFUTool = "iPwnder32" ; break; ;
esac
2021-06-27 10:13:51 +02:00
done
else
pwnDFUTool = "ipwndfu"
fi
2021-05-29 13:26:08 +02:00
Log " Entering pwnDFU mode with $pwnDFUTool ... "
if [ [ $pwnDFUTool = = "ipwndfu" ] ] ; then
cd resources/ipwndfu
2021-11-06 15:10:04 +01:00
[ [ $platform = = "linux" ] ] && Echo "* Enter root password of your PC when prompted"
2021-05-29 13:26:08 +02:00
$ipwndfu -p
2021-06-21 13:53:02 +02:00
if [ [ $DeviceProc = = 7 ] ] ; then
Log "Running rmsigchks.py..."
$rmsigchks
2021-07-20 03:13:10 +02:00
pwnDFUDevice = $?
cd ../..
2021-06-21 13:53:02 +02:00
else
2021-07-20 03:13:10 +02:00
cd ../..
2021-06-21 13:53:02 +02:00
Log "Sending iBSS..."
kDFU iBSS || echo
2021-07-20 03:13:10 +02:00
pwnDFUDevice = $?
2021-06-21 13:53:02 +02:00
fi
elif [ [ $pwnDFUTool = = "iPwnder32" ] ] ; then
$ipwnder32 -p
2021-09-02 07:33:04 +02:00
pwnDFUDevice = $?
2021-05-29 13:26:08 +02:00
fi
2021-09-03 06:09:33 +02:00
[ [ $DeviceProc = = 7 ] ] && pwnD = $( $irecovery -q | grep -c "PWND" )
2021-05-29 13:26:08 +02:00
2021-08-20 03:58:17 +02:00
if [ [ $pwnDFUDevice != 0 && $pwnD != 1 ] ] ; then
2021-05-29 13:26:08 +02:00
echo -e " \n ${ Color_R } [Error] Failed to enter pwnDFU mode. Please run the script again: ./restore.sh Downgrade ${ Color_N } "
echo " ${ Color_Y } * This step may fail a lot, especially on Linux, and unfortunately there is nothing I can do about the low success rates. ${ Color_N } "
2021-07-12 16:36:51 +02:00
echo " ${ Color_Y } * The only option is to make sure you are using an Intel or Apple Silicon device, and to try multiple times ${ Color_N } "
2021-10-05 05:10:32 +02:00
Echo "* For more details, read the \"Troubleshooting\" wiki page in GitHub"
2021-05-29 13:26:08 +02:00
exit 1
elif [ [ $pwnDFUDevice = = 0 ] ] ; then
Log "Device in pwnDFU mode detected."
2021-08-20 03:58:17 +02:00
else
Log "Warning - Failed to detect device in pwnDFU mode."
Echo "* If the device entered pwnDFU mode successfully, you may continue"
Echo "* If entering pwnDFU failed, you may have to force restart your device and start over"
2021-05-29 13:26:08 +02:00
fi
}
Recovery( ) {
local RecoveryDFU
if [ [ $DeviceState != "Recovery" ] ] ; then
Log "Entering recovery mode..."
$ideviceenterrecovery $UniqueDeviceID >/dev/null
FindDevice "Recovery"
fi
2021-06-27 10:13:51 +02:00
Echo "* Get ready to enter DFU mode."
2021-05-29 13:26:08 +02:00
read -p " $( Input 'Select Y to continue, N to exit recovery (Y/n)' ) " RecoveryDFU
if [ [ $RecoveryDFU = = 'N' || $RecoveryDFU = = 'n' ] ] ; then
Log "Exiting recovery mode."
$irecovery -n
2021-05-30 05:03:39 +02:00
exit 0
2021-05-29 13:26:08 +02:00
fi
Echo "* Hold POWER and HOME button for 8 seconds."
for i in { 08..01} ; do
echo -n " $i "
sleep 1
done
echo -e " \n $( Echo '* Release POWER and hold HOME button for 8 seconds.' ) "
for i in { 08..01} ; do
echo -n " $i "
sleep 1
done
echo
2021-07-12 16:36:51 +02:00
FindDevice "DFU" error
2021-05-29 13:26:08 +02:00
CheckM8
}
2021-09-30 05:49:41 +02:00
RecoveryExit( ) {
read -p " $( Input 'Attempt to exit recovery mode? (Y/n)' ) " Selection
if [ [ $Selection != 'N' && $Selection != 'n' ] ] ; then
Log "Exiting recovery mode."
$irecovery -n
fi
exit 0
}
2021-05-29 13:26:08 +02:00
kDFU( ) {
local kloader
local VerDetect = $( echo $ProductVer | cut -c 1)
if [ [ ! -e saved/$ProductType /$iBSS .dfu ] ] ; then
Log "Downloading iBSS..."
$partialzip $( cat $Firmware /$iBSSBuildVer /url) Firmware/dfu/$iBSS .dfu $iBSS .dfu
mkdir -p saved/$ProductType 2>/dev/null
mv $iBSS .dfu saved/$ProductType
fi
if [ [ ! -e saved/$ProductType /$iBSS .dfu ] ] ; then
Error "Failed to save iBSS. Please run the script again"
fi
Log "Patching iBSS..."
$bspatch saved/$ProductType /$iBSS .dfu tmp/pwnediBSS resources/patches/$iBSS .patch
if [ [ $1 = = iBSS ] ] ; then
cd resources/ipwndfu
Log "Sending iBSS..."
$ipwndfu -l ../../tmp/pwnediBSS
local ret = $?
cd ../..
return $ret
fi
[ [ $VerDetect = = 1 ] ] && kloader = "kloader_hgsp"
[ [ $VerDetect = = 5 ] ] && kloader = "kloader5"
[ [ ! $kloader ] ] && kloader = "kloader"
$iproxy 2222 22 &
iproxyPID = $!
2021-09-06 10:50:29 +02:00
2021-05-29 13:26:08 +02:00
Log "Copying stuff to device via SSH..."
Echo "* Make sure OpenSSH/Dropbear is installed on the device and running!"
Echo "* Dropbear is only needed for devices on iOS 10"
Echo "* To make sure that SSH is successful, try these steps:"
Echo "* Reinstall OpenSSH/Dropbear, reboot and rejailbreak, then reinstall them again"
echo
2021-10-12 09:02:37 +02:00
Input "Enter the root password of your iOS device when prompted."
Echo "* Note that you will be prompted twice. Do not worry that your input is not visible, it is still being entered."
2021-06-05 13:53:56 +02:00
Echo "* The default password is \"alpine\""
2021-05-29 13:26:08 +02:00
$SCP -P 2222 resources/tools/$kloader tmp/pwnediBSS root@127.0.0.1:/tmp
if [ [ $? = = 0 ] ] ; then
2021-09-29 07:33:34 +02:00
$SSH -p 2222 root@127.0.0.1 " chmod +x /tmp/ $kloader ; /tmp/ $kloader /tmp/pwnediBSS " &
2021-05-29 13:26:08 +02:00
else
Log "Cannot connect to device via USB SSH."
Echo "* Please try the steps above to make sure that SSH is successful"
2021-10-12 09:02:37 +02:00
Echo "* Alternatively, you may use kDFUApp by tihmstar (from my repo, see \"Troubleshooting\" wiki page)"
2021-05-29 13:26:08 +02:00
Input "Press Enter/Return to continue anyway (or press Ctrl+C to cancel and try again)"
read -s
Log "Will try again with Wi-Fi SSH..."
Echo "* Make sure that the device and your PC/Mac are on the same network!"
Echo "* You can check for your device's IP Address in: Settings > WiFi/WLAN > tap the 'i' next to your network name"
read -p " $( Input 'Enter the IP Address of your device:' ) " IPAddress
Log "Copying stuff to device via SSH..."
$SCP resources/tools/$kloader tmp/pwnediBSS root@$IPAddress :/tmp
2021-05-30 05:03:39 +02:00
if [ [ $? = = 1 ] ] ; then
Error "Cannot connect to device via SSH." \
"Please try the steps above to make sure that SSH is successful"
fi
2021-11-06 15:10:04 +01:00
$SSH root@$IPAddress " chmod +x /tmp/ $kloader ; /tmp/ $kloader /tmp/pwnediBSS " &
2021-05-29 13:26:08 +02:00
fi
Log "Entering kDFU mode..."
2021-10-12 09:02:37 +02:00
Echo "* Press POWER or HOME button when the device disconnects and its screen goes black"
2021-05-29 13:26:08 +02:00
FindDevice "DFU"
}