diff --git a/lib/core/settings.py b/lib/core/settings.py index d345b9d6c..0aecc472c 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.2.22" +VERSION = "1.4.2.23" 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) diff --git a/lib/request/connect.py b/lib/request/connect.py index a5eff1103..7b93a8705 100644 --- a/lib/request/connect.py +++ b/lib/request/connect.py @@ -584,15 +584,14 @@ class Connect(object): refresh = extractRegexResult(JAVASCRIPT_HREF_REGEX, page) if refresh: - debugMsg = "got Javascript redirect request" + debugMsg = "got Javascript redirect logic" logger.debug(debugMsg) if refresh: if kb.alwaysRefresh is None: - msg = "got a refresh request " + msg = "got a refresh intent " msg += "(redirect like response common to login pages) to '%s'. " % refresh - msg += "Do you want to apply the refresh " - msg += "from now on (or stay on the original page)? [Y/n]" + msg += "Do you want to apply it from now on? [Y/n]" kb.alwaysRefresh = readInput(msg, default='Y', boolean=True)