Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e18796d commit a85a0e5Copy full SHA for a85a0e5
1 file changed
lib/core/option.py
@@ -592,7 +592,7 @@ def _setBulkMultipleTargets():
592
raise SqlmapFilePathException(errMsg)
593
594
for line in getFileItems(conf.bulkFile):
595
- 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:
596
kb.targets.add((line.strip(), None, None, None))
597
598
def _findPageForms():
0 commit comments