CVE-2026-53362 Details
Description
In the Linux kernel, the following vulnerability has been resolved: ipv6: account for fraggap on the paged allocation path In __ip6_append_data(), when the paged-allocation branch is taken (MSG_MORE / NETIF_F_SG / large fraglen), alloclen and pagedlen are computed as alloclen = fragheaderlen + transhdrlen; pagedlen = datalen - transhdrlen; datalen already includes fraggap (datalen = length + fraggap). When fraggap is non-zero, this is not the first skb and transhdrlen is zero. The fraggap bytes carried over from the previous skb are copied just past the fragment headers in the new skb's linear area. The linear area is therefore undersized by fraggap bytes while pagedlen is overstated by the same amount, and the copy writes past skb->end into the trailing skb_shared_info. An unprivileged user can trigger this via a UDPv6 socket using MSG_MORE together with MSG_SPLICE_PAGES. The bad accounting was introduced by commit 773ba4fe9104 ("ipv6: avoid partial copy for zc"). Before commit ce650a166335 ("udp6: Fix __ip6_append_data()'s handling of MSG_SPLICE_PAGES"), the negative copy value caused -EINVAL to be returned. That later commit allowed MSG_SPLICE_PAGES to proceed in this case, making the corruption triggerable. The non-paged branch sets alloclen to fraglen, which already accounts for fraggap because datalen does. Bring the paged branch in line by adding fraggap to alloclen and subtracting it from pagedlen. After this adjustment, copy no longer collapses to -fraggap on the paged path, so remove the stale comment describing that old arithmetic. Since a negative copy is no longer expected for a valid MSG_SPLICE_PAGES case, remove the MSG_SPLICE_PAGES exception from the negative copy check.
A vulnerability exists in the Linux kernel's handling of IPv6 data fragmentation, specifically within the '__ip6_append_data()' function. This issue arises when the paged-allocation branch is activated, particularly with the 'MSG_MORE' flag, 'NETIF_F_SG' feature, and large fragment lengths. The vulnerability allows an unprivileged user to exploit the issue via a UDPv6 socket by using 'MSG_MORE' in conjunction with 'MSG_SPLICE_PAGES'. The root of the problem lies in incorrect accounting of data lengths, which leads to memory corruption by overwriting shared information beyond the allocated buffer.
Users can upgrade to the latest version of the Linux kernel where this vulnerability has been addressed.
Metrics
CVSS 4.0 Severity and Vector Strings:
No CVSS 4.0 data is available for this CVE.
CVSS 3.x Severity and Vector Strings:
No data available for CVSS Version 2.0 on this CVE.
CISA-ADP
Assessed Aug 28, 2026References to Advisories, Solutions, and Tools
By selecting these links, you will be leaving this site. These are references gathered from the official CVE record and are not endorsed by Volerion.
| URL | Source(s) | Tag(s) |
|---|---|---|
| https://www.cisa.gov/known-exploited-vulnerabilities-catalog?field_cve=CVE-2026-53362 | CISA-ADP | US Government Resource |
| https://git.kernel.org/stable/c/14200d435af9a9eeb444f529fc2f689a236b7962 | kernel.org | Patch |
| https://git.kernel.org/stable/c/46f201f8b4c39633a1fa3dc12459f506d470993d | kernel.org | Patch |
| https://git.kernel.org/stable/c/6374fb9edf72c67a118a2c214a0dddd04c921e0a | kernel.org | Patch |
| https://git.kernel.org/stable/c/65fb14cbebb0cd0eff903a22d33537ddc8b95769 | kernel.org | Patch |
| https://git.kernel.org/stable/c/736b380e28d0480c7bc3e022f1950f31fe53a7c5 | kernel.org | Patch |
| https://git.kernel.org/stable/c/e9eacf19281ea2498b36291b56c9606118c2d74e | kernel.org | Patch |
This CVE is in CISA's Known Exploited Vulnerabilities Catalog
Reference CISA's BOD 22-01 and Known Exploited Vulnerabilities Catalog for further guidance and requirements.
| Vulnerability Name | Date Added | Due Date | Required Action |
|---|---|---|---|
| Linux Kernel Unspecified Vulnerability | Aug 27, 2026 | Aug 30, 2026 | Apply mitigations in accordance with vendor instructions, ensuring compliance with CISA’s BOD 26-04 Prioritizing Security Updates Based on Risk (see URL in Notes) guidance and CISA’s “Forensics Triage Requirements” (see URL in Notes). Follow applicable BOD 26-04 guidance for cloud services or discontinue use of the product if mitigations are unavailable. Stakeholders are responsible for evaluating each asset's internet exposure and ensuring adherence to BOD 26-04 patching guidelines. |
Weakness Enumeration
| CWE-ID | CWE Name | Source |
|---|---|---|
| CWE-787 | Out-of-bounds Write | [email protected] |
| CWE-122 | Heap-based Buffer Overflow | CISA-ADP |
Affected Products
| Product | Versions |
|---|---|
| linux linux kernel | >= 6.0, < 6.1.177 >= 6.2, < 6.6.144 >= 6.7, < 6.12.95 >= 6.13, < 6.18.38 >= 6.19, < 7.1.3 |
CPE
Remediation
| |
Change History
12 change records found show changes
| Date | Action | Recorded By |
|---|---|---|
| Aug 28, 2026 | CVE Modified | CISA-ADP |
| Aug 28, 2026 | Modified Analysis | [email protected] |
| Aug 28, 2026 | CVE Modified | CISA-ADP |
| Aug 27, 2026 | CVE Modified | CISA-ADP |
| Aug 27, 2026 | Modified Analysis | [email protected] |
| Aug 27, 2026 | CVE CISA KEV Update | Cybersecurity and Infrastructure Security Agency (CISA) U.S. Civilian Government |
| Aug 27, 2026 | CVE Modified | kernel.org |
| Aug 27, 2026 | CVE Modified | CISA-ADP |
| Aug 17, 2026 | CVE Modified | kernel.org |
| Jul 22, 2026 | Initial Analysis | [email protected] |
| Jul 18, 2026 | CVE Modified | kernel.org |
| Jul 4, 2026 | New CVE Received | kernel.org |