mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-06-09 17:51:33 +00:00
Couple of minor patches
This commit is contained in:
parent
e0ad99d534
commit
d9e540e8b2
5 changed files with 28 additions and 14 deletions
|
|
@ -425,6 +425,9 @@ def _setBulkMultipleTargets():
|
|||
|
||||
found = False
|
||||
for line in getFileItems(conf.bulkFile):
|
||||
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:
|
||||
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