ibypass.sh 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. # Bu3srh ByPass
  2. echo "
  3. ____ __ __
  4. /\ _ \ / __ \ /\ \
  5. \ \ \L\ \ __ __/\_\L\ \ ____ _ __\ \ \___
  6. \ \ _ <'/\ \/\ \/_/_\_<_ /',__\/\ __\ \ _ \
  7. \ \ \L\ \ \ \_\ \/\ \L\ /\__, \ \ \/ \ \ \ \ \
  8. \ \____/\ \____/\ \____\/\____/\ \_\ \ \_\ \_\
  9. \/___/ \/___/ \/___/ \/___/ \/_/ \/_/\/_/
  10. Welcome to Bu3srh CloudPass v1.0"
  11. echo "To make this exploit work we will launch checkrain jailbreak please follow the instructions and do not close the terminal"
  12. echo "If you want to exit the script press ctrl + c"
  13. read -p "Press enter to continue"
  14. echo "Checking for python3..."
  15. if ! [ -x "$(command -v python3)" ]; then
  16. echo 'Error: python3 is not installed.' >&2
  17. exit 1
  18. else
  19. echo "python3 is installed"
  20. fi
  21. echo "Checking for pip3..."
  22. if ! [ -x "$(command -v pip3)" ]; then
  23. echo 'Error: pip3 is not installed.' >&2
  24. exit 1
  25. else
  26. echo "pip3 is installed"
  27. fi
  28. echo "Getting ready to jailbreak..."pip paramiko
  29. sudo ./source/exe/jk
  30. echo "If jailbreak was successfull you should continue"
  31. read -p "Press button R to restart jailbreak or press enter to continue"
  32. if [ "$REPLY" == "r" ]; then
  33. echo "Restarting jailbreak..."
  34. sudo ./source/exe/jk
  35. else
  36. echo "You selected to continue"
  37. fi
  38. echo "Checking for python scripts..."
  39. if [ -f "./source/scripts/bypass.py" ]; then
  40. echo "bypass.py found"
  41. else
  42. echo "bypass.py not found"
  43. exit 1
  44. fi
  45. if [ -f "./source/scripts/usbmux.py" ]; then
  46. echo "usbmux.py found"
  47. else
  48. echo "usbmux.py not found"
  49. exit 1
  50. fi
  51. echo "Installing required libs..."
  52. sudo pip3 install paramiko
  53. echo "All files are found"
  54. echo "Good luck"
  55. echo "Starting python scripts..."
  56. echo "Let the script finish wait 2-5 minutes and your device should be unlocked"
  57. echo "ON COMPLEATE REBOOT DEVICE MAY BE LOCKED, AND SIM CARD WONT WORK"
  58. echo "ON SOME IOS VERSIONS THIS WONT WORK AND PLEASE DO NOT UPDATE, IF IT DOES NOT WORK DOWNGRADE IOS"
  59. # coutdown
  60. for i in {1..5}
  61. do
  62. echo "Starting at 5 $i"
  63. sleep 1
  64. done
  65. python3 ./source/scripts/bypass.py
  66. exit 0