mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-07-11 19:13:12 +00:00
minor update
This commit is contained in:
parent
4d1fa5596b
commit
f09340fc89
1 changed files with 4 additions and 0 deletions
|
|
@ -1758,6 +1758,10 @@ def __basicOptionValidation():
|
|||
errMsg = "switch --forms is compatible only with -u (--url) target switch"
|
||||
raise sqlmapSyntaxException, errMsg
|
||||
|
||||
if conf.forms and conf.crawl:
|
||||
errMsg = "switch --forms is currently not compatible with --crawl switch"
|
||||
raise sqlmapSyntaxException, errMsg
|
||||
|
||||
if conf.timeSec < 1:
|
||||
errMsg = "value for --time-sec option must be an integer greater than 0"
|
||||
raise sqlmapSyntaxException, errMsg
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue