We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 941e40c commit b81d2a2Copy full SHA for b81d2a2
volatility3/framework/plugins/linux/malfind.py
@@ -54,10 +54,7 @@ def _list_injections(self, task):
54
vollog.debug(
55
f"Injections : processing PID {task.pid} : VMA {vma_name} : {hex(vma.vm_start)}-{hex(vma.vm_end)}"
56
)
57
- if (
58
- vma.is_suspicious(proc_layer)
59
- and vma_name != "[vdso]"
60
- ):
+ if vma.is_suspicious(proc_layer) and vma_name != "[vdso]":
61
data = proc_layer.read(vma.vm_start, 64, pad=True)
62
yield vma, vma_name, data
63
0 commit comments