Skip to content

Commit 8d98347

Browse files
committed
Proper naming of BENCHMARK queries
1 parent 687cde5 commit 8d98347

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

data/xml/payloads/stacked_queries.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
</test>
8686

8787
<test>
88-
<title>MySQL &lt; 5.0.12 stacked queries (heavy query - comment)</title>
88+
<title>MySQL &lt; 5.0.12 stacked queries (BENCHMARK - comment)</title>
8989
<stype>4</stype>
9090
<level>3</level>
9191
<risk>2</risk>
@@ -105,7 +105,7 @@
105105
</test>
106106

107107
<test>
108-
<title>MySQL &lt; 5.0.12 stacked queries (heavy query)</title>
108+
<title>MySQL &lt; 5.0.12 stacked queries (BENCHMARK)</title>
109109
<stype>4</stype>
110110
<level>5</level>
111111
<risk>2</risk>

data/xml/payloads/time_blind.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@
169169
</test>
170170

171171
<test>
172-
<title>MySQL &lt; 5.0.12 AND time-based blind (heavy query)</title>
172+
<title>MySQL &lt; 5.0.12 AND time-based blind (BENCHMARK)</title>
173173
<stype>5</stype>
174174
<level>2</level>
175175
<risk>2</risk>
@@ -189,7 +189,7 @@
189189
</test>
190190

191191
<test>
192-
<title>MySQL &lt; 5.0.12 OR time-based blind (heavy query)</title>
192+
<title>MySQL &lt; 5.0.12 OR time-based blind (BENCHMARK)</title>
193193
<stype>5</stype>
194194
<level>2</level>
195195
<risk>3</risk>
@@ -209,7 +209,7 @@
209209
</test>
210210

211211
<test>
212-
<title>MySQL &lt; 5.0.12 AND time-based blind (heavy query - comment)</title>
212+
<title>MySQL &lt; 5.0.12 AND time-based blind (BENCHMARK - comment)</title>
213213
<stype>5</stype>
214214
<level>5</level>
215215
<risk>2</risk>
@@ -230,7 +230,7 @@
230230
</test>
231231

232232
<test>
233-
<title>MySQL &lt; 5.0.12 OR time-based blind (heavy query - comment)</title>
233+
<title>MySQL &lt; 5.0.12 OR time-based blind (BENCHMARK - comment)</title>
234234
<stype>5</stype>
235235
<level>5</level>
236236
<risk>3</risk>
@@ -1500,7 +1500,7 @@
15001500
</test>
15011501

15021502
<test>
1503-
<title>MySQL &lt; 5.0.12 time-based blind - Parameter replace (heavy queries)</title>
1503+
<title>MySQL &lt; 5.0.12 time-based blind - Parameter replace (BENCHMARK)</title>
15041504
<stype>5</stype>
15051505
<level>4</level>
15061506
<risk>2</risk>
@@ -1854,7 +1854,7 @@
18541854
</test>
18551855

18561856
<test>
1857-
<title>MySQL &lt; 5.0.12 time-based blind - ORDER BY, GROUP BY clause (heavy query)</title>
1857+
<title>MySQL &lt; 5.0.12 time-based blind - ORDER BY, GROUP BY clause (BENCHMARK)</title>
18581858
<stype>5</stype>
18591859
<level>4</level>
18601860
<risk>2</risk>

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.5"
23+
VERSION = "1.5.11.6"
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)