mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-07 21:21:33 +00:00
Minor bug fix to correctly handle --start and --stop
This commit is contained in:
@@ -538,10 +538,10 @@ def getRange(count, dump=False):
|
|||||||
limitStop = count
|
limitStop = count
|
||||||
|
|
||||||
if dump:
|
if dump:
|
||||||
if isinstance(conf.limitStop, int) and conf.limitStop < count:
|
if isinstance(conf.limitStop, int) and conf.limitStop > 0 and conf.limitStop < limitStop:
|
||||||
limitStop = conf.limitStop
|
limitStop = conf.limitStop
|
||||||
|
|
||||||
if isinstance(conf.limitStart, int) and conf.limitStart <= limitStop:
|
if isinstance(conf.limitStart, int) and conf.limitStart > 0 and conf.limitStart <= limitStop:
|
||||||
limitStart = conf.limitStart
|
limitStart = conf.limitStart
|
||||||
|
|
||||||
# TODO: also for Microsoft SQL Server in getColumns method?
|
# TODO: also for Microsoft SQL Server in getColumns method?
|
||||||
|
|||||||
Reference in New Issue
Block a user