-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackagesInstaller.sh
269 lines (247 loc) · 6.66 KB
/
PackagesInstaller.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
red='\e[1;31m'
default='\e[0m'
yellow='\e[0;33m'
orange='\e[38;5;166m'
green='\033[92m'
clear
sleep 1
echo -e "$yellow ___ __ .__ .__ "
echo -e "$yellow | | ____ _______/ |______ | | | | ___________ "
echo -e "$yellow | |/ \ / ___/\ __\__ \ | | | | _/ __ \_ __ \ "
echo -e "$yellow | | | \___ \ | | / __ \| |_| |_\ ___/| | \/ "
echo -e "$yellow |___|___| /____ > |__| (____ /____/____/\___ >__| "
echo -e "$yellow \/ \/ \/ \/ "
echo ""
echo -e "$orange [>] $yellow Tool Name: AllHuntingTools "
echo -e "$orange [>] $yellow Developer: Zubi Hunter "
which git > /dev/null 2>&1
if [ "$?" -eq "0" ]; then
echo -e "$green[+]-[Git].............................[ SUCCESFUL ]"
sleep 1.5
else
echo -e "$red[-]-[Git]..........................[ FAILED ]"
sleep 1.5
echo -e "$yellow[!][Installing Module Git...]"
apt install git
fi
which python > /dev/null 2>&1
if [ "$?" -eq "0" ]; then
echo -e "$green[+]-[Python]..........................[ SUCCESFUL ]"
sleep 1.5
else
echo -e "$red[-]-[Python].......................[ FAILED ]"
sleep 1.5
echo -e "$yellow[!][Installing Module Python...]"
apt install python > /dev/null
apt install python
apt install python2
apt install python3
pkg install pip
pkg install pip2
pip2 install --upgrade pip
fi
which cowsay > /dev/null 2>&1
if [ "$?" -eq "0" ]; then
echo -e "$green[+]-[Cowsay]..........................[ SUCCESFUL ]"
sleep 1.5
else
echo -e "$red[-]-[Cowsay].......................[ FAILED ]"
sleep 1.5
echo -e "$yellow[!][Installing Module Cowsay...]"
apt install cowsay
fi
which wget > /dev/null 2>&1
if [ "$?" -eq "0" ]; then
echo -e "$green[+]-[Wget]............................[ SUCCESFUL ]"
sleep 1.5
else
echo -e "$red[-]-[Wget].........................[ FAILED ]"
sleep 1.5
echo -e "$yellow[!][Installing Module Wget...]"
apt install wget
fi
which ruby > /dev/null 2>&1
if [ "$?" -eq "0" ]; then
echo -e "$green[+]-[Ruby]............................[ SUCCESFUL ]"
sleep 1.5
else
echo -e "$red[-]-[Ruby].........................[ FAILED ]"
sleep 1.5
echo -e "$yellow[!][Installing Module Ruby...]"
apt install ruby
fi
which toilet > /dev/null 2>&1
if [ "$?" -eq "0" ]; then
echo -e "$green[+]-[Toilet]..........................[ SUCCESFUL ]"
sleep 1.5
else
echo -e "$red[-]-[Toilet].......................[ FAILED ]"
sleep 1.5
echo -e "$yellow[!][Installing Module Toilet...]"
apt install toilet
fi
which figlet > /dev/null 2>&1
if [ "$?" -eq "0" ]; then
echo -e "$green[+]-[Figlet]..........................[ SUCCESFUL ]"
sleep 1.5
else
echo -e "$red[-]-[Figlet].......................[ FAILED ]"
sleep 1.5
echo -e "$yellow[!][Installing Module Figlet...]"
apt install figlet
fi
which lolcat > /dev/null 2>&1
if [ "$?" -eq "0" ]; then
echo -e "$green[+]-[Lolcat]..........................[ SUCCESFUL ]"
sleep 1.5
else
echo -e "$red[-]-[Lolcat].......................[ FAILED ]"
sleep 1.5
echo -e "$yellow[!][Installing Module Lolcat...]"
gem install lolcat
fi
which neofetch > /dev/null 2>&1
if [ "$?" -eq "0" ]; then
echo -e "$green[+]-[Neofetch]........................[ SUCCESFUL ]"
sleep 1.5
else
echo -e "$red[-]-[Neofetch].....................[ FAILED ]"
sleep 1.5
echo -e "$yellow[!][Installing Module Neofetch...]"
apt install neofetch
fi
which php > /dev/null 2>&1
if [ "$?" -eq "0" ]; then
echo -e "$green[+]-[PHP].............................[ SUCCESFUL ]"
sleep 1.5
else
echo -e "$red[-]-[PHP]..........................[ FAILED ]"
sleep 1.5
echo -e "$yellow[!][Installing Module PHP...]"
apt install php
fi
which ruby > /dev/null 2>&1
if [ "$?" -eq "0" ]; then
echo -e "$green[+]-[Clang]...........................[ SUCCESFUL ]"
sleep 1.5
else
echo -e "$red[-]-[Clang]........................[ FAILED ]"
sleep 1.5
echo -e "$yellow[!][Installing Module Clang...]"
apt install clang
fi
which zip > /dev/null 2>&1
if [ "$?" -eq "0" ]; then
echo -e "$green[+]-[Zip].............................[ SUCCESFUL ]"
sleep 1.5
else
echo -e "$red[-]-[Zip]..........................[ FAILED ]"
sleep 1.5
echo -e "$yellow[!][Installing Module Zip...]"
apt install zip
fi
which pip > /dev/null 2>&1
if [ "$?" -eq "0" ]; then
echo -e "$green[+]-[PIP].............................[ SUCCESFUL ]"
sleep 1.5
else
echo -e "$red[-]-[PIP]..........................[ FAILED ]"
sleep 1.5
echo -e "$yellow[!][Installing Module pip...]"
apt install pip
pkg install pip
pkg install pip2
apt install pip
apt install pip2
pip2 install --upgrade pip
fi
which zsh > /dev/null 2>&1
if [ "$?" -eq "0" ]; then
echo -e "$green[+]-[zsh].............................[ SUCCESFUL ]"
sleep 1.5
else
echo -e "$red[-]-[zsh]..........................[ FAILED ]"
sleep 1.5
echo -e "$yellow[!][Installing Module zsh...]"
apt install zsh
fi
which pv > /dev/null 2>&1
if [ "$?" -eq "0" ]; then
echo -e "$green[+]-[pv]..............................[ SUCCESFUL ]"
sleep 1.5
else
echo -e "$red[-]-[pv]...........................[ FAILED ]"
sleep 1.5
echo -e "$yellow[!][Installing Module pv...]"
apt install pv
fi
which curl > /dev/null 2>&1
if [ "$?" -eq "0" ]; then
echo -e "$green[+]-[Curl]............................[ SUCCESFUL ]"
sleep 1.5
else
echo -e "$red[-]-[Curl].........................[ FAILED ]"
sleep 1.5
echo -e "$yellow[!]-[Installing Module Curl...]"
apt install curl
fi
which w3m > /dev/null 2>&1
if [ "$?" -eq "0" ]; then
echo -e "$green[+]-[w3m].............................[ SUCCESFUL ]"
sleep 1.5
else
echo -e "$red[-]-[w3m]..........................[ FAILED ]"
sleep 1.5
echo -e "$yellow[!]-[Installing Module w3m...]"
apt install w3m
fi
red='\e[1;31m'
default='\e[0m'
yellow='\e[0;33m'
orange='\e[38;5;166m'
green='\033[92m'
cd
cd
cd AllHuntingTools
cd Castom
cp ngrok /data/data/com.termux/files/home/
cd
cd
chmod +x ngrok
sleep 2
echo -e "$yellow[+]-[Ngrok Installed!..............[ INSTALLED ]"
sleep 1.5
fi
echo -e $yellow
echo -n [!] Installing Depencies...= ;
sleep 3 & while [ "$(ps a | awk '{print $1}' | grep $!)" ] ; do for X in '-' '\' '|' '/'; do echo -en "\b$X"; sleep 0.1; done; done
echo ""
apt-get install nodejs
npm install --global speed-test
apt install apache2
apt install openssl -y
python3 -m pip install rich
apt install python-dev -y
apt install python3 -y
apt-get install pip2
pip install --upgrade pip2
apt-get install termux-api
pkg install termux-api
pip2 install --upgrade pip
pip2 install passlib
pip install passlib
pip2 install progressbar
pip install progressbar
pip2 install future
pip install future
pip2 install colorama
python3 -m pip install smtp
pip install smtp
pip install flask
pip2 install flask_socketio
pip install flask_socketio
python3 -m pip install flask_socketio
python3 -m pip install flask_cors
pip2 install flask_cors
pip2 install mechanize
pip3 install rich