Created
November 13, 2019 20:40
-
-
Save TotallyNotNero/becbb13f5c140c0e1b7783d659c9be6d to your computer and use it in GitHub Desktop.
iOS iCloud Bypass
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo "==> Installing dependencies..." | |
brew install libusbmuxd | |
clear | |
echo "********* Checkra1n iCloud Bypass **********" | |
echo | |
echo "=> By Nero, et al" | |
echo "=> - @TotallyNotNero" | |
echo | |
echo "==> DISCLAIMER: I can not be held accountable if you decided to use this tool for illegal purposes. That is on you. DO NOT use this for illegal purposes." | |
echo | |
read -p "==> Jailbreak using checkra1n, connect your device to your Mac, and press enter. " | |
echo "==> Setting up SSH using Checkra1n on port 44..." | |
iproxy 2222 44 2> /dev/null & | |
runcmd () { | |
sshpass -p alpine ssh -o StrictHostKeyChecking=no root@localhost -p 2222 "$1" > /dev/null | |
} | |
echo "==> Bypassing iCloud lock..." | |
runcmd "mount -o rw,union,update / && mv /Applications/Setup.app /Applications/Setup.app.bypass && killall Setup && uicache --all && killall backboardd" | |
echo | |
echo "==> Done, Have fun!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment