mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-10 19:57:39 +02:00
Linux: Fixes after the pslist kernel req change
This commit is contained in:
@@ -74,5 +74,5 @@ class Malfind(interfaces.plugins.PluginInterface):
|
||||
("Disasm", interfaces.renderers.Disassembly)],
|
||||
self._generator(
|
||||
pslist.PsList.list_tasks(self.context,
|
||||
self.config['vmlinux'],
|
||||
self.config['kernel'],
|
||||
filter_func = filter_func)))
|
||||
|
||||
@@ -35,7 +35,7 @@ class PsTree(pslist.PsList):
|
||||
def _generator(self):
|
||||
"""Generates the."""
|
||||
vmlinux = self.context.modules[self.config['kernel']]
|
||||
for proc in self.list_tasks(self.context, vmlinux.layer_name, vmlinux.symbol_table_name):
|
||||
for proc in self.list_tasks(self.context, vmlinux.name):
|
||||
self._processes[proc.pid] = proc
|
||||
|
||||
# Build the child/level maps
|
||||
|
||||
Reference in New Issue
Block a user