-
Notifications
You must be signed in to change notification settings - Fork 0
/
update.py
52 lines (50 loc) · 2.24 KB
/
update.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
import os
banner1 = '''
##### #####
# # ##### #### #### ##### # # # #
# # # # # # # # # # #
##### # # # # # # # # # #####
# ##### # # # # # # # #
# # # # # # # # # # # #
####### # # #### #### # ## #####
'''
banner2='''
e e eeeee eeeee eeeee eeeee eeee e e eeeee e e eeeee e e eeeee eeeee eeee eeeeeee
8 8 8 8 8 8 8 8 8 8 8 8 8 88 8 8 8 " 8 8 8 " 8 8 8 8 8
8e 8 8eee8 8e 8 8eee8 8e 8eee 8eeee8 8 8 8e 8 8eeee 8eeee8 8eeee 8e 8eee 8e 8 8
88 8 88 88 8 88 8 88 88 88 8 8 88 8 88 88 88 88 88 88 8 8
88ee8 88 88ee8 88 8 88 88ee 88 8eee8 88ee8 8ee88 88 8ee88 88 88ee 88 8 8
'''
os.system('clear')
print(banner1)
#start program
print("1)update termux")
print("2)exit")
user = int(input("==>"))
if user == 1:
print(banner2)
os.system('pkg update -y')
os.system('pkg upgrade -y')
os.system('pkg install python -y')
os.system('pkg install python-pip -y')
os.system('pkg install wget -y')
os.system('pkg install fish -y')
os.system('pkg install git -y')
os.system('pkg install nmap -y')
os.system('pkg install bash -y')
os.system('pkg install nano -y')
os.system('pkg install figlet -y')
os.system('pkg install tor -y')
os.system('pkg install openssl -y')
os.system('pkg install openssl-tool -y')
os.system('pkg install toilet -y')
os.system('pkg install net-tools -y')
os.system('pkg install goaccess -y')
os.system('pkg install golang -y')
os.system('pkg install tar -y')
os.system('pip install requests ')
os.system('pip install termcolor')
elif user==2:
os.system('exit')
print('exit the program.........')
print("Thanks for using thi's tools")