-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinstall
More file actions
359 lines (321 loc) · 9.75 KB
/
install
File metadata and controls
359 lines (321 loc) · 9.75 KB
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
#!/bin/bash
#Colors_BEGIN
clear
red='\e[0;31m'
green='\e[1;32m'
orange='\e[1;33m'
lightblue='\e[0;34m'
purple='\e[0;35m'
cyan='\e[0;36m'
lightgray='\e[0;37m'
darkgray='\e[1;30em'
lightred='\e[1;31m'
lightgreen='\e[0;32m'
yellow='\e[0;49;93m'
blue='\e[1;34m'
lightpurple='\e[1;35m'
lightcyan='\e[1;36m'
white='\e[1;37m'
nc="\e[0m"
#Colors_END
Distro_Name=$(cat /etc/os-release | awk -F= '/^ID=/{print $2}')
#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
#BEGIN-CHECKING FOR INTERNET CONNECTION
while true;
do
echo -e "$orange""Checking Internet connection""$nc"
sleep 0.1
clear
echo -e "$orange""Checking Internet connection.""$nc"
sleep 0.1
clear
echo -e "$orange""Checking Internet connection..""$nc"
sleep 0.1
clear
echo -e "$orange""Checking Internet connection...""$nc"
sleep 0.1
clear
done &
trap 'kill $!' SIGTERM SIGKILL
wget -q --spider https://www.google.com
if [ $? -eq 0 ]; then
echo -e "Connected to internet [$green✓$nc]$nc"
kill $!
sleep 1
else
echo -e "No internet connection [$red✗$nc] $nc "
echo -e "$orange""Please make sure you are connected to internet!" "$nc"
sleep 2
exit 1
fi
#END-CHECKING FOR INTERNET CONNECTION
#BEGIN-CHECKING FOR REQUIRED TOOLS
if pgrep -x "apt" >/dev/null || pgrep -x "dpkg" >/dev/null ;then
echo -e "$red""Another installation is running! Please wait or kill the proccess.$nc"
echo -e "$blue""The following proccess can cancel the installation$nc"
pgrep apt
pgrep dpkg
echo -e -n "$yellow""Do you want to kill the proccess? (Y/n) "
read answ
case $answ in
y | Y)
pkill apt
pkill dpkg
sleep 1
;;
n | N)
exit 1
;;
*)
exit 1
;;
esac
fi
if [ $Distro_Name = "kali" ]; then
echo "Kali Linux Detected!"
sleep 0.5
echo -e "$orange""Checking for required tools...$nc"
echo ""
sleep 0.5
if [[ -f "/usr/sbin/ifconfig" ]]; then
echo -e "$white""net-tools$nc""$yellow =====>$nc""$green [✓] installed$nc"
sleep 0.5
else
echo -e "$white""net-tools$nc""$yellow ===>$nc" "$red[✗] Not installed$nc"
echo -e "$orange""Downloading & Installing net-tools...$nc"
sleep 1
xterm -e "apt install net-tools -y"
if [[ -f "/usr/sbin/ifconfig" ]]; then
echo -e "$white""net-tools" "$green""successfuly installed ✓$nc"
sleep 1
fi
fi
if [[ -f "/usr/bin/wash" ]]; then
echo -e "$white""wash$nc""$yellow =====>$nc""$green [✓] installed$nc"
sleep 0.5
else
echo -e "$white""wash$nc""$yellow ===>$nc" "$red[✗] Not installed$nc"
echo -e "$orange""Downloading & Installing wash...$nc"
sleep 1
xterm -e "apt install reaver -y"
if [[ -f "/usr/bin/wash" ]]; then
echo -e "$white""wash" "$green""successfuly installed ✓$nc"
sleep 1
fi
fi
if [[ -f "/usr/sbin/airmon-ng" ]]; then
echo -e "$white""airmon-ng$nc""$yellow =====>$nc""$green [✓] installed$nc"
sleep 0.5
else
echo -e "$white""airmon-ng$nc""$yellow ===>$nc" "$red[✗] Not installed$nc"
echo -e "$orange""Downloading & Installing airmon-ng...$nc"
sleep 1
xterm -e "apt install aircrack-ng -y"
if [[ -f "/usr/sbin/airmon-ng" ]]; then
echo -e "$white""airmon-ng" "$green""successfuly installed ✓$nc"
sleep 1
fi
fi
if [[ -f "/usr/sbin/netdiscover" ]]; then
echo -e "$white""netdiscover$nc""$yellow ===>$nc" "$green[✓] installed$nc"
sleep 0.5
else
echo -e "$white""netdiscover$nc""$yellow ===>$nc" "$red[✗] Not installed$nc"
echo -e "$orange""Downloading & Installing netdiscover...$nc"
sleep 1
xterm -e "apt install netdiscover -y"
if [[ -f "/usr/sbin/netdiscover" ]]; then
echo -e "$white""netdiscover" "$green""successfuly installed ✓$nc"
sleep 1
fi
fi
if [[ -f "/usr/bin/nmap" ]]; then
echo -e "$white""nmap$nc""$yellow ==========>$nc" "$green[✓] installed$nc"
sleep 0.5
else
echo -e "$white""nmap$nc""$yellow ===>$nc" "$red[✗] Not installed$nc"
echo -e "$orange""Downloading & Installing nmap...$nc"
sleep 1
xterm -e "apt install nmap -y"
if [[ -f "/usr/bin/nmap" ]]; then
echo -e "$white""nmap" "$green""successfuly installed ✓$nc"
fi
fi
if [[ -f "/usr/sbin/arpspoof" ]]; then
echo -e "$white""arpspoof$nc""$yellow ======>$nc" "$green[✓] installed$nc"
sleep 0.5
else
echo -e "$white""arpspoof$nc""$yellow ===>$nc" "$red[✗] Not installed$nc"
echo -e "$orange""Downloading & Installing arpspoof...$nc"
sleep 1
xterm -e "apt install dsniff -y"
if [ -f "/usr/sbin/arpspoof" ]; then
echo -e "$white""arpspoof" "$green""successfuly installed ✓$nc"
fi
fi
if [[ -f "/usr/sbin/arp-scan" ]]; then
echo -e "$white""arp-scan$nc""$yellow ======>$nc" "$green[✓] installed$nc"
sleep 0.5
else
echo -e "$white""arp-scan$nc""$yellow ===>$nc" "$red[✗] Not installed$nc"
echo -e "$orange""Downloading & Installing arp-scan...$nc"
sleep 1
xterm -e "apt install arp-scan -y"
if [ -f "/usr/sbin/arp-scan" ]; then
echo -e "$white""arp-scan" "$green""successfuly installed ✓$nc"
fi
fi
else
if [ $Distro_Name = "ubuntu" ]; then
echo "Ubuntu Detected!"
sleep 0.5
echo "installing system base tools..."
nohup sudo apt install xterm -y </dev/null &>/dev/null
nohup sudo apt install git -y </dev/null &>/dev/null
echo "done"
echo -e "$orange""Checking for required tools...$nc"
echo ""
sleep 0.5
if [[ -f "/usr/sbin/ifconfig" ]]; then
echo -e "$white""net-tools$nc""$yellow =====>$nc""$green [✓] installed$nc"
sleep 0.5
else
echo -e "$white""net-tools$nc""$yellow ===>$nc" "$red[✗] Not installed$nc"
echo -e "$orange""Downloading & Installing net-tools...$nc"
sleep 1
xterm -e "apt install net-tools -y"
if [[ -f "/usr/sbin/ifconfig" ]]; then
echo -e "$white""net-tools" "$green""successfuly installed ✓$nc"
sleep 1
fi
fi
if [[ -f "/usr/bin/wash" ]]; then
echo -e "$white""wash$nc""$yellow =====>$nc""$green [✓] installed$nc"
sleep 0.5
else
echo -e "$white""wash$nc""$yellow ===>$nc" "$red[✗] Not installed$nc"
echo -e "$orange""Downloading & Installing wash...$nc"
sleep 1
xterm -e "apt install reaver -y"
if [[ -f "/usr/bin/wash" ]]; then
echo -e "$white""wash" "$green""successfuly installed ✓$nc"
sleep 1
fi
fi
if [[ -f "/usr/sbin/airmon-ng" ]]; then
echo -e "$white""airmon-ng$nc""$yellow =====>$nc""$green [✓] installed$nc"
sleep 0.5
else
echo -e "$white""airmon-ng$nc""$yellow ===>$nc" "$red[✗] Not installed$nc"
echo -e "$orange""Downloading & Installing airmon-ng...$nc"
sleep 1
xterm -e "apt install aircrack-ng -y"
if [[ -f "/usr/sbin/airmon-ng" ]]; then
echo -e "$white""airmon-ng" "$green""successfuly installed ✓$nc"
sleep 1
fi
fi
if [[ -f "/usr/sbin/netdiscover" ]]; then
echo -e "$white""netdiscover$nc""$yellow ===>$nc" "$green[✓] installed$nc"
sleep 0.5
else
echo -e "$white""netdiscover$nc""$yellow ===>$nc" "$red[✗] Not installed$nc"
echo -e "$orange""Downloading & Installing netdiscover...$nc"
sleep 1
xterm -e "apt install netdiscover -y"
if [[ -f "/usr/sbin/netdiscover" ]]; then
echo -e "$white""netdiscover" "$green""successfuly installed ✓$nc"
sleep 1
fi
fi
if [[ -f "/usr/bin/nmap" ]]; then
echo -e "$white""nmap$nc""$yellow ==========>$nc" "$green[✓] installed$nc"
sleep 0.5
else
echo -e "$white""nmap$nc""$yellow ===>$nc" "$red[✗] Not installed$nc"
echo -e "$orange""Downloading & Installing nmap...$nc"
sleep 1
xterm -e "apt install nmap -y"
if [[ -f "/usr/bin/nmap" ]]; then
echo -e "$white""nmap" "$green""successfuly installed ✓$nc"
fi
fi
if [[ -f "/usr/sbin/arpspoof" ]]; then
echo -e "$white""arpspoof$nc""$yellow ======>$nc" "$green[✓] installed$nc"
sleep 0.5
else
echo -e "$white""arpspoof$nc""$yellow ===>$nc" "$red[✗] Not installed$nc"
echo -e "$orange""Downloading & Installing arpspoof...$nc"
sleep 1
xterm -e "apt install dsniff -y"
if [ -f "/usr/sbin/arpspoof" ]; then
echo -e "$white""arpspoof" "$green""successfuly installed ✓$nc"
fi
fi
if [[ -f "/usr/sbin/arp-scan" ]]; then
echo -e "$white""arp-scan$nc""$yellow ======>$nc" "$green[✓] installed$nc"
sleep 0.5
else
echo -e "$white""arp-scan$nc""$yellow ===>$nc" "$red[✗] Not installed$nc"
echo -e "$orange""Downloading & Installing arp-scan...$nc"
sleep 1
xterm -e "apt install arp-scan -y"
if [ -f "/usr/sbin/arp-scan" ]; then
echo -e "$white""arp-scan" "$green""successfuly installed ✓$nc"
fi
fi
fi
fi
sleep 0.5
echo ""
echo -e "$lightgreen""All tools have been checked! [✓]$nc"
echo -e "$blue""Do you want to install it? (Y/n)$nc"
read answ1
sleep 0.5
if [ "$answ1" = "y" ] || [ "$answ1" = "Y" ]; then
while true;
do
clear
echo -e $lightblue"copying file to /usr/bin"
sleep 0.1
clear
echo -e $lightblue"copying file to /usr/bin."
sleep 0.1
clear
echo -e $lightblue"copying file to /usr/bin.."
sleep 0.1
clear
echo -e $lightblue"copying file to /usr/bin..."
sleep 0.1
clear
done &
trap 'kill $!' SIGTERM SIGKILL
sleep 1
cp netTool /usr/bin
sleep 0.5
kill $!
echo -e $yellow"DONE"$nc
sleep 0.5
echo -e $yellow"Now you can run "$red'netTool'$nc $yellow"from anywhere in the Terminal "$nc
chmod +x update
chmod +x install
chmod +x netTool
chmod +x /usr/bin/netTool
sleep 2
else
echo -e "$red""Aboarding...$nc"
exit 1
fi
#echo "Do you want to run it? (Y/n)"
echo -e "$orange""Do you want to run it? [Y/n] $nc"
read answ2
if [[ "$answ2" = "y" ]] || [[ "$answ2" = "Y" ]] ; then
sudo netTool
else
echo -e "$red""Aboarding...$nc"
exit 1
fi