mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-07-10 18:43:07 +00:00
Fixes CI/CD error
This commit is contained in:
parent
fd009027f7
commit
8db71f4d67
2 changed files with 2 additions and 2 deletions
|
|
@ -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.44"
|
||||
VERSION = "1.10.7.45"
|
||||
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)
|
||||
|
|
|
|||
|
|
@ -132,7 +132,7 @@ def _comparison(page, headers, code, getRatioValue, pageLength):
|
|||
page = removeDynamicContent(page)
|
||||
if threadData.lastPageTemplate != kb.pageTemplate:
|
||||
threadData.lastPageTemplateCleaned = removeDynamicContent(kb.pageTemplate)
|
||||
# Same template-identity memoization for the structure-aware projections (§below): the
|
||||
# Same template-identity memoization for the structure-aware projections (see below): the
|
||||
# template is constant across an extraction, so it must not be re-parsed/re-tokenized on
|
||||
# every inference request - only seq2 (from the live page) is recomputed per response
|
||||
threadData.lastPageTemplateJsonMinimized = jsonMinimize(kb.pageTemplate)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue