File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1058,16 +1058,16 @@ def __mergeOptions(inputOptions):
10581058
10591059def __basicOptionValidation ():
10601060 if conf .limitStart is not None and not (isinstance (conf .limitStart , int ) and conf .limitStart > 0 ):
1061- errMsg = "value for LIMITSTART provided with --start option must be an integer value greater than zero (>0)"
1061+ errMsg = "value for --start (limitStart) option must be an integer value greater than zero (>0)"
10621062 raise sqlmapSyntaxException , errMsg
10631063
10641064 if conf .limitStop is not None and not (isinstance (conf .limitStop , int ) and conf .limitStop > 0 ):
1065- errMsg = "value for LIMITSTOP provided with --stop option must be an integer value greater than zero (>0)"
1065+ errMsg = "value for --stop (limitStop) option must be an integer value greater than zero (>0)"
10661066 raise sqlmapSyntaxException , errMsg
10671067
10681068 if conf .limitStart is not None and isinstance (conf .limitStart , int ) and conf .limitStart > 0 and \
10691069 conf .limitStop is not None and isinstance (conf .limitStop , int ) and conf .limitStop > 0 and conf .limitStop <= conf .limitStart :
1070- errMsg = "value for LIMITSTART provided with --start option must be smaller than value for LIMITSTOP provided with --stop option"
1070+ errMsg = "value for --start (limitStart) option must be smaller than value for --stop (limitStop) option"
10711071 raise sqlmapSyntaxException , errMsg
10721072
10731073def init (inputOptions = advancedDict ()):
You can’t perform that action at this time.
0 commit comments