mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-25 02:53:46 +03:00
Major bug fix to correctly dump tables entries
This commit is contained in:
parent
fc28372596
commit
e07e48efb2
|
@ -489,7 +489,10 @@ def __saveCmdline():
|
||||||
if datatype == "boolean":
|
if datatype == "boolean":
|
||||||
value = "False"
|
value = "False"
|
||||||
elif datatype == "integer":
|
elif datatype == "integer":
|
||||||
value = "1"
|
if option == "threads":
|
||||||
|
value = "1"
|
||||||
|
else:
|
||||||
|
value = "0"
|
||||||
elif datatype == "string":
|
elif datatype == "string":
|
||||||
value = ""
|
value = ""
|
||||||
|
|
||||||
|
|
|
@ -152,14 +152,14 @@ excludeSysDbs = False
|
||||||
|
|
||||||
# First table entry to dump (cursor start)
|
# First table entry to dump (cursor start)
|
||||||
# Valid: number
|
# Valid: number
|
||||||
# Default: 1 (sqlmap will start to dump the table entries from the first)
|
# Default: 0 (sqlmap will start to dump the table entries from the first)
|
||||||
limitStart = 1
|
limitStart = 0
|
||||||
|
|
||||||
# Last table entry to dump (cursor stop)
|
# Last table entry to dump (cursor stop)
|
||||||
# Valid: number
|
# Valid: number
|
||||||
# Default: 1 (sqlmap will detect the number of table entries and dump
|
# Default: 0 (sqlmap will detect the number of table entries and dump
|
||||||
# until the last)
|
# until the last)
|
||||||
limitStop = 1
|
limitStop = 0
|
||||||
|
|
||||||
# SQL SELECT query to be executed.
|
# SQL SELECT query to be executed.
|
||||||
# Example: SELECT 'foo', 'bar'
|
# Example: SELECT 'foo', 'bar'
|
||||||
|
|
Loading…
Reference in New Issue
Block a user