mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-13 03:44:38 +01:00
Patch for an Issue #734
This commit is contained in:
parent
11dee4c8cd
commit
5b5a765f96
1 changed files with 4 additions and 0 deletions
|
|
@ -2104,6 +2104,10 @@ def _basicOptionValidation():
|
|||
errMsg = "switch '--no-cast' is incompatible with switch '--hex'"
|
||||
raise SqlmapSyntaxException(errMsg)
|
||||
|
||||
if conf.dumpAll and conf.search:
|
||||
errMsg = "switch '--dump-all' is incompatible with switch '--search'"
|
||||
raise SqlmapSyntaxException(errMsg)
|
||||
|
||||
if conf.string and conf.notString:
|
||||
errMsg = "option '--string' is incompatible with switch '--not-string'"
|
||||
raise SqlmapSyntaxException(errMsg)
|
||||
|
|
|
|||
Loading…
Reference in a new issue