mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-13 05:07:38 +02:00
changed config['dump'] to config.get('dump')
The config['dump'] caused some trouble in dlllist.
This commit is contained in:
@@ -56,7 +56,7 @@ class Modules(interfaces.plugins.PluginInterface):
|
||||
FullDllName = ""
|
||||
|
||||
dumped = False
|
||||
if self.config['dump']:
|
||||
if self.config.get('dump'):
|
||||
filedata = dlllist.DllList.dump_pe(self.context, pe_table_name, mod)
|
||||
if filedata:
|
||||
self.produce_file(filedata)
|
||||
|
||||
Reference in New Issue
Block a user