From e1a04a82019bfa887e1530010fd1753fedbcc249 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Mon, 21 Mar 2022 14:33:48 +0100 Subject: [PATCH] Fixes #5044 --- lib/controller/controller.py | 2 +- lib/core/settings.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/controller/controller.py b/lib/controller/controller.py index 58bd28f07..c8ab57463 100644 --- a/lib/controller/controller.py +++ b/lib/controller/controller.py @@ -496,7 +496,7 @@ def start(): if skip: continue - if place not in conf.paramDict: + if place not in conf.paramDict or place not in conf.parameters: continue paramDict = conf.paramDict[place] diff --git a/lib/core/settings.py b/lib/core/settings.py index b159920be..0caa633da 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -20,7 +20,7 @@ from thirdparty import six from thirdparty.six import unichr as _unichr # sqlmap version (...) -VERSION = "1.6.3.15" +VERSION = "1.6.3.16" 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)