mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-06-09 17:51:33 +00:00
Fixes #4408
This commit is contained in:
parent
0ff3b1ce70
commit
227a23f091
2 changed files with 2 additions and 2 deletions
|
|
@ -463,7 +463,7 @@ def _setBulkMultipleTargets():
|
|||
if conf.scope and not re.search(conf.scope, line, re.I):
|
||||
continue
|
||||
|
||||
if re.match(r"[^ ]+\?(.+)", line, re.I) or kb.customInjectionMark in line:
|
||||
if re.match(r"[^ ]+\?(.+)", line, re.I) or kb.customInjectionMark in line or conf.data:
|
||||
found = True
|
||||
kb.targets.add((line.strip(), conf.method, conf.data, conf.cookie, None))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue