-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTools.py
188 lines (178 loc) · 9.26 KB
/
Tools.py
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
#!/usr/local/bin/python
# code by Ari
# xploit-db
import os, sys
def menu():
print("""
/$$ /$$ /$$ /$$ /$$
| $$ |__/ | $$ | $$| $$
/$$$$$$ /$$$$$$ /$$$$$$ /$$$$$$/$$$$ /$$ /$$ /$$ /$$ /$$ /$$$$$$$ /$$$$$$$ /$$$$$$ /$$$$$$ | $$| $$ /$$$$$$ /$$$$$$
|_ $$_/ /$$__ $$ /$$__ $$| $$_ $$_ $$| $$ | $$| $$ /$$/ | $$| $$__ $$ /$$_____/|_ $$_/ |____ $$| $$| $$ /$$__ $$ /$$__ $$
| $$ | $$$$$$$$| $$ \__/| $$ \ $$ \ $$| $$ | $$ \ $$$$/ | $$| $$ \ $$| $$$$$$ | $$ /$$$$$$$| $$| $$| $$$$$$$$| $$ \__/
| $$ /$$| $$_____/| $$ | $$ | $$ | $$| $$ | $$ >$$ $$ | $$| $$ | $$ \____ $$ | $$ /$$ /$$__ $$| $$| $$| $$_____/| $$
| $$$$/| $$$$$$$| $$ | $$ | $$ | $$| $$$$$$/ /$$/\ $$ | $$| $$ | $$ /$$$$$$$/ | $$$$/| $$$$$$$| $$| $$| $$$$$$$| $$
\___/ \_______/|__/ |__/ |__/ |__/ \______/ |__/ \__/ |__/|__/ |__/|_______/ \___/ \_______/|__/|__/ \_______/|__/
V.1.0
========================================
1. THC-Hydra install
2. Metasploit install
3. Nethunter install
4. Ubuntu install
5. Fedora install
6. Beef-Xss install
7. Nmap install
8. Xerosploit install
9. Dirhunt install
10. Wapiti install
11. Shodan install
-----------------------------------------
0. Exit
==========================================
""")
def main():
while True:
try:
jancok = raw_input("install~#: ")
if jancok == "1":
os.system("cd /data/data/com.termux/files/home")
os.system("pkg update -y")
os.system("pkg install -y hydra")
os.system("cd /data/data/com.termux/files/home")
print("====================================")
print("[+] THC-Hydra success install")
print("====================================")
menu()
main()
elif jancok == "2":
os.system("pkg install -y wget")
os.system("cd /data/data/com.termux/files/home && wget https://Auxilus.github.io/metasploit.sh")
os.system("cd /data/data/com.termux/files/home && bash metasploit.sh")
os.system("cd /data/data/com.termux/files/home && cd metasploit-framework")
os.system("cd /data/data/com.termux/files/home && gem install bundle --pre")
os.system("cd /data/data/com.termux/files/home && bundle config build.nokogiri --use-system-libraries")
os.system("cd /data/data/com.termux/files/home/metasploit-framework && bundle install")
os.system("cd /data/data/com.termux/files/home/metasploit-framework && bundle update nokogiri")
os.system("cd /data/data/com.termux/files/home/")
print("====================================")
print("[+] Metasploit success install")
print("====================================")
main()
elif jancok == "3":
os.system("pkg update -y")
os.system("cd /data/data/com.termux/files/home && git clone https://github.com/Hax4us/Nethunter-In-Termux.git")
os.system("cd /data/data/com.termux/files/home && cd Nethunter-In-Termux && chmod +x kalinethunter")
os.system("cd /data/data/com.termux/files/home")
print("====================================")
print("[+] Nethunter success install")
print("====================================")
menu()
main()
elif jancok == "4":
os.system("pkg update -y")
os.system("pkg install -y git")
os.system("cd /data/data/com.termux/files/home && git clone https://github.com/Neo-Oli/termux-ubuntu.git")
os.system("cd /data/data/com.termux/files/home && cd termux-ubuntu && bash ubuntu.sh")
print("====================================")
print("[+] Ubuntu success install")
print("====================================")
menu()
main()
elif jancok == "5":
os.system("pkg update -y")
os.system("pkg install -y git")
os.system("pkg install -y wget")
os.system("apt update && apt install wget -y && /data/data/com.termux/files/usr/bin/wget https://raw.githubusercontent.com/nmilosev/termux-fedora/master/termux-fedora.sh")
print("====================================")
print("[+] Fedora success install")
print("====================================")
menu()
main()
elif jancok == "6":
os.system("cd /data/data/com.termux/files/home")
os.system("pkg update -y")
os.system("pkg install nano")
os.system("pkg install python -y")
os.system("pkg install python2 -y")
os.system("pkg install cat -y")
os.system('mkdir -p $PREFIX/etc/apt/sources.list.d && printf "deb [trusted=yes] https://hax4us.github.io/termux-tools/ extras main" > $PREFIX/etc/apt/sources.list.d/hax4us.list')
os.system("pkg update")
os.system("pkg install beef-xss")
os.system("cd /data/data/com.termux/files/home")
print("=============================")
print("[+] Beef-Xss success install")
print("=============================")
menu()
main()
elif jancok == "7":
os.system("cd /data/data/com.termux/files/home")
os.system("pkg update -y")
os.system("pkg install -y nmap")
os.system("cd /data/data/com.termux/files/home")
print("===========================")
print("[+] Nmap success install")
print("===========================")
menu()
main()
elif jancok == "8":
os.system("cd /data/data/com.termux/files/home")
os.system("pkg update -y")
os.system('mkdir -p $PREFIX/etc/apt/sources.list.d && printf "deb [trusted=yes] https://hax4us.github.io/termux-tools/ extras main" > $PREFIX/etc/apt/sources.list.d/hax4us.list')
os.system("pkg update")
os.system("cd /data/data/com.termux/files/home")
os.system("pkg install xerosploit")
print("==========================")
print("[+] Xerosploit success install")
print("==========================")
menu()
main()
elif jancok == "9":
os.system("cd /data/data/com.termux/files/home")
os.system("pkg update -y")
os.system("pkg install python -y")
os.system("pkg install python pip")
os.system("pkg install --upgrade pip")
os.system("pip install dirhunt")
print("===========================")
print("[+] Dirhunt success install")
print("===========================")
menu()
main()
elif jancok == "10":
os.system("cd /data/data/com.termux/files/home")
os.system("pkg update -y")
os.system("pkg install python -y")
os.system("pkg install python pip")
os.system("pkg install --upgrade pip")
os.system("pip install wapiti3")
print("============================")
print("[+] wapiti success install ")
print("Usage: wapiti -h")
print("===========================")
menu()
main()
elif jancok == "11":
os.system("cd /data/data/com.termux/files/home")
os.system("pkg update -y")
os.system("pkg install python -y")
os.system("pkg install python pip")
os.system("pkg install --upgrade pip")
os.system("pip install shodan")
print("============================")
print("[+] Shodan success install ")
print("============================")
menu()
main()
elif jancok == "0":
time.sleep(2)
print("EXITS...")
exit()
else:
print "Wrong Command => ", jancok
main()
except(KeyboardInterrupt):
print("\n[*] (Ctrl + C ) Detected, Trying To Exit ..." )
print("[*] Thank You For Using Termux installer)" )
exit()
if __name__ == "__main__":
menu()
main()