-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvsploit.py
More file actions
58 lines (53 loc) · 2.07 KB
/
vsploit.py
File metadata and controls
58 lines (53 loc) · 2.07 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
import os
import time
import sys
print("\033[92m ")
os.system("clear")
os.system("figlet MSFInstall")
def slowprint(s):
for c in s + '\n' :
sys.stdout.write(c)
sys.stdout.flush()
time.sleep(5.9 / 100)
print("\033[93m+------------------------------------------------+")
slowprint("| Install MSF Without No Errors |")
print("+------------------------------------------------+")
print('''\033[95m
[*] Unstable Repo
[*] x11 Repo
[*] Metasploit Framework''')
print("\033[91m ")
print("*********************************************")
slowprint("| [!] Note [!] |")
print("| |")
slowprint("[!] Do Not Install Any Bash tool or script |")
slowprint("[!] If You Install Bash Script |")
slowprint("[!] You Face Too Many Erros |")
slowprint("[!] This is best way to Install MSF |")
slowprint("[!] If you got error then |")
slowprint("[!] contact Me on Instagram: VPP Hacker |")
slowprint("[!] Msf Need 600mb Space and Data first time|")
print("*********************************************")
slowprint('''\033[96m
[01] Install
[02] Exit ''')
print(" ")
z = input("\033[97mEnter Your Choice : ")
if (z == 1) :
os.system("clear")
slowprint("[#] Collecting Data................................")
slowprint("[#] Installing ....................................")
os.system("apt update")
os.system("apt upgrade -y")
os.system("figlet Repo Installing")
os.system("apt install unstable-repo -y")
os.system("apt install x11-repo -y")
os.system("figlet Complete")
os.system("figlet MSF Installing")
os.system("apt install metasploit -y")
os.system("figlet MSF Install")
slowprint("[*]Starting Metasploit Framework Console..............")
os.system("msfconsole")
if (z == 2) :
slowprint("\033[93mSee You Next Time")
sys.exit()