mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-13 05:07:38 +02:00
Fix get_name API, fix malfind
This commit is contained in:
@@ -54,10 +54,7 @@ class Malfind(interfaces.plugins.PluginInterface):
|
||||
vollog.debug(
|
||||
f"Injections : processing PID {task.pid} : VMA {vma_name} : {hex(vma.vm_start)}-{hex(vma.vm_end)}"
|
||||
)
|
||||
if (
|
||||
vma.is_suspicious(proc_layer)
|
||||
and vma_name != "[vdso]"
|
||||
):
|
||||
if vma.is_suspicious(proc_layer) and vma_name != "[vdso]":
|
||||
data = proc_layer.read(vma.vm_start, 64, pad=True)
|
||||
yield vma, vma_name, data
|
||||
|
||||
|
||||
Reference in New Issue
Block a user