In the Linux kernel, the following vulnerability has been resolved:
net: fix __dst_negative_advice() race
__dst_negative_advice() does not enforce proper RCU rules when
sk->dst_cache must be cleared, leading to possible UAF.
RCU rules are that we must first clear sk->sk_dst_cache,
then call dst_release(old_dst).
Note that sk_dst_reset(sk) is implementing this protocol correctly,
while __dst_negative_advice() uses the wrong order.
Given that ip6_negative_advice() has special logic
against RTF_CACHE, this means each of the three ->negative_advice()
existing methods must perform the sk_dst_reset() themselves.
Note the check against NULL dst is centralized in
__dst_negative_advice(), there is no need to duplicate
it in various callbacks.
Many thanks to Clement Lecigne for tracking this issue.
This old bug became visible after the blamed commit, using UDP sockets.
Security readout for executives and security teams
Plain-English summary
CVE-2024-36971 is a Linux kernel use-after-free flaw in networking code. A local user with low privileges could potentially gain high-impact control over confidentiality, integrity, or availability. CISA lists it in KEV, so exploitation is supported by a government source. Treat affected Linux systems as urgent, especially shared servers and container hosts.
Executive priority
Prioritize remediation this cycle for affected Linux systems. The issue requires local access, but KEV status raises urgency because exploitation is confirmed by CISA. Focus first on shared infrastructure where one compromised account or workload could threaten the host kernel.
Technical view
The bug is an RCU ordering race in __dst_negative_advice() when clearing sk->sk_dst_cache. The vulnerable path releases the old dst before correctly clearing the socket cache, creating a possible use-after-free. The CVE notes the issue became visible with UDP sockets and is fixed by upstream Linux stable commits across branches.
Likely exposure
Exposure is local rather than network-direct: attackers need some local execution context. Highest concern is multi-user Linux, CI runners, shared hosting, container hosts, and systems where untrusted workloads run on the same kernel. Exact package exposure depends on the distribution kernel build and backport status.
Exploitation context
Active exploitation is supported because CISA KEV lists CVE-2024-36971. The provided sources do not include public exploit details, observed targets, or exploitation mechanics. CVSS is 7.8 with local attack vector, low complexity, low privileges, no user interaction, and high CIA impact.
Researcher notes
Do not assume every listed upstream version maps directly to distribution exposure; vendors may backport fixes without changing major kernel versions. Validate by package advisory, changelog, or kernel commit status. The public bundle identifies upstream stable commits and Debian LTS notice but does not provide exploit telemetry beyond KEV.
Mitigation direction
Apply distribution kernel updates that include the upstream stable fixes.
Reboot systems so the patched kernel is actually running.
Use vendor advisories to confirm exact package and branch status.
Prioritize shared Linux hosts, container platforms, and CI runners.
Where patching is delayed, restrict untrusted local accounts and workloads.
Validation and detection
Inventory running kernel versions across Linux servers and hosts.
Confirm installed packages include a fix for CVE-2024-36971.
Verify the active kernel after reboot, not only the installed package.
Check Debian LTS or distribution-specific advisories where applicable.
Track CISA KEV status in vulnerability management reporting.
Generated from the cited source records. This long-tail analysis has not been individually reviewed by a named human.
Potential ATT&CK relevance
Conservative CVE-to-ATT&CK context
These mappings and lookup hints may be relevant to the vulnerability behavior, CWE, affected product, or exposure path. Glexia-inferred context is not an official MITRE, ATT&CK, CWE, or CVE Program mapping.
ATT&CK lookup starting points
Use these exact CWE pages and searches to review the Glexia ATT&CK library from this CVE's weakness and description context.
cwe · low confidence lookup
CWE-416: Exact CWE lookup
Use the exact CWE identifier as the starting point before reviewing related ATT&CK behavior. Open the exact CWE lookup page first, then review the ATT&CK searches from that MITRE weakness context. This is a Glexia lookup hint, not an official ATT&CK mapping.
These fields come from the CVE record and ADP containers, not from Glexia's Take. They preserve time-varying source decisions such as CISA SSVC, KEV status, CVSS metrics, and provider references.
Exploitation: activeAutomatable: noTechnical Impact: total
CVSS vector scores
1 official score
We collect every scored CVSS vector available in the official CNA and ADP containers. When more than one version is present, the table keeps the source vectors side by side instead of collapsing them into the highest score.
CWE links open Glexia weakness intelligence pages with official CWE context, developer remediation guidance, and related CVE mappings.
CWE-416 · source CWE mapping
Use After Free
Use After Free represents a recurring weakness pattern that can create exploitable paths when design, validation, or implementation controls are missing.