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

Skip to content

Commit ccf9e7d

Browse files
committed
Another patch regarding #4530
1 parent ebd2a94 commit ccf9e7d

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

lib/core/settings.py

Lines changed: 2 additions & 2 deletions
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.1.15"
21+
VERSION = "1.5.1.16"
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)
@@ -757,7 +757,7 @@
757757
# For preventing MemoryError exceptions (caused when using large sequences in difflib.SequenceMatcher)
758758
MAX_DIFFLIB_SEQUENCE_LENGTH = 10 * 1024 * 1024
759759

760-
# Maximum size used per page content in getHeuristicCharEncoding()
760+
# Maximum size used per page content in getHeuristicCharEncoding() and identYwaf
761761
MAX_CHAR_HEURISTICS_SIZE = 10000
762762

763763
# Maximum (multi-threaded) length of entry in bisection algorithm

lib/request/basic.py

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

398398
if not conf.skipWaf and kb.processResponseCounter < IDENTYWAF_PARSE_LIMIT:
399-
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)
399+
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[:MAX_CHAR_HEURISTICS_SIZE])
400400

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

0 commit comments

Comments
 (0)