Zero Day MonitorZDM
DashboardVulnerabilitiesTrendingZero-DaysNewsAbout
Login
ImpressumPrivacy Policy
Zero Day Monitor © 2026
3474 articles · 198450 vulns · 37/41 feeds (7d)
← Back to list
7.8
CVE-2026-53362KEVEXPLOITEDPATCHED
linux · linux_kernel

ipv6: account for fraggap on the paged allocation path

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.

Affected Products

VendorProductVersions
linuxlinux_kernel773ba4fe9104a64a54d1c00f0fb6ffb95def2b03, 773ba4fe9104a64a54d1c00f0fb6ffb95def2b03, 773ba4fe9104a64a54d1c00f0fb6ffb95def2b03, 773ba4fe9104a64a54d1c00f0fb6ffb95def2b03, 773ba4fe9104a64a54d1c00f0fb6ffb95def2b03, 773ba4fe9104a64a54d1c00f0fb6ffb95def2b03, 6.0

Also Affects

Downstream vendors/products affected by this vulnerability

VendorProductSourceConfidence
debiandebian linuxcert_advisory90%
linuxlinuxmitre_affected90%
open sourceopen source linux kernelcert_advisory90%

References

  • https://git.kernel.org/stable/c/14200d435af9a9eeb444f529fc2f689a236b7962
  • https://git.kernel.org/stable/c/65fb14cbebb0cd0eff903a22d33537ddc8b95769
  • https://git.kernel.org/stable/c/46f201f8b4c39633a1fa3dc12459f506d470993d
  • https://git.kernel.org/stable/c/6374fb9edf72c67a118a2c214a0dddd04c921e0a
  • https://git.kernel.org/stable/c/e9eacf19281ea2498b36291b56c9606118c2d74e
  • https://git.kernel.org/stable/c/736b380e28d0480c7bc3e022f1950f31fe53a7c5

Related News (11 articles)

Tier D
The Hacker News5h ago
OpenAI Says Reward Hacking Drove AI Agents to Exploit Zero-Days and Breach Hugging Face
→ No new info (linked only)
Tier B
CERT-FR27d ago
Multiples vulnérabilités dans le noyau Linux de Debian LTS (31 juillet 2026)
→ No new info (linked only)
Tier B
CERT-FR27d ago
Multiples vulnérabilités dans le noyau Linux de SUSE (31 juillet 2026)
→ No new info (linked only)
Tier B
CERT-FR34d ago
Multiples vulnérabilités dans le noyau Linux de SUSE (24 juillet 2026)
→ No new info (linked only)
Tier B
CERT-FR34d ago
Multiples vulnérabilités dans le noyau Linux de Debian LTS (24 juillet 2026)
→ No new info (linked only)
Tier E
Lobsters Security36d ago
Frag Gap (CVE-2026-53362, CVE-2026-53366)
→ No new info (linked only)
Tier C
oss-security36d ago
Re: CVE-2026-53362, CVE-2026-53366: OOB write in UDP MSG_SPLICE_PAGES fragment-boundary handling in Linux kernel
→ No new info (linked only)
Tier C
oss-security38d ago
CVE-2026-53362, CVE-2026-53366: OOB write in UDP MSG_SPLICE_PAGES fragment-boundary handling in Linux kernel
→ No new info (linked only)
Tier B
BSI Advisories52d ago
[NEU] [mittel] Linux Kernel: Mehrere Schwachstellen
→ No new info (linked only)
Tier C
VulDB54d ago
CVE-2026-53362 | Linux Kernel up to 7.1.2 ipv6 __ip6_append_data end allocation of resources
→ No new info (linked only)
Tier C
Linux Kernel CVEs54d ago
CVE-2026-53362: ipv6: account for fraggap on the paged allocation path
→ No new info (linked only)
CVSS 3.17.8 HIGH
VectorCVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
CISA KEV✅ Yes
Actively exploited✅ Yes
Patch available
14200d435af9a9eeb444f529fc2f689a236b796265fb14cbebb0cd0eff903a22d33537ddc8b9576946f201f8b4c39633a1fa3dc12459f506d470993d6374fb9edf72c67a118a2c214a0dddd04c921e0ae9eacf19281ea2498b36291b56c9606118c2d74e736b380e28d0480c7bc3e022f1950f31fe53a7c506.1.1776.6.1446.12.956.18.387.1.37.2-rc1
PublishedJul 4, 2026
Last enriched38d agov3
Tags
CVE-2026-53362CVE-2026-53366UDP_CORKMSG_SPLICE_PAGESOOB_writeLPEheap_corruption
Trending Score125🔥
Source articles11
Independent7
Info Completeness9/14
Missing: epss, cwe, kev, iocs, mitre_attack

Community Vote

0
Login to vote
0 upvotes0 downvotes
No votes yet

Related CVEs (5)

HIGHCVE-2026-53359EXP
KVM: x86: Fix shadow paging use-after-free due to unexpected role
Trending: 95
HIGHCVE-2026-46331EXP
net/sched: fix pedit partial COW leading to page cache corruption
Trending: 94
CRITICALCVE-2026-53006EXP
ipv6: fix possible UAF in icmpv6_rcv()
Trending: 67
HIGHCVE-2026-46259EXP
procfs: fix missing RCU protection when reading real_parent in do_task_stat()
Trending: 59
HIGHCVE-2026-52923
ipc: limit next_id allocation to the valid ID range
Trending: 50

Pin to Dashboard

Verification

State: verified
Confidence: 0%

Vulnerability Timeline

CVE Published
Jul 4, 2026
Added to CISA KEV
Jul 4, 2026
Discovered by ZDM
Jul 4, 2026
Updated: affectedVersions, tags
Jul 4, 2026
Updated: description, severity, cvssEstimate, exploitAvailable, tags
Jul 20, 2026
Actively Exploited
Aug 17, 2026
Exploit Available
Aug 17, 2026
Patch Available
Aug 17, 2026

Version History

v3
Last enriched 38d ago
v3Tier C38d ago

Updated severity to CRITICAL due to exploitability for local privilege escalation, added technical details on OOB write mechanism (15-byte controlled write into skb_shared_info), marked exploitAvailable as true, and added related CVE-2026-53366 (IPv4 variant) and exploitation tags.

descriptionseveritycvssEstimateexploitAvailabletags
via oss-security
v2Tier C54d ago

Updated affected versions, changed severity to CRITICAL, and added CVE-2026-53362 tag.

affectedVersionstags
via VulDB
v154d ago

Initial creation