Skip to content

Commit 51908e6

Browse files
committed
Minor patch related to the #5585
1 parent a13c1f2 commit 51908e6

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

data/xml/payloads/boolean_blind.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -486,8 +486,8 @@ Tag: <test>
486486
<test>
487487
<title>MySQL AND boolean-based blind - WHERE, HAVING, ORDER BY or GROUP BY clause (EXTRACTVALUE)</title>
488488
<stype>1</stype>
489-
<level>1</level>
490-
<risk>5</risk>
489+
<level>5</level>
490+
<risk>1</risk>
491491
<clause>1,2,3,8</clause>
492492
<where>1</where>
493493
<vector>AND EXTRACTVALUE([RANDNUM],CASE WHEN ([INFERENCE]) THEN [RANDNUM] ELSE 0x3A END)</vector>
@@ -505,8 +505,8 @@ Tag: <test>
505505
<test>
506506
<title>MySQL OR boolean-based blind - WHERE, HAVING, ORDER BY or GROUP BY clause (EXTRACTVALUE)</title>
507507
<stype>1</stype>
508-
<level>3</level>
509-
<risk>5</risk>
508+
<level>5</level>
509+
<risk>3</risk>
510510
<clause>1,2,3,8</clause>
511511
<where>2</where>
512512
<vector>OR EXTRACTVALUE([RANDNUM],CASE WHEN ([INFERENCE]) THEN [RANDNUM] ELSE 0x3A END)</vector>

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.7.12.8"
23+
VERSION = "1.7.12.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)