├── BlackMagic ├── README.md ├── LICENSE └── iCloud-Bypass.sh /BlackMagic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mrakovic-ORG/iCloud_Bypass/HEAD/BlackMagic -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # iCloud Bypass 2 | ![APM](https://img.shields.io/apm/l/vim-mode?style=for-the-badge) 3 | 4 | Tested on iOS 13.3.0 & 13.3.1 5 | 6 | note: it has been made in a Ubuntu distro. 7 | 8 | ### Procedee 9 | - Make a backup of mobileactivationd 10 | - Upload bypass file to /usr/libexec/mobileactivationd 11 | - Add required privilege to mobileactivationd 12 | - Reload mobileactivationd plist to apply bypass 13 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Mrakovic 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /iCloud-Bypass.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # wrote on a ubuntu based distro 4 | # tested on iOS 13.3.0 & 13.3.1 5 | # required the following paquages: ssh, scp, sshpass, iproxy 6 | 7 | # make sure to run checkra1n before proceeding to the bypass 8 | # 1) make a backup of mobileactivationd 9 | # 2) upload bypass file to mobileactivationd 10 | # 3) add required privilege to mobileactivationd 11 | # 4) reload mobileactivationd plist to apply bypass 12 | 13 | g=alpine 14 | a=root@localhost 15 | e=1337 16 | 17 | rm -rf ~/.ssh 18 | gnome-terminal --tab -- /bin/bash -c "iproxy ${e} 44" 19 | echo "Starting in 3 sec..." 20 | sleep 3s 21 | 22 | sshpass -p $g ssh -o StrictHostKeyChecking=no $a -p $e mount -o rw,union,update / 23 | sshpass -p $g ssh -o StrictHostKeyChecking=no $a -p $e mv /usr/libexec/mobileactivationd /usr/libexec/mobileactivationdbak 24 | sshpass -p $g scp -rP $e -o StrictHostKeyChecking=no ./BlackMagic $a:/usr/libexec/mobileactivationd 25 | sshpass -p $g ssh -o StrictHostKeyChecking=no $a -p $e chmod 755 /usr/libexec/mobileactivationd 26 | sshpass -p $g ssh -o StrictHostKeyChecking=no $a -p $e launchctl unload /System/Library/LaunchDaemons/com.apple.mobileactivationd.plist 27 | sshpass -p $g ssh -o StrictHostKeyChecking=no $a -p $e launchctl load /System/Library/LaunchDaemons/com.apple.mobileactivationd.plist 28 | clear 29 | echo "Bypass done !" 30 | --------------------------------------------------------------------------------