mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Fix for an Issue #433
This commit is contained in:
parent
f67148a9a4
commit
0b449bb1d9
4 changed files with 17 additions and 18 deletions
|
|
@ -57,6 +57,7 @@ from lib.core.convert import base64unpickle
|
|||
from lib.core.data import conf
|
||||
from lib.core.data import kb
|
||||
from lib.core.data import logger
|
||||
from lib.core.data import mergedOptions
|
||||
from lib.core.data import queries
|
||||
from lib.core.datatype import AttribDict
|
||||
from lib.core.datatype import InjectionDict
|
||||
|
|
@ -1854,6 +1855,8 @@ def _mergeOptions(inputOptions, overrideOptions):
|
|||
if hasattr(conf, key) and conf[key] is None:
|
||||
conf[key] = value
|
||||
|
||||
mergedOptions.update(conf)
|
||||
|
||||
def _setTrafficOutputFP():
|
||||
if conf.trafficFile:
|
||||
infoMsg = "setting file for logging HTTP traffic"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue