diff --git a/data/xml/banner/mysql.xml b/data/xml/banner/mysql.xml index b637ebb92..863764807 100644 --- a/data/xml/banner/mysql.xml +++ b/data/xml/banner/mysql.xml @@ -1,5 +1,10 @@ + + @@ -36,19 +41,27 @@ - + - + - + - + + + + + + + + + diff --git a/lib/core/option.py b/lib/core/option.py index 59e143c8f..f2ca5e871 100644 --- a/lib/core/option.py +++ b/lib/core/option.py @@ -1273,8 +1273,8 @@ def _setHTTPAuthentication(): from ntlm import HTTPNtlmAuthHandler except ImportError: errMsg = "sqlmap requires Python NTLM third-party library " - errMsg += "in order to authenticate via NTLM, " - errMsg += "https://github.com/mullender/python-ntlm" + errMsg += "in order to authenticate via NTLM. Download from " + errMsg += "'https://github.com/mullender/python-ntlm'" raise SqlmapMissingDependence(errMsg) authHandler = HTTPNtlmAuthHandler.HTTPNtlmAuthHandler(kb.passwordMgr) diff --git a/lib/core/settings.py b/lib/core/settings.py index 5c4f4f83e..088a5917f 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.9.2" +VERSION = "1.3.9.3" 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)