-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathwebvuln.py
More file actions
32 lines (31 loc) · 748 Bytes
/
Copy pathwebvuln.py
File metadata and controls
32 lines (31 loc) · 748 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
from clickjack import ClickJacking
from hostheader import HostHeader
from subdomain import fuzz
from reverseip import ReverseIP
cyan="\033[1;36;40m"
green="\033[1;32;40m"
red="\033[1;31;40m"
Y = '\033[1;33;40m'
def Webvuln():
inp=(input("Vulnerability >> "))
if(inp == '1'):
ClickJacking()
elif(inp=='2'):
HostHeader()
elif(inp=='3'):
fuzz()
elif(inp=='4'):
ReverseIP()
elif(inp=='help'):
print(green+"""
1.ClickJacking,
2.Host header injection.
3.Subdomain Enumeration.
4.Reverse IP
""")
else:
print(red+"Invalid choice")
while True:
Webvuln()
if __name__=="__main__":
Webvuln()