mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-27 01:00:35 +03:00
minor fix for --start/--stop mechanism in pivot dumping mode
This commit is contained in:
parent
95cd9e2af3
commit
d1bfdc6a48
|
@ -1479,13 +1479,13 @@ class Enumeration:
|
||||||
else:
|
else:
|
||||||
pivotValue = safechardecode(value)
|
pivotValue = safechardecode(value)
|
||||||
|
|
||||||
if all([conf.limitStart, conf.limitStop]):
|
if conf.limitStart or conf.limitStop:
|
||||||
if (i + 1) < conf.limitStart:
|
if conf.limitStart and (i + 1) < conf.limitStart:
|
||||||
warnMsg = "skipping first %d pivot " % conf.limitStart
|
warnMsg = "skipping first %d pivot " % conf.limitStart
|
||||||
warnMsg += "point values"
|
warnMsg += "point values"
|
||||||
singleTimeWarnMessage(warnMsg)
|
singleTimeWarnMessage(warnMsg)
|
||||||
break
|
break
|
||||||
elif (i + 1) > conf.limitStop:
|
elif conf.limitStop and (i + 1) > conf.limitStop:
|
||||||
breakRetrieval = True
|
breakRetrieval = True
|
||||||
break
|
break
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user