mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-23 14:42:25 +02:00
52 lines
2.2 KiB
Python
52 lines
2.2 KiB
Python
import volatility.framework.interfaces.plugins as plugins
|
|
import volatility.plugins.windows.pslist as pslist
|
|
from volatility.framework import exceptions, renderers
|
|
from volatility.framework.configuration import requirements
|
|
from volatility.framework.renderers import format_hints
|
|
|
|
|
|
class DllList(plugins.PluginInterface):
|
|
"""Lists the loaded modules in a particular memory image"""
|
|
|
|
@classmethod
|
|
def get_requirements(cls):
|
|
return [requirements.TranslationLayerRequirement(name = 'primary',
|
|
description = 'Kernel Address Space'),
|
|
requirements.SymbolRequirement(name = "ntkrnlmp",
|
|
description = "Windows OS"),
|
|
requirements.IntRequirement(name = 'pid',
|
|
description = "Process ID",
|
|
optional = True)]
|
|
|
|
def _generator(self, procs):
|
|
|
|
for proc in procs:
|
|
|
|
for entry in proc.load_order_modules():
|
|
|
|
BaseDllName = FullDllName = ""
|
|
try:
|
|
BaseDllName = entry.BaseDllName.String
|
|
# We assume that if the BaseDllName points to an invalid buffer, so will FullDllName
|
|
FullDllName = entry.FullDllName.String
|
|
except exceptions.InvalidAddressException:
|
|
pass
|
|
|
|
yield (0, (proc.UniqueProcessId,
|
|
proc.ImageFileName.cast("string", max_length = proc.ImageFileName.vol.count,
|
|
errors = 'replace'),
|
|
format_hints.Hex(entry.DllBase), format_hints.Hex(entry.SizeOfImage),
|
|
BaseDllName, FullDllName))
|
|
|
|
def run(self):
|
|
|
|
plugin = pslist.PsList(self.context, "plugins.DllList")
|
|
|
|
return renderers.TreeGrid([("PID", int),
|
|
("Process", str),
|
|
("Base", format_hints.Hex),
|
|
("Size", format_hints.Hex),
|
|
("Name", str),
|
|
("Path", str)],
|
|
self._generator(plugin.list_processes()))
|