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

Skip to content

Commit 13e3631

Browse files
committed
Fixes #4453
1 parent be0f7a9 commit 13e3631

2 files changed

Lines changed: 2 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.4.12.5"
21+
VERSION = "1.4.12.6"
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/basic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ def processResponse(page, responseHeaders, code=None, status=None):
395395
logger.warning("parsed DBMS error message: '%s'" % msg.rstrip('.'))
396396

397397
if not conf.skipWaf and kb.processResponseCounter < IDENTYWAF_PARSE_LIMIT:
398-
rawResponse = "%s %s %s\n%s\n%s" % (_http_client.HTTPConnection._http_vsn_str, code or "", status or "", getUnicode("".join(responseHeaders.headers if responseHeaders else [])), page)
398+
rawResponse = "%s %s %s\n%s\n%s" % (getUnicode(_http_client.HTTPConnection._http_vsn_str), getUnicode(code or ""), getUnicode(status or ""), getUnicode("".join(responseHeaders.headers if responseHeaders else [])), getUnicode(page))
399399

400400
identYwaf.non_blind.clear()
401401
if identYwaf.non_blind_check(rawResponse, silent=True):

0 commit comments

Comments
 (0)