From eec9cca85b37be4cc96eb70c442a9cee1df5fbb3 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Tue, 29 Oct 2019 13:52:11 +0100 Subject: [PATCH] Minor update --- lib/core/option.py | 2 +- lib/core/settings.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/core/option.py b/lib/core/option.py index c9a12de98..3a5bc2cc4 100644 --- a/lib/core/option.py +++ b/lib/core/option.py @@ -1228,7 +1228,7 @@ def _setHTTPAuthentication(): elif not conf.authType and conf.authCred: errMsg = "you specified the HTTP authentication credentials, " - errMsg += "but did not provide the type" + errMsg += "but did not provide the type (e.g. --auth-type=\"basic\")" raise SqlmapSyntaxException(errMsg) elif (conf.authType or "").lower() not in (AUTH_TYPE.BASIC, AUTH_TYPE.DIGEST, AUTH_TYPE.NTLM, AUTH_TYPE.PKI): diff --git a/lib/core/settings.py b/lib/core/settings.py index 36668727b..acaa50292 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.10.27" +VERSION = "1.3.10.28" 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)