There was an error while loading. Please reload this page.
1 parent 3cfa636 commit 9fff88dCopy full SHA for 9fff88d
lib/core/option.py
@@ -2124,6 +2124,10 @@ def _basicOptionValidation():
2124
errMsg = "switch '--titles' is incompatible with switch '--null-connection'"
2125
raise SqlmapSyntaxException(errMsg)
2126
2127
+ if conf.dumpTable and conf.search:
2128
+ errMsg = "switch '--dump' is incompatible with switch '--search'"
2129
+ raise SqlmapSyntaxException(errMsg)
2130
+
2131
if conf.data and conf.nullConnection:
2132
errMsg = "option '--data' is incompatible with switch '--null-connection'"
2133
0 commit comments