mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-25 19:13:48 +03:00
Patch for an Issue #429
This commit is contained in:
parent
33e9b3c451
commit
cce541cc33
|
@ -580,7 +580,7 @@ def _setBulkMultipleTargets():
|
|||
raise SqlmapFilePathException(errMsg)
|
||||
|
||||
for line in getFileItems(conf.bulkFile):
|
||||
if re.search(r"[^ ]+\?(.+)", line, re.I):
|
||||
if re.search(r"[^ ]+\?(.+)", line, re.I) or CUSTOM_INJECTION_MARK_CHAR in line:
|
||||
kb.targets.add((line.strip(), None, None, None))
|
||||
|
||||
def _findPageForms():
|
||||
|
|
Loading…
Reference in New Issue
Block a user