mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-07 05:01:30 +00:00
fixed options initiation
This commit is contained in:
@@ -1784,7 +1784,7 @@ def _mergeOptions(inputOptions, overrideOptions):
|
||||
kb.explicitSettings.add(key)
|
||||
|
||||
for key, value in defaults.items():
|
||||
if conf[key] is None:
|
||||
if hasattr(conf, key) and conf[key] is None:
|
||||
conf[key] = value
|
||||
|
||||
def _setTrafficOutputFP():
|
||||
|
||||
Reference in New Issue
Block a user