File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -489,7 +489,10 @@ def __saveCmdline():
489
489
if datatype == "boolean" :
490
490
value = "False"
491
491
elif datatype == "integer" :
492
- value = "1"
492
+ if option == "threads" :
493
+ value = "1"
494
+ else :
495
+ value = "0"
493
496
elif datatype == "string" :
494
497
value = ""
495
498
Original file line number Diff line number Diff line change @@ -152,14 +152,14 @@ excludeSysDbs = False
152
152
153
153
# First table entry to dump (cursor start)
154
154
# Valid: number
155
- # Default: 1 (sqlmap will start to dump the table entries from the first)
156
- limitStart = 1
155
+ # Default: 0 (sqlmap will start to dump the table entries from the first)
156
+ limitStart = 0
157
157
158
158
# Last table entry to dump (cursor stop)
159
159
# Valid: number
160
- # Default: 1 (sqlmap will detect the number of table entries and dump
160
+ # Default: 0 (sqlmap will detect the number of table entries and dump
161
161
# until the last)
162
- limitStop = 1
162
+ limitStop = 0
163
163
164
164
# SQL SELECT query to be executed.
165
165
# Example: SELECT 'foo', 'bar'
You can’t perform that action at this time.
0 commit comments