Adding voting mechanism in heavy-jitter environment
Some checks are pending
/ build (macos-latest, 3.8) (push) Waiting to run
/ build (ubuntu-latest, pypy-2.7) (push) Waiting to run
/ build (windows-latest, 3.14) (push) Waiting to run

This commit is contained in:
Miroslav Štampar 2026-07-29 13:03:19 +02:00
parent e81a99c4f3
commit 5fb4b47378
3 changed files with 43 additions and 20 deletions

View file

@ -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

View file

@ -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)