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 c636c26 commit 6b007abCopy full SHA for 6b007ab
1 file changed
lib/core/option.py
@@ -1964,6 +1964,10 @@ def __basicOptionValidation():
1964
errMsg = "switch '--forms' requires usage of option '-u' (--url)"
1965
raise sqlmapSyntaxException, errMsg
1966
1967
+ if conf.requestFile and conf.url:
1968
+ errMsg = "option '-r' is incompatible with option '-u' (--url)"
1969
+ raise sqlmapSyntaxException, errMsg
1970
+
1971
if conf.tor and conf.ignoreProxy:
1972
errMsg = "switch '--tor' is incompatible with switch '--ignore-proxy'"
1973
0 commit comments