From 7cdaa49b1c2d30d2a8bcfb1bbf041829b6b22064 Mon Sep 17 00:00:00 2001 From: Odysseas Stavrou Date: Tue, 18 Aug 2026 03:50:38 +0300 Subject: [PATCH] Unmark (T) RANDSTRUCT as a per-module flag --- volatility3/framework/constants/linux/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility3/framework/constants/linux/__init__.py b/volatility3/framework/constants/linux/__init__.py index 26560c8fc..104d1d1b9 100644 --- a/volatility3/framework/constants/linux/__init__.py +++ b/volatility3/framework/constants/linux/__init__.py @@ -487,7 +487,7 @@ TAINT_FLAGS = { "L": TaintFlag(shift=1 << 14, desc="SOFTLOCKUP", when_present=True, module=False), "K": TaintFlag(shift=1 << 15, desc="LIVEPATCH", when_present=True, module=True), "X": TaintFlag(shift=1 << 16, desc="AUX", when_present=True, module=True), - "T": TaintFlag(shift=1 << 17, desc="RANDSTRUCT", when_present=True, module=True), + "T": TaintFlag(shift=1 << 17, desc="RANDSTRUCT", when_present=True, module=False), "N": TaintFlag(shift=1 << 18, desc="TEST", when_present=True, module=True), "J": TaintFlag(shift=1 << 19, desc="FWCTL", when_present=True, module=False), }