mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-01-24 08:14:24 +03:00
minor update
This commit is contained in:
parent
526aacb640
commit
a6310c0b21
|
@ -1793,6 +1793,10 @@ def __basicOptionValidation():
|
|||
errMsg = "switch --regexp is incompatible with switch --null-connection"
|
||||
raise sqlmapSyntaxException, errMsg
|
||||
|
||||
if conf.dumpTable and conf.dumpAll:
|
||||
errMsg = "switch --dump is incompatible with switch --dump-all"
|
||||
raise sqlmapSyntaxException, errMsg
|
||||
|
||||
if conf.predictOutput and (conf.threads > 1 or conf.optimize):
|
||||
errMsg = "switch --predict-output is incompatible with switch --threads and -o"
|
||||
raise sqlmapSyntaxException, errMsg
|
||||
|
|
Loading…
Reference in New Issue
Block a user