Skip to content

Commit 90b9157

Browse files
committed
Linux.proc: Fix broken variable in debug msg.
1 parent 61a2f78 commit 90b9157

File tree

1 file changed

+2
-1
lines changed
  • volatility3/framework/plugins/linux

1 file changed

+2
-1
lines changed

volatility3/framework/plugins/linux/proc.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ class Maps(plugins.PluginInterface):
2121
"""Lists all memory maps for all processes."""
2222

2323
_required_framework_version = (2, 0, 0)
24+
_version = (1, 0, 0)
2425
MAXSIZE_DEFAULT = 1024 * 1024 * 1024 # 1 Gb
2526

2627
@classmethod
@@ -203,7 +204,7 @@ def vma_filter_function(x: interfaces.objects.ObjectInterface) -> bool:
203204
vm_end = vma.vm_end
204205
except AttributeError:
205206
vollog.debug(
206-
f"Unable to find the vm_start and vm_end for vma at {vma.vol.offset:#x} for pid {pid}"
207+
f"Unable to find the vm_start and vm_end for vma at {vma.vol.offset:#x} for pid {task.pid}"
207208
)
208209
vm_start = None
209210
vm_end = None

0 commit comments

Comments
 (0)