diff --git a/README.md b/README.md index 54dd961..e51c059 100644 --- a/README.md +++ b/README.md @@ -3,17 +3,17 @@ Interactive shell to execute commands anonymously using Proxychains and Tor **Installation** -apt update & apt install tor proxychains toilet +`sudo apt update & sudo apt install tor proxychains4 toilet` git clone https://github.com/S12cybersecurity/GhostShell **Usage** -sudo bash setup.sh +`sudo bash setup.sh` ![image](https://user-images.githubusercontent.com/79543461/197204798-59cb3c9e-5b87-43c6-bf1b-011ac1c928a1.png) -bash ghostshell.sh +`bash ghostshell.sh` ![image](https://user-images.githubusercontent.com/79543461/197204893-029802a6-d2c4-40ff-88a1-48cb4e2889bc.png) diff --git a/ghostshell.sh b/ghostshell.sh index d071730..c730df5 100644 --- a/ghostshell.sh +++ b/ghostshell.sh @@ -9,7 +9,7 @@ ENDCOLOR="\e[0m" hostname=$(hostname) echo -e "\n" -toilet -f smbraille --gay 'GhostShell' +toilet -f smbraille 'GhostShell' echo -e "\n" echo -e "${YELLOW}[+] Starting Shell...${ENDCOLOR}\n" @@ -17,12 +17,13 @@ systemctl status tor.service | grep " active" >/dev/null e=$(echo $?) if [ $e == 0 ]; then - echo -e "${GREEN}[+] Tor Active${ENDCOLOR}" + echo -e "${GREEN}[+] Tor Active${ENDCOLOR}\n" else echo -e "${RED}[-] Tor Inactive${ENDCOLOR}\n" exit fi +echo -e "${YELLOW}[*] IP Address: $(proxychains4 -q curl -s https://api.ipify.org/)" while [ "$command" != "exit" ] do @@ -31,4 +32,3 @@ do echo -e "${ENDCOLOR}" proxychains4 -q $command done -