root_shell.sh 503 B

1234567891011121314151617181920
  1. echo "Bu3srh IOS root shell, ONLY WORKS ON JAILBROKEN IPHONES"
  2. echo "Checking for python3..."
  3. if ! [ -x "$(command -v python3)" ]; then
  4. echo 'Error: python3 is not installed.' >&2
  5. exit 1
  6. else
  7. echo "python3 is installed"
  8. fi
  9. echo "Checking for pip3..."
  10. if ! [ -x "$(command -v pip3)" ]; then
  11. echo 'Error: pip3 is not installed.' >&2
  12. exit 1
  13. else
  14. echo "pip3 is installed"
  15. fi
  16. echo "Installing required libs..."
  17. sudo pip3 install paramiko
  18. echo "Launching shell"
  19. python3 ./source/scripts/shell.py