mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-06-10 02:01:57 +00:00
Major bug fix to correctly dump tables entries
This commit is contained in:
parent
fc28372596
commit
e07e48efb2
2 changed files with 8 additions and 5 deletions
|
|
@ -489,7 +489,10 @@ def __saveCmdline():
|
|||
if datatype == "boolean":
|
||||
value = "False"
|
||||
elif datatype == "integer":
|
||||
value = "1"
|
||||
if option == "threads":
|
||||
value = "1"
|
||||
else:
|
||||
value = "0"
|
||||
elif datatype == "string":
|
||||
value = ""
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue