forked from A-Unix/PhoneSploit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtermux.sh
More file actions
39 lines (23 loc) · 635 Bytes
/
Copy pathtermux.sh
File metadata and controls
39 lines (23 loc) · 635 Bytes
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
#PhoneSploit Installation Script
#Check If ADB & Fastboot Binaries Available
if [ -e "$PREFIX/bin/adb" ] ; then
apt install python2 -y
pip2 install colorama
echo -e "\e[1;36m Dependencies Are Installed \e[0m"
sleep 1
echo -e "\e[1;32m Starting Tool....\e[0m"
sleep 3
python2 main_linux.py
else
git clone https://github.com/MasterDevX/Termux-ADB
cd Termux-ADB
bash InstallTools.sh
apt install python2 -y
cd ..
pip2 install colorama
echo -e "\e[1;36m Dependencies Are Installed \e[0m"
sleep 1
echo -e "\e[1;32m Starting Tool....\e[0m"
sleep 3
python2 main_linux.py
fi