mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-07-08 13:53:07 +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
|
conf[key] = value
|
||||||
|
|
||||||
for key, value in conf.items():
|
for key, value in conf.items():
|
||||||
if value:
|
if value is not None:
|
||||||
kb.explicitSettings.add(key)
|
kb.explicitSettings.add(key)
|
||||||
|
|
||||||
for key, value in defaults.items():
|
for key, value in defaults.items():
|
||||||
if not conf[key]:
|
if conf[key] is None:
|
||||||
conf[key] = value
|
conf[key] = value
|
||||||
|
|
||||||
def __setTrafficOutputFP():
|
def __setTrafficOutputFP():
|
||||||
|
|
Loading…
Reference in New Issue
Block a user