mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-22 09:34:52 +02:00
changed config['dump'] to config.get('dump')
The config['dump'] caused some trouble in dlllist.
This commit is contained in:
@@ -52,7 +52,7 @@ class Memmap(interfaces.plugins.PluginInterface):
|
||||
offset, size, mapped_offset, mapped_size, maplayer = mapval
|
||||
|
||||
dumped = False
|
||||
if self.config['dump']:
|
||||
if self.config.get('dump'):
|
||||
try:
|
||||
data = proc_layer.read(offset, size, pad = True)
|
||||
filedata.data.write(data)
|
||||
|
||||
Reference in New Issue
Block a user