Skip to content

Commit bde7637

Browse files
committed
Minor patch
1 parent 4acc017 commit bde7637

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

data/xml/queries.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -679,8 +679,8 @@
679679
<delimiter query="||"/>
680680
<limit query="LIMIT %d %d" query2="LIMIT %d OFFSET %d"/>
681681
<limitregexp query="\s+LIMIT\s+([\d]+)\s*\,\s*([\d]+)" query2="\s+LIMIT\s+([\d]+)"/>
682-
<limitgroupstart query="1"/>
683-
<limitgroupstop query="2"/>
682+
<limitgroupstart query="2"/>
683+
<limitgroupstop query="1"/>
684684
<limitstring query=" LIMIT "/>
685685
<order query="ORDER BY %s ASC"/>
686686
<count query="COUNT(%s)"/>
@@ -875,8 +875,8 @@
875875
<delimiter query="||"/>
876876
<limit query="LIMIT %d OFFSET %d"/>
877877
<limitregexp query="\s+LIMIT\s+([\d]+)\s*OFFSET\s*([\d]+)" query2="\s+LIMIT\s+([\d]+)"/>
878-
<limitgroupstart query="1"/>
879-
<limitgroupstop query="2"/>
878+
<limitgroupstart query="2"/>
879+
<limitgroupstop query="1"/>
880880
<limitstring query=" LIMIT "/>
881881
<order query="ORDER BY %s ASC"/>
882882
<count query="COUNT(%s)"/>
@@ -940,8 +940,8 @@
940940
<delimiter query="||"/>
941941
<limit query="OFFSET %d ROWS FETCH FIRST %d ROWS ONLY"/>
942942
<limitregexp query="OFFSET\s+([\d]+)\s+ROWS\s+FETCH\s+FIRST\s+([\d]+)\s+ROWS\s+ONLY"/>
943-
<limitgroupstart query="2"/>
944-
<limitgroupstop query="1"/>
943+
<limitgroupstart query="1"/>
944+
<limitgroupstop query="2"/>
945945
<limitstring/>
946946
<order query="ORDER BY %s ASC"/>
947947
<count query="COUNT(%s)"/>

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.1"
23+
VERSION = "1.7.12.2"
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)