From dd55d97f7757d1cd60489acde531d9360df76106 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Mon, 7 Mar 2022 23:10:39 +0100 Subject: [PATCH] Minor updates --- data/html/index.html | 2 +- data/xml/banner/server.xml | 18 +++++++++++++++--- lib/core/settings.py | 4 ++-- sqlmap.py | 6 +++--- 4 files changed, 21 insertions(+), 9 deletions(-) diff --git a/data/html/index.html b/data/html/index.html index a2d4dfc44..576f2763b 100644 --- a/data/html/index.html +++ b/data/html/index.html @@ -1,6 +1,6 @@ - + diff --git a/data/xml/banner/server.xml b/data/xml/banner/server.xml index 5b49ab742..1122d822c 100644 --- a/data/xml/banner/server.xml +++ b/data/xml/banner/server.xml @@ -3,7 +3,7 @@ @@ -97,6 +97,10 @@ + + + + @@ -444,8 +448,12 @@ + + + + - + @@ -764,7 +772,7 @@ - + @@ -869,6 +877,10 @@ + + + + diff --git a/lib/core/settings.py b/lib/core/settings.py index 0fc31362e..336b1eba5 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.9" +VERSION = "1.6.3.10" 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) @@ -698,7 +698,7 @@ DEFAULT_COOKIE_DELIMITER = ';' FORCE_COOKIE_EXPIRATION_TIME = "9999999999" # Github OAuth token used for creating an automatic Issue for unhandled exceptions -GITHUB_REPORT_OAUTH_TOKEN = "NTYzYjhmZWJjYzc0Njg2ODJhNzhmNDg1YzM0YzlkYjk3N2JiMzE3Nw" +GITHUB_REPORT_OAUTH_TOKEN = "Z2hwX2FOMDdpUWx0NDg0ak85QW4yU1pSQjhtazhBaVVlRzNaMUxmMA" # Skip unforced HashDB flush requests below the threshold number of cached items HASHDB_FLUSH_THRESHOLD = 32 diff --git a/sqlmap.py b/sqlmap.py index 7fd96b622..d2944ad25 100755 --- a/sqlmap.py +++ b/sqlmap.py @@ -383,17 +383,17 @@ def main(): raise SystemExit elif all(_ in excMsg for _ in ("pymysql", "configparser")): - errMsg = "wrong initialization of pymsql detected (using Python3 dependencies)" + errMsg = "wrong initialization of 'pymsql' detected (using Python3 dependencies)" logger.critical(errMsg) raise SystemExit elif all(_ in excMsg for _ in ("ntlm", "socket.error, err", "SyntaxError")): - errMsg = "wrong initialization of python-ntlm detected (using Python2 syntax)" + errMsg = "wrong initialization of 'python-ntlm' detected (using Python2 syntax)" logger.critical(errMsg) raise SystemExit elif all(_ in excMsg for _ in ("drda", "to_bytes")): - errMsg = "wrong initialization of drda detected (using Python3 syntax)" + errMsg = "wrong initialization of 'drda' detected (using Python3 syntax)" logger.critical(errMsg) raise SystemExit