mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
Fix for an Issue #103
This commit is contained in:
parent
41d16e55cb
commit
e30646a54f
|
@ -1715,11 +1715,11 @@ def __mergeOptions(inputOptions, overrideOptions):
|
|||
conf[key] = value
|
||||
|
||||
for key, value in conf.items():
|
||||
if value:
|
||||
if value is not None:
|
||||
kb.explicitSettings.add(key)
|
||||
|
||||
for key, value in defaults.items():
|
||||
if not conf[key]:
|
||||
if conf[key] is None:
|
||||
conf[key] = value
|
||||
|
||||
def __setTrafficOutputFP():
|
||||
|
|
Loading…
Reference in New Issue
Block a user