Skip to content

Commit b81d2a2

Browse files
committed
Fix get_name API, fix malfind
1 parent 941e40c commit b81d2a2

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

volatility3/framework/plugins/linux/malfind.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,7 @@ def _list_injections(self, task):
5454
vollog.debug(
5555
f"Injections : processing PID {task.pid} : VMA {vma_name} : {hex(vma.vm_start)}-{hex(vma.vm_end)}"
5656
)
57-
if (
58-
vma.is_suspicious(proc_layer)
59-
and vma_name != "[vdso]"
60-
):
57+
if vma.is_suspicious(proc_layer) and vma_name != "[vdso]":
6158
data = proc_layer.read(vma.vm_start, 64, pad=True)
6259
yield vma, vma_name, data
6360

0 commit comments

Comments
 (0)