-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmain.py
More file actions
48 lines (34 loc) · 810 Bytes
/
main.py
File metadata and controls
48 lines (34 loc) · 810 Bytes
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
#this is version 2
from srcs import src
from srcs import banner
from srcs import port
from srcs import dos
from colorama import Fore
import socket
src.setup()
banner.banner()
command = input(Fore.BLUE + """
╭┈───────WEBSITE-BUG version:2.0 BY:DEV7KNIGHT
╰┈➤ """)
if command == "1":
src.weebTester()
elif command == "2":
src.htmlSteal()
elif command == "3": #fixing
src.webClonner()
elif command == "4":
src.headerPrinter()
elif command == "5":
dos.Dos()
elif command == "6": #port scanner
port.portScanner()
elif command == "7":
src.subdomain()
elif command == "8":
src.subdirectory()
elif command == "9":
src.Adminpanel()
elif command == "10": #crawler
src.crawler()
elif command == "11":
print("BYE!")