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 0d92145 commit a475116Copy full SHA for a475116
1 file changed
lib/core/option.py
@@ -2055,6 +2055,10 @@ def _basicOptionValidation():
2055
errMsg = "option '-d' is incompatible with switch '--tor'"
2056
raise SqlmapSyntaxException(errMsg)
2057
2058
+ if not conf.tech:
2059
+ errMsg = "option '--technique' can't be empty"
2060
+ raise SqlmapSyntaxException(errMsg)
2061
+
2062
if conf.tor and conf.ignoreProxy:
2063
errMsg = "switch '--tor' is incompatible with switch '--ignore-proxy'"
2064
0 commit comments