Fixing some wrong ptype values in boundaries.xml

This commit is contained in:
Miroslav Štampar 2026-07-20 11:44:50 +02:00
parent adc43552d6
commit b0408f1bd8
2 changed files with 4 additions and 4 deletions

View file

@ -346,7 +346,7 @@ Formats:
<level>5</level>
<clause>9</clause>
<where>1,2</where>
<ptype>2</ptype>
<ptype>4</ptype>
<prefix>") WHERE [RANDNUM]=[RANDNUM]</prefix>
<suffix>[GENERIC_SQL_COMMENT]</suffix>
</boundary>
@ -457,7 +457,7 @@ Formats:
<level>5</level>
<clause>1</clause>
<where>1,2</where>
<ptype>2</ptype>
<ptype>4</ptype>
<prefix>")) AS [RANDSTR] WHERE [RANDNUM]=[RANDNUM]</prefix>
<suffix>[GENERIC_SQL_COMMENT]</suffix>
</boundary>
@ -550,7 +550,7 @@ Formats:
<level>5</level>
<clause>7</clause>
<where>1</where>
<ptype>3</ptype>
<ptype>6</ptype>
<prefix> [RANDSTR1],</prefix>
<suffix> [RANDSTR2]</suffix>
</boundary>

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.146"
VERSION = "1.10.7.147"
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)