From 198ceb8ba119a34159b1b70e802082d76e0a3c0c Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Fri, 19 Jul 2019 12:24:34 +0200 Subject: [PATCH] Minor update regarding the #3834 --- lib/core/option.py | 2 ++ lib/core/settings.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/core/option.py b/lib/core/option.py index 7fc708e28..8fea7aa5f 100644 --- a/lib/core/option.py +++ b/lib/core/option.py @@ -1591,6 +1591,8 @@ def _cleanupOptions(): left, right = part.split('=', 1) conf.rParam.append(left) kb.randomPool[left] = filterNone(_.strip() for _ in right.split(',')) + else: + conf.rParam.append(part) else: conf.rParam = conf.rParam.replace(" ", "") conf.rParam = re.split(PARAMETER_SPLITTING_REGEX, conf.rParam) diff --git a/lib/core/settings.py b/lib/core/settings.py index 5236846d9..308af2415 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.3.7.37" +VERSION = "1.3.7.38" 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)