Skip to content

Commit 3f0ffaf

Browse files
committed
Minor update for #4888
1 parent 953a51c commit 3f0ffaf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/controller/checks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,7 @@ def genCmpPayload():
509509
falseRawResponse = "%s%s" % (falseHeaders, falsePage)
510510

511511
# Checking if there is difference between current FALSE, original and heuristics page (i.e. not used parameter)
512-
if not any((kb.negativeLogic, conf.string, conf.notString)):
512+
if not any((kb.negativeLogic, conf.string, conf.notString, conf.code)):
513513
try:
514514
ratio = 1.0
515515
seqMatcher = getCurrentThreadData().seqMatcher

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from thirdparty.six import unichr as _unichr
2121

2222
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23-
VERSION = "1.5.11.8"
23+
VERSION = "1.5.11.9"
2424
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2525
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2626
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

0 commit comments

Comments
 (0)