Skip to content

Commit 953a51c

Browse files
committed
Bug fix (wrong stype)
1 parent 4cc6afe commit 953a51c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

data/xml/payloads/stacked_queries.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@
486486

487487
<test>
488488
<title>IBM DB2 stacked queries (heavy query - comment)</title>
489-
<stype>5</stype>
489+
<stype>4</stype>
490490
<level>3</level>
491491
<risk>2</risk>
492492
<clause>1-8</clause>
@@ -506,7 +506,7 @@
506506

507507
<test>
508508
<title>IBM DB2 stacked queries (heavy query)</title>
509-
<stype>5</stype>
509+
<stype>4</stype>
510510
<level>5</level>
511511
<risk>2</risk>
512512
<clause>1-8</clause>
@@ -607,7 +607,7 @@
607607

608608
<test>
609609
<title>SAP MaxDB stacked queries (heavy query - comment)</title>
610-
<stype>5</stype>
610+
<stype>4</stype>
611611
<level>4</level>
612612
<risk>2</risk>
613613
<clause>1-8</clause>
@@ -627,7 +627,7 @@
627627

628628
<test>
629629
<title>SAP MaxDB stacked queries (heavy query)</title>
630-
<stype>5</stype>
630+
<stype>4</stype>
631631
<level>5</level>
632632
<risk>2</risk>
633633
<clause>1-8</clause>

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.5.11.7"
23+
VERSION = "1.5.11.8"
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)