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

Skip to content

Commit 5108c2d

Browse files
committed
Minor update regarding #4312
1 parent 603d602 commit 5108c2d

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.8.13"
21+
VERSION = "1.4.8.14"
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
@@ -394,7 +394,7 @@ def processResponse(page, responseHeaders, code=None, status=None):
394394
if msg:
395395
logger.warning("parsed DBMS error message: '%s'" % msg.rstrip('.'))
396396

397-
if kb.processResponseCounter < IDENTYWAF_PARSE_LIMIT:
397+
if not conf.skipWaf and kb.processResponseCounter < IDENTYWAF_PARSE_LIMIT:
398398
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)
399399

400400
identYwaf.non_blind.clear()

0 commit comments

Comments
 (0)