CVE-2025-21759: ipv6: mcast: extend RCU protection in igmp6_send()
In the Linux kernel, the following vulnerability has been resolved:
ipv6: mcast: extend RCU protection in igmp6_send()
igmp6_send() can be called without RTNL or RCU being held.
Extend RCU protection so that we can safely fetch the net pointer
and avoid a potential UAF.
Note that we no longer can use sock_alloc_send_skb() because
ipv6.igmp_sk uses GFP_KERNEL allocations which can sleep.
Instead use alloc_skb() and charge the net->ipv6.igmp_sk
socket under RCU protection.
Security readout for executives and security teams
Plain-English summary
A Linux kernel IPv6 multicast function could access network data after it has been freed, potentially allowing a local authenticated user to compromise confidentiality, integrity, or availability. The supplied CVSS score is 7.8. Practical exploitability and real-world impact are not established by the provided sources.
Executive priority
Treat as a high-priority kernel maintenance issue, especially where untrusted local users can access Linux hosts. Schedule prompt updates through normal change control. Emergency isolation is not justified by the supplied evidence because exploitation in the wild is not reported and practical exploitability remains uncertain.
Technical view
CVE-2025-21759 is a potential use-after-free in igmp6_send(). The function may run without RTNL or RCU protection, making retrieval and use of the network pointer unsafe. The stable fixes extend RCU coverage, allocate the packet buffer differently, and charge the IPv6 IGMP socket while protected.
Likely exposure
Exposure applies to affected Linux kernels using the vulnerable IPv6 multicast implementation. The bundle lists affected releases from 2.6.26 and identifies 6.6.79, 6.12.16, 6.13.4, and 6.14, but its version-range semantics are incomplete. Confirm exposure using distribution advisories and backport records.
Exploitation context
The CVSS vector describes local access, low complexity, low privileges, and no user interaction. The supplied record does not identify public exploitation, and KEV is false. No cited evidence establishes reliable code execution or attacks in the wild; the documented condition is a potential use-after-free.
Researcher notes
The flaw concerns lifetime protection around net access in igmp6_send(), with CWE-416 classification. Review downstream patches for equivalent extended RCU protection and the alloc_skb-based charging change. The source bundle contains duplicate commit identifiers and ambiguous version entries, so exact affected ranges require vendor confirmation.
Mitigation direction
Install a vendor-supported kernel containing the applicable stable fix or downstream backport.
Check distribution advisories because package versions may not match upstream kernel release numbers.
Prioritize shared, multi-user, and otherwise untrusted Linux systems for remediation.
Reboot into the updated kernel after installation, following vendor operational guidance.
Validation and detection
Inventory running kernel versions across Linux hosts, containers' hosts, appliances, and virtual machines.
Compare each kernel against vendor advisories and documented backport status for CVE-2025-21759.
After remediation, verify the running kernel is the intended updated build.
Confirm the vendor kernel source includes the relevant stable fix or an equivalent backport.
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.
2CVSS vectors
3Timeline events
1ADP providers
5Source links
SSVC decision data
CISA-ADPCISA Coordinator
Timestamp
Version
2.0.3
Exploitation: noneAutomatable: noTechnical Impact: total
CVSS vector scores
2 official scores
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.