mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-07 17:02:39 +01:00
another fix (LIMIT is not a good idea to have in inband queries)
This commit is contained in:
parent
ff1a44c335
commit
f6d79f58bc
1 changed files with 1 additions and 1 deletions
|
|
@ -319,7 +319,7 @@
|
|||
<blind query="SELECT tbl_name FROM sqlite_master WHERE type='table' LIMIT %d, 1" count="SELECT COUNT(tbl_name) FROM sqlite_master WHERE type='table'"/>
|
||||
</tables>
|
||||
<columns>
|
||||
<inband query="SELECT sql FROM sqlite_master WHERE tbl_name='%s' LIMIT 1"/>
|
||||
<inband query="SELECT MIN(sql) FROM sqlite_master WHERE tbl_name='%s'"/>
|
||||
<blind query="SELECT sql FROM sqlite_master WHERE tbl_name='%s' LIMIT 1" condition=""/>
|
||||
</columns>
|
||||
<dump_table>
|
||||
|
|
|
|||
Loading…
Reference in a new issue