CVE Catalog

Actively exploited in the wild

Android Kernel Remote Code Execution Vulnerability

Android - Kernel · Listed in the CISA KEV since 2024-08-07. This indicates confirmed attacks in production environments.

Required action: Apply mitigations per vendor instructions or discontinue use of the product if mitigations are unavailable.

CVE-2024-36971

HighCVSS 7.8KEV
Published: Updated: Translated: NVD NIST

Summary

A race condition in the Linux kernel's __dst_negative_advice() function fails to enforce proper RCU rules when clearing sk->dst_cache, potentially leading to a use-after-free (UAF). The issue primarily affects UDP sockets and requires the correct order of operations: first reset sk_dst_cache, then release the old dst.

Risk Assessment

An attacker could exploit this vulnerability to access already freed memory, potentially leading to privilege escalation or system crash.

Recommendation

Apply a Linux kernel update containing the fix for this vulnerability. Monitor distribution security advisories and deploy the patch as soon as possible.

Other vulnerabilities in Linux kernel

See all
Original NVD description (English source)

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.

Vulnerability data from NVD (NIST) · CISA KEV · EPSS