mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-16 05:13:22 +01:00
Patch for an Issue #732
This commit is contained in:
parent
2a88436417
commit
a47072eced
1 changed files with 1 additions and 1 deletions
|
|
@ -1910,7 +1910,7 @@ def _mergeOptions(inputOptions, overrideOptions):
|
|||
types_.update(optDict[group])
|
||||
|
||||
for key in conf:
|
||||
if key.upper() in _:
|
||||
if key.upper() in _ and key in types_:
|
||||
value = _[key.upper()]
|
||||
|
||||
if types_[key] == OPTION_TYPE.BOOLEAN:
|
||||
|
|
|
|||
Loading…
Reference in a new issue