Skip to content

Commit 92054b5

Browse files
committed
1 parent 2f3801b commit 92054b5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

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.12"
21+
VERSION = "1.4.12.13"
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" % (getUnicode(_http_client.HTTPConnection._http_vsn_str), getUnicode(code or ""), getUnicode(status or ""), getUnicode("".join(responseHeaders.headers if responseHeaders else [])), getUnicode(page))
398+
rawResponse = "%s %s %s\n%s\n%s" % (_http_client.HTTPConnection._http_vsn_str, code or "", status or "", "".join(getUnicode(responseHeaders.headers if responseHeaders else [])), page)
399399

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

lib/request/connect.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -707,7 +707,7 @@ class _(dict):
707707
responseMsg += "[#%d] (%s %s):\r\n" % (threadData.lastRequestUID, code, status)
708708

709709
if responseHeaders:
710-
logHeaders = getUnicode("".join(responseHeaders.headers).strip())
710+
logHeaders = "".join(getUnicode(responseHeaders.headers)).strip()
711711

712712
logHTTPTraffic(requestMsg, "%s%s\r\n\r\n%s" % (responseMsg, logHeaders, (page or "")[:MAX_CONNECTION_READ_SIZE]), start, time.time())
713713

@@ -887,7 +887,7 @@ class _(dict):
887887
responseMsg += "[#%d] (%s %s):\r\n" % (threadData.lastRequestUID, code, status)
888888

889889
if responseHeaders:
890-
logHeaders = getUnicode("".join(responseHeaders.headers).strip())
890+
logHeaders = "".join(getUnicode(responseHeaders.headers)).strip()
891891

892892
logHTTPTraffic(requestMsg, "%s%s\r\n\r\n%s" % (responseMsg, logHeaders, (page or "")[:MAX_CONNECTION_READ_SIZE]), start, time.time())
893893

0 commit comments

Comments
 (0)