mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Adding voting mechanism in heavy-jitter environment
This commit is contained in:
parent
e81a99c4f3
commit
5fb4b47378
3 changed files with 43 additions and 20 deletions
|
|
@ -2311,6 +2311,9 @@ def _setKnowledgeBaseAttributes(flushAll=True):
|
|||
# calibrated TRUE/FALSE reference bodies for the boolean same-HTTP-code anomaly guard (inference.py)
|
||||
kb.trueTemplate = None
|
||||
kb.falseTemplate = None
|
||||
|
||||
# latched once network jitter is observed, so character validation escalates to a majority vote
|
||||
kb.jitterSeen = False
|
||||
kb.pageStable = None
|
||||
kb.pageStructurallyStable = None
|
||||
kb.partRun = None
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ from lib.core.enums import OS
|
|||
from thirdparty import six
|
||||
|
||||
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
|
||||
VERSION = "1.10.7.244"
|
||||
VERSION = "1.10.7.245"
|
||||
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
|
||||
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
|
||||
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue