mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 08:22:15 +01:00
Fix for an Issue 'ValueError: Invalid IPv6 URL'
This commit is contained in:
parent
e18796dbe1
commit
a85a0e53de
1 changed files with 1 additions and 1 deletions
|
|
@ -592,7 +592,7 @@ def _setBulkMultipleTargets():
|
|||
raise SqlmapFilePathException(errMsg)
|
||||
|
||||
for line in getFileItems(conf.bulkFile):
|
||||
if re.search(r"[^ ]+\?(.+)", line, re.I) or CUSTOM_INJECTION_MARK_CHAR in line:
|
||||
if re.match(r"[^ ]+\?(.+)", line, re.I) or CUSTOM_INJECTION_MARK_CHAR in line:
|
||||
kb.targets.add((line.strip(), None, None, None))
|
||||
|
||||
def _findPageForms():
|
||||
|
|
|
|||
Loading…
Reference in a new issue