From b6206692e08bc2c2083c55f65e8373e9dc55ce0d Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Tue, 8 Sep 2015 11:53:29 +0200 Subject: [PATCH] Fixes #1392 --- lib/core/option.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/option.py b/lib/core/option.py index 5ebd228bd..ebef4b311 100644 --- a/lib/core/option.py +++ b/lib/core/option.py @@ -638,7 +638,7 @@ def _setBulkMultipleTargets(): for line in getFileItems(conf.bulkFile): if re.match(r"[^ ]+\?(.+)", line, re.I) or CUSTOM_INJECTION_MARK_CHAR in line: found = True - kb.targets.add((line.strip(), None, None, None, None)) + kb.targets.add((line.strip(), conf.method, conf.data, conf.cookie, None)) if not found and not conf.forms and not conf.crawlDepth: warnMsg = "no usable links found (with GET parameters)"