Windows: Refactor names of FileInterfaces

This commit is contained in:
Mike Auty
2020-10-29 09:43:16 +00:00
committed by ikelos
parent 3bd462720b
commit b703210024
14 changed files with 95 additions and 82 deletions
@@ -58,10 +58,10 @@ class Modules(interfaces.plugins.PluginInterface):
file_output = "Disabled"
if self.config['dump']:
filedata = dlllist.DllList.dump_pe(self.context, pe_table_name, mod, self._file_handler)
file_handler = dlllist.DllList.dump_pe(self.context, pe_table_name, mod, self._file_handler)
file_output = "Error outputting file"
if filedata:
file_output = filedata.preferred_filename
if file_handler:
file_output = file_handler.preferred_filename
yield (0, (
format_hints.Hex(mod.vol.offset),