Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5916bc2

Browse files
committed
Minor update
1 parent 2159944 commit 5916bc2

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from thirdparty.six import unichr as _unichr
1919

2020
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
21-
VERSION = "1.5.2.23"
21+
VERSION = "1.5.2.24"
2222
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2323
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2424
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

lib/request/connect.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -750,7 +750,9 @@ class _(dict):
750750
if ex.code not in (conf.ignoreCode or []):
751751
if ex.code == _http_client.UNAUTHORIZED:
752752
errMsg = "not authorized, try to provide right HTTP "
753-
errMsg += "authentication type and valid credentials (%d)" % code
753+
errMsg += "authentication type and valid credentials (%d). " % code
754+
errMsg += "If this is intended, try to rerun by providing "
755+
errMsg += "a valid value for option '--ignore-code'"
754756
raise SqlmapConnectionException(errMsg)
755757
elif chunked and ex.code in (_http_client.METHOD_NOT_ALLOWED, _http_client.LENGTH_REQUIRED):
756758
warnMsg = "turning off HTTP chunked transfer encoding "

0 commit comments

Comments
 (0)