mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Minor just in case patch
This commit is contained in:
parent
ac68eed65d
commit
a6809e03ef
3 changed files with 4 additions and 4 deletions
|
|
@ -1417,7 +1417,7 @@ def parseTargetUrl():
|
|||
raise SqlmapGenericException(errMsg)
|
||||
|
||||
if not re.search(r"^http[s]*://", conf.url, re.I) and not re.search(r"^ws[s]*://", conf.url, re.I):
|
||||
if ":443/" in conf.url:
|
||||
if re.search(r":443\b", conf.url):
|
||||
conf.url = "https://%s" % conf.url
|
||||
else:
|
||||
conf.url = "http://%s" % conf.url
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue