Skip to content

Commit e6496db

Browse files
committed
Fixes #3710
1 parent e6eeac5 commit e6496db

2 files changed

Lines changed: 3 additions & 3 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.3.5.140"
21+
VERSION = "1.3.5.141"
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -385,9 +385,9 @@ def processResponse(page, responseHeaders, code=None, status=None):
385385
if msg:
386386
logger.warning("parsed DBMS error message: '%s'" % msg.rstrip('.'))
387387

388-
rawResponse = "%s %s %s\n%s\n%s" % (_http_client.HTTPConnection._http_vsn_str, code or "", status or "", "".join(responseHeaders.headers), page)
389-
390388
if kb.identYwaf:
389+
rawResponse = "%s %s %s\n%s\n%s" % (_http_client.HTTPConnection._http_vsn_str, code or "", status or "", "".join(responseHeaders.headers if responseHeaders else []), page)
390+
391391
identYwaf.non_blind.clear()
392392
if identYwaf.non_blind_check(rawResponse, silent=True):
393393
for waf in identYwaf.non_blind:

0 commit comments

Comments
 (0)