Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b75d7fa commit c3d0295Copy full SHA for c3d0295
1 file changed
lib/core/option.py
@@ -1358,6 +1358,10 @@ def __basicOptionValidation():
1358
errMsg = "switch --forms is compatible only with -u (--url) target switch"
1359
raise sqlmapSyntaxException, errMsg
1360
1361
+ if conf.timeSec < 1:
1362
+ errMsg = "value for --time-sec option must be an integer greater than 0"
1363
+ raise sqlmapSyntaxException, errMsg
1364
+
1365
def init(inputOptions=advancedDict()):
1366
"""
1367
Set attributes into both configuration and knowledge base singletons
0 commit comments