Skip to content
This repository was archived by the owner on May 16, 2025. It is now read-only.

Commit 725ae29

Browse files
committed
Linux - prevent enumerating memory mappings of smeared processes
1 parent 4989643 commit 725ae29

File tree

1 file changed

+1
-1
lines changed
  • volatility/plugins/overlays/linux

1 file changed

+1
-1
lines changed

volatility/plugins/overlays/linux/linux.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1915,7 +1915,7 @@ def threads(self):
19151915
return threads
19161916

19171917
def get_proc_maps(self):
1918-
if not self.mm:
1918+
if not self.mm or self.get_process_address_space() == None:
19191919
return
19201920
seen = {}
19211921
for vma in linux_common.walk_internal_list("vm_area_struct", "vm_next", self.mm.mmap):

0 commit comments

Comments
 (0)