From 4c5cb9e0d46a04a65ea29d09fdf0e68f7736f88b Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Fri, 27 Dec 2019 15:37:02 +0100 Subject: [PATCH] Subtle (sneaky) bug removed (related to #4051) - False or '' results with '' --- lib/core/common.py | 4 +++- lib/core/settings.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/core/common.py b/lib/core/common.py index b6e77c6f3..e88975f7f 100644 --- a/lib/core/common.py +++ b/lib/core/common.py @@ -1123,8 +1123,10 @@ def readInput(message, default=None, checkBatch=True, boolean=False): if boolean: retVal = retVal.strip().upper() == 'Y' + else: + retVal = retVal or "" - return retVal or "" + return retVal def setTechnique(technique): """ diff --git a/lib/core/settings.py b/lib/core/settings.py index 2f37b6388..2fcd63fca 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.12.31" +VERSION = "1.3.12.32" 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)