From 8624bca5b5eb03ad80e1428ff8f0e5022fbf6fae Mon Sep 17 00:00:00 2001 From: Daniel Pouzzner Date: Fri, 12 Jun 2026 18:08:57 -0500 Subject: [PATCH] fix F-3294: IntelRDseed64_r Stack Buffer Containing Entropy Cleared with Plain Assignment Instead of wc_ForceZero --- linuxkm/module_hooks.c | 1 + 1 file changed, 1 insertion(+) diff --git a/linuxkm/module_hooks.c b/linuxkm/module_hooks.c index 7e6f923dff..cc3357790f 100644 --- a/linuxkm/module_hooks.c +++ b/linuxkm/module_hooks.c @@ -472,6 +472,7 @@ static WC_INLINE int IntelRDseed64_r(word64* rnd) WC_SANITIZE_ENABLE(); buf = 0; } + wc_ForceZero(&buf, 0, sizeof buf); return 0; }