From 227a23f091da9505ff97ee3dd5c77fe8f767b7b4 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Thu, 29 Oct 2020 12:33:12 +0100 Subject: [PATCH] Fixes #4408 --- lib/core/option.py | 2 +- lib/core/settings.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/core/option.py b/lib/core/option.py index 222e2aa3c..4afb109c7 100644 --- a/lib/core/option.py +++ b/lib/core/option.py @@ -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)) diff --git a/lib/core/settings.py b/lib/core/settings.py index 4db5996fc..04f5b6142 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -18,7 +18,7 @@ from lib.core.enums import OS from thirdparty.six import unichr as _unichr # sqlmap version (...) -VERSION = "1.4.10.26" +VERSION = "1.4.10.27" TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable" TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34} VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)