Skip to content

Commit eb098f6

Browse files
committed
Fixes #2268
1 parent 5772d89 commit eb098f6

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from lib.core.enums import OS
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.0.11.9"
22+
VERSION = "1.0.11.10"
2323
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2424
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2525
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ e60456db5380840a586654344003d4e6 lib/core/readlineng.py
4545
b3a62d41a5af6cd7fa733b6227febb0c lib/core/replication.py
4646
99a2b496b9d5b546b335653ca801153f lib/core/revision.py
4747
7c15dd2777af4dac2c89cab6df17462e lib/core/session.py
48-
029fde655c5314b617c5479058738c1d lib/core/settings.py
48+
261692dea161791dd33a701c5f852466 lib/core/settings.py
4949
7af83e4f18cab6dff5e67840eb65be80 lib/core/shell.py
5050
23657cd7d924e3c6d225719865855827 lib/core/subprocessng.py
5151
c3ace7874a536d801f308cf1fd03df99 lib/core/target.py
@@ -456,4 +456,4 @@ a279656ea3fcb85c727249b02f828383 xml/livetests.xml
456456
3194e2688a7576e1f877d5b137f7c260 xml/payloads/stacked_queries.xml
457457
c2d8dd03db5a663e79eabb4495dd0723 xml/payloads/time_blind.xml
458458
ac649aff0e7db413e4937e446e398736 xml/payloads/union_query.xml
459-
1587a02322a96ac48973e782d6fedf73 xml/queries.xml
459+
5bd467d86d7cb55fbe5f66e4ff9a6bec xml/queries.xml

xml/queries.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -463,6 +463,10 @@
463463
<length query="LENGTH(%s)"/>
464464
<isnull query="VALUE(%s,' ')" query2="IFNULL(%s,' ')"/>
465465
<delimiter query=","/>
466+
<limit query="LIMIT %d,%d"/>
467+
<limitregexp query="\s+LIMIT\s+([\d]+)\s*\,\s*([\d]+)"/>
468+
<limitgroupstart query="1"/>
469+
<limitgroupstop query="2"/>
466470
<!-- No real cast on SAP MaxDB -->
467471
<cast query="REPLACE(CHR(%s),' ','_')"/>
468472
<order query="ORDER BY %s ASC"/>
@@ -647,6 +651,7 @@
647651
</search_column>
648652
</dbms>
649653

654+
<!-- Hyper SQL Database -->
650655
<dbms value="HSQLDB">
651656
<cast query="CAST(%s AS LONGVARCHAR)"/>
652657
<length query="CHAR_LENGTH(%s)"/>

0 commit comments

Comments
 (0)