mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-06-04 05:03:20 +03:00
added one more check
This commit is contained in:
parent
2b476e078c
commit
d50684a057
|
@ -1208,6 +1208,10 @@ def __basicOptionValidation():
|
||||||
errMsg = "switch --text-only is incompatible with switch --null-connection"
|
errMsg = "switch --text-only is incompatible with switch --null-connection"
|
||||||
raise sqlmapSyntaxException, errMsg
|
raise sqlmapSyntaxException, errMsg
|
||||||
|
|
||||||
|
if conf.data and conf.useNullConnection:
|
||||||
|
errMsg = "switch --data is incompatible with switch --null-connection"
|
||||||
|
raise sqlmapSyntaxException, errMsg
|
||||||
|
|
||||||
def init(inputOptions=advancedDict()):
|
def init(inputOptions=advancedDict()):
|
||||||
"""
|
"""
|
||||||
Set attributes into both configuration and knowledge base singletons
|
Set attributes into both configuration and knowledge base singletons
|
||||||
|
|
Loading…
Reference in New Issue
Block a user