-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathvppbasic.py
More file actions
108 lines (94 loc) · 2.71 KB
/
vppbasic.py
File metadata and controls
108 lines (94 loc) · 2.71 KB
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
#!/usr/bin/python3
import os
import time
import sys
os.system("clear")
print('''\033[91m
__ ______ ____ ____ _
\ \ / / _ \| _ \ | __ ) __ _ ___(_) ___
\ \ / /| |_) | |_) | | _ \ / _` / __| |/ __|
\ V / | __/| __/ | |_) | (_| \__ \ | (__
\_/ |_| |_| |____/ \__,_|___/_|\___|
''')
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 VPP Hacker | version : 2.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 ("""
subscribe VPP Hacker """)
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 |
| Subscribe Our YouTube Channel |
| Watch Ours Tutorials For Learn Ethical Hacking |''')
print("+-------------------------------------------------+")
input("\n\nPress the enter key to exit : ")