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

Commit 343753c

Browse files
committed
Linux - update operations member checking to avoid RedHat stupidity
1 parent 725ae29 commit 343753c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

volatility/plugins/linux/common.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,10 @@ def verify_ops(self, ops, op_members, modules):
102102
return
103103

104104
for check in op_members:
105+
# redhat-specific garbage
106+
if check.startswith("__UNIQUE_ID_rh_kabi_hide"):
107+
continue
108+
105109
addr = int(ops.m(check))
106110

107111
if addr and addr != 0 and addr != -1:

0 commit comments

Comments
 (0)