We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61a2f78 commit 90b9157Copy full SHA for 90b9157
volatility3/framework/plugins/linux/proc.py
@@ -21,6 +21,7 @@ class Maps(plugins.PluginInterface):
21
"""Lists all memory maps for all processes."""
22
23
_required_framework_version = (2, 0, 0)
24
+ _version = (1, 0, 0)
25
MAXSIZE_DEFAULT = 1024 * 1024 * 1024 # 1 Gb
26
27
@classmethod
@@ -203,7 +204,7 @@ def vma_filter_function(x: interfaces.objects.ObjectInterface) -> bool:
203
204
vm_end = vma.vm_end
205
except AttributeError:
206
vollog.debug(
- 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}"
208
)
209
vm_start = None
210
vm_end = None
0 commit comments