-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathb-pack.py
113 lines (99 loc) · 3.2 KB
/
b-pack.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
#!/usr/bin/python3
import os
import time
import sys
os.system("clear")
print('''\033[91m
┌───────────────────────────────────────────────┐
│ _______ _____ _____ _ __ │
│ |__ __| | __ \ /\ / ____| |/ / │
│ | |______| |__) / \ | | | ' / │
│ | |______| ___/ /\ \| | | < │
│ | | | | / ____ \ |____| . \ │
│ |_| |_| /_/ \_\_____|_|\_\ │
│ │
│ │
└───────────────────────────────────────────────┘
''')
def slowprint(s):
for c in s + '\n' :
sys.stdout.write(c)
sys.stdout.flush()
time.sleep(5. / 100)
print (''' \033[95m
+--------------------------------------+
| This Tool Install All Basic Packages |
+--------------------------------------+
| Coded By • Achik | version : 3.0 |
+--------------------------------------+''')
slowprint(''' \033[93m
[01] python
[02] python2
[03] python-dev
[04] python3
[05] php
[06] java
[07] git
[08] perl
[09] bash
[10] nano
[11] curl
[12] openssl
[13] openssh
[14] wget
[15] clang
[16] nmap
[17] w3m
[18] hydra
[19] ruby
[20] macchanger
[21] host
[22] dnsutils
[23] coreutils ''')
slowprint('''\033[96m
This Command for access Storage in Termux
[00] termux-setup-storage''')
print (" ")
choice = input("\033[93mDo You Want to Install All Packages [y/n] : ")
if choice == 'n' : sys.exit()
if choice == 'y' : os.system ("apt update")
os.system ("atp upgrade -y")
os.system ("apt install python -y")
os.system ("apt install python2 -y")
os.system ("apt install php -y")
os.system ("apt install python-dev -y")
os.system ("apt install python3 -y")
os.system ("apt install java -y")
os.system ("apt install git -y")
os.system ("apt install perl -y")
os.system ("apt install bash")
print ("wait for second and start hacking")
os.system ("apt install nano -y")
os.system ("apt install curl -y")
os.system ("apt install openssl -y")
os.system ("apt install openssh -y")
os.system ("apt install wget -y")
os.system ("apt install clang -y")
os.system ("apt install nmap -y")
os.system ("apt install w3m -y")
os.system ("apt install hydra -y")
print ("""
visit termuxcommands.com """)
os.system ("apt install ruby -y")
os.system ("apt install macchanger -y")
os.system ("apt install host -y")
os.system ("apt install dnsutils -y")
os.system ("apt install coreutils -y")
print ("Allow the Button For Access the Storage in Termux")
os.system ("termux-setup-storage")
def slowprint(s):
for c in s + '\n' :
sys.stdout.write(c)
sys.stdout.flush()
time.sleep(8. / 100)
print("\033[95m+-------------------------------------------------+")
slowprint('''\033[95m| Welcome To Hackers World |
| visit termuxcommands.com |
| Watch Ours Tutorials For Learn Ethical Hacking |''')
print("+-------------------------------------------------+")
input("\n\nPress the enter key to exit : ")