Skip to content

Commit a17281a

Browse files
authored
Merge pull request #1868 from Abyss-W4tcher/fix_broken_mount_enum_after_6_13
Linux: Fix broken mount enumeration on 6.13+
2 parents a94436d + 60c0585 commit a17281a

File tree

1 file changed

+2
-1
lines changed
  • volatility3/framework/symbols/linux/extensions

1 file changed

+2
-1
lines changed

volatility3/framework/symbols/linux/extensions/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2005,8 +2005,9 @@ def get_mount_points(
20052005
self._context, self
20062006
)
20072007
for node in self.mounts.get_nodes():
2008+
# See kernel's node_to_mount()
20082009
mnt = linux.LinuxUtilities.container_of(
2009-
node, "mount", "mnt_list", vmlinux
2010+
node, "mount", "mnt_node", vmlinux
20102011
)
20112012
yield mnt
20122013
else:

0 commit comments

Comments
 (0)