File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 19
19
from lib .core .enums import OS
20
20
21
21
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22
- VERSION = "1.0.11.9 "
22
+ VERSION = "1.0.11.10 "
23
23
TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
24
24
TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
25
25
VERSION_STRING = "sqlmap/%s#%s" % ('.' .join (VERSION .split ('.' )[:- 1 ]) if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] == '0' else VERSION , TYPE )
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ e60456db5380840a586654344003d4e6 lib/core/readlineng.py
45
45
b3a62d41a5af6cd7fa733b6227febb0c lib/core/replication.py
46
46
99a2b496b9d5b546b335653ca801153f lib/core/revision.py
47
47
7c15dd2777af4dac2c89cab6df17462e lib/core/session.py
48
- 029fde655c5314b617c5479058738c1d lib/core/settings.py
48
+ 261692dea161791dd33a701c5f852466 lib/core/settings.py
49
49
7af83e4f18cab6dff5e67840eb65be80 lib/core/shell.py
50
50
23657cd7d924e3c6d225719865855827 lib/core/subprocessng.py
51
51
c3ace7874a536d801f308cf1fd03df99 lib/core/target.py
@@ -456,4 +456,4 @@ a279656ea3fcb85c727249b02f828383 xml/livetests.xml
456
456
3194e2688a7576e1f877d5b137f7c260 xml/payloads/stacked_queries.xml
457
457
c2d8dd03db5a663e79eabb4495dd0723 xml/payloads/time_blind.xml
458
458
ac649aff0e7db413e4937e446e398736 xml/payloads/union_query.xml
459
- 1587a02322a96ac48973e782d6fedf73 xml/queries.xml
459
+ 5bd467d86d7cb55fbe5f66e4ff9a6bec xml/queries.xml
Original file line number Diff line number Diff line change 463
463
<length query =" LENGTH(%s)" />
464
464
<isnull query =" VALUE(%s,' ')" query2 =" IFNULL(%s,' ')" />
465
465
<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" />
466
470
<!-- No real cast on SAP MaxDB -->
467
471
<cast query =" REPLACE(CHR(%s),' ','_')" />
468
472
<order query =" ORDER BY %s ASC" />
647
651
</search_column >
648
652
</dbms >
649
653
654
+ <!-- Hyper SQL Database -->
650
655
<dbms value =" HSQLDB" >
651
656
<cast query =" CAST(%s AS LONGVARCHAR)" />
652
657
<length query =" CHAR_LENGTH(%s)" />
You can’t perform that action at this time.
0 commit comments