CVE-2026-72417
The CVSS 9.8 on CVE-2026-72417 warrants scrutiny before you treat it as a top-priority patch. This is a legitimate out-of-bounds read in the netfilter flowtable subsystem, but the severity score assumes broad exploitability that the EPSS score of 0.00553 suggests isn't present in practice. The vulnerability lives in a specific parsing path that processes connection tracking for hardware-offloaded network flows. It's not a general kernel entry point — the code only executes when your system has flowtable acceleration enabled and is actively handling flows through netfilter. A malformed IP header where the ihl field doesn't match the actual header length causes the kernel to calculate a header size extending past the packet boundary, triggering the OOB read. The patch also replaces a hardcoded IPPROTO_IPIP constant with the actual protocol field from the IP header, indicating the original code made incorrect assumptions about tunnel encapsulation types — this wasn't merely a missing bounds check but a logic error baked into how the code handled protocol assumptions. For prioritization: confirm whether flowtable acceleration is enabled in your kernel config (CONFIG_NF_FLOW_TABLE) and deployed in your environment. Most general-purpose Linux systems don't run flowtable offload, which explains the low EPSS. If you're not using hardware offload for network flows, this vulnerability sits in code that may never execute in your threat model. If you are — particularly in high-throughput environments with specific NIC families — treat this as a higher priority, but recognize the CVSS conflates theoretical severity with actual reachability. The deeper takeaway: CVSS-EPSS gaps like this one signal when deployment context should override severity scores. The kernel's vulnerability remediation velocity is structurally slower than application-layer patches, often requiring driver vendor coordination that stretches remediation windows to 60-90 days. For low-likelihood CVEs in narrow code paths, that remediation lag may not be worth the operational cost of emergency patching cycles.
Reviewed through automated stages and approved by a human before publication.