From f2485d002a91270357ee15a6a7d3002cc1e5d241 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?A=E0=B8=A0l=E0=B9=8Fmiu=E0=B8=A0u=E0=BA=AE?= Date: Tue, 21 Jun 2022 02:42:19 +0300 Subject: [PATCH] =?UTF-8?q?Adding=20:=20=20=20=20=20=20=20=20=20=20=20[#]?= =?UTF-8?q?=20=F0=9F=93=9C=20=20Anonimity=20Surfing=20Menu?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [#] 📜 Anonimity Surfing Menu [1] - Anonimity Surfing status [2] - Anonimity Surfing start [3] - Anonimity Surfing stop [#] 📜 Network Manager Menu [4] - ifconfig -a [5] - ip a [x] - Exit / Quit / Close --- Diablo | 65 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 64 insertions(+), 1 deletion(-) diff --git a/Diablo b/Diablo index 6f52f50..5b784cc 100755 --- a/Diablo +++ b/Diablo @@ -40,6 +40,10 @@ elif [ `command -v yum` ]; then system="fedora" fi +pressEnter(){ + press_Enter=$(echo "\n\t\t${LGreen}Press ${BGreen} ENTER\t\t") + read -p "$press_Enter" read_ENTER +} DiabloColors(){ ############################################################################## # COLORS AND BACKGROUNDS @@ -146,6 +150,64 @@ ${LRed} ░░░░░░░░░░ ░░░░░ echo "$DiabloLogo_1" } +AnonMainMenu(){ + while true; do + #statements + clear + DiabloLogo1 + KoTHMenuMain=$(echo "${BRed} + ${BBlue}[${BRed}#${BBlue}] 📜 ${BYellow} Anonimity Surfing Menu + + ${BRed}[${LGrey}1${BRed}]${BBlue} -${DGrey} Anonimity Surfing status + ${BRed}[${LGrey}2${BRed}]${BBlue} -${DGrey} Anonimity Surfing start + ${BRed}[${LGrey}3${BRed}]${BBlue} -${DGrey} Anonimity Surfing stop + + ${BBlue}[${BRed}#${BBlue}] 📜 ${BYellow} Network Manager Menu + + ${BRed}[${LGrey}4${BRed}]${BBlue} -${DGrey} ifconfig -a + ${BRed}[${LGrey}5${BRed}]${BBlue} -${DGrey} ip a + + ${BRed}[${LGrey}x${BRed}]${BWhite} -${DGrey} Exit / Quit / Close + + +${BCyan} ┌──${BBlue}[${BBlue} Anlominus 👽${BRed} KoTH ${BCyan}$~${BBlue}] +${BCyan} └──╼ ") + read -p "$KoTHMenuMain" cmd + case $cmd in + 1 ) + echo "${BRed}\n\t\t[${LGrey}1${BRed}]${BBlue} -${DGrey} Anonimity Surfing status" + anonsurf status + sleep 1 + ;; + 2 ) + echo "${BRed}\n\t\t[${LGrey}2${BRed}]${BBlue} -${DGrey} Anonimity Surfing start" + anonsurf start + sleep 1 + ;; + 3 ) + echo "${BRed}\n\t\t[${LGrey}3${BRed}]${BBlue} -${DGrey} Anonimity Surfing stop" + anonsurf stop + sleep 1 + ;; + 4 ) + echo "${BRed}\n\t\t[${LGrey}4${BRed}]${BBlue} -${DGrey} Network status (ifconfig -a)" + ifconfig -a + sleep 1 + pressEnter + ;; + 5 ) + echo "${BRed}\n\t\t[${LGrey}5${BRed}]${BBlue} -${DGrey} Network status (ip a)" + ip a + sleep 1 + pressEnter + ;; + x ) + clear + break + ;; + esac + done +} MainMenu(){ while true; do @@ -174,6 +236,7 @@ ${BCyan} └──╼ ") read -p "$DiabloMenuMain" cmd case $cmd in a ) + AnonMainMenu ;; 1 ) echo "\n\t\t${BRed}[${BBlue}1${BRed}]${BWhite} - ${BRed}Planning and Scoping" @@ -299,7 +362,7 @@ ${BCyan} └──╼ ") echo " " >> ${targetNAME}-Diablo-Log.md echo " `nmap -sV -sC -O -p- $targetIP ` " >> ${targetNAME}-Diablo-Log.md echo " " >> ${targetNAME}-Diablo-Log.md - + # need_dirb="\n\t\t${BYellow}### Need Start Dirb Scan [y/n] ? ${BGreen} " read -p "$need_dirb" read_dirb