mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-09 14:11:29 +00:00
Fix for an Issue #103
This commit is contained in:
@@ -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():
|
||||
|
||||
Reference in New Issue
Block a user