mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-10 11:47:38 +02:00
Merge pull request #1290 from dgmcdona/dgmcdona/windows-unloadedmodules-traceback
Windows: unloadedmodules bugfix
This commit is contained in:
@@ -7,7 +7,7 @@ import datetime
|
||||
from typing import List, Iterable
|
||||
|
||||
from volatility3.framework import constants
|
||||
from volatility3.framework import interfaces, symbols
|
||||
from volatility3.framework import interfaces, symbols, exceptions
|
||||
from volatility3.framework import renderers
|
||||
from volatility3.framework.configuration import requirements
|
||||
from volatility3.framework.interfaces import configuration
|
||||
@@ -132,10 +132,15 @@ class UnloadedModules(interfaces.plugins.PluginInterface, timeliner.TimeLinerInt
|
||||
kernel.symbol_table_name,
|
||||
unloadedmodule_table_name,
|
||||
):
|
||||
try:
|
||||
name = mod.Name.String
|
||||
except exceptions.InvalidAddressException:
|
||||
name = renderers.UnreadableValue()
|
||||
|
||||
yield (
|
||||
0,
|
||||
(
|
||||
mod.Name.String,
|
||||
name,
|
||||
format_hints.Hex(mod.StartAddress),
|
||||
format_hints.Hex(mod.EndAddress),
|
||||
conversion.wintime_to_datetime(mod.CurrentTime),
|
||||
|
||||
Reference in New Issue
Block a user