Skip to main content

Linux Kernel CVE-2026-53175

| EUVDEUVD-2026-39266 CRITICAL
Use After Free (CWE-416)
2026-06-25 416baaa9-dc9f-4396-8d5f-8c081fb06d67 GHSA-j4jv-fp59-574f
9.8
CVSS 3.1 · Vendor: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
Share

Severity by source

Vendor (416baaa9-dc9f-4396-8d5f-8c081fb06d67) PRIMARY
9.8 CRITICAL
AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
vuln.today AI
7.0 HIGH

Trigger is a local teardown-vs-reassembly race needing namespace control, so AV:L/AC:H/PR:L; a kernel slab UAF can corrupt memory, giving C:H/I:H/A:H.

3.1 AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H
4.0 AV:L/AC:H/AT:P/PR:L/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N
SUSE
5.5 HIGH
AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
Red Hat
7.0 HIGH
qualitative

Primary rating from Vendor (416baaa9-dc9f-4396-8d5f-8c081fb06d67).

CVSS VectorVendor: 416baaa9-dc9f-4396-8d5f-8c081fb06d67

Attack Vector
Network
Attack Complexity
Low
Privileges Required
None
User Interaction
None
Scope
Unchanged
Confidentiality
High
Integrity
High
Availability
High

Lifecycle Timeline

5
Analysis Generated
Jun 28, 2026 - 09:21 vuln.today
CVSS changed
Jun 28, 2026 - 08:22 NVD
9.8 (CRITICAL)
Patch available
Jun 25, 2026 - 10:32 EUVD
CVE Published
Jun 25, 2026 - 09:16 cve.org
UNKNOWN (no severity yet)
CVE Published
Jun 25, 2026 - 09:16 cve.org
CRITICAL 9.8

DescriptionCVE.org

In the Linux kernel, the following vulnerability has been resolved:

inet: frags: fix use-after-free caused by the fqdir_pre_exit() flush

On netns teardown, fqdir_pre_exit() walks the fqdir rhashtable and flushes every fragment queue that is not yet complete using inet_frag_queue_flush(). That helper frees all the skbs queued on the fragment queue but does not set INET_FRAG_COMPLETE, and leaves q->fragments_tail and q->last_run_head pointing at the freed skbs. The queue itself stays in the rhashtable.

fqdir_pre_exit() first lowers high_thresh to 0 to stop new queue lookups, but it cannot stop a fragment that already obtained the queue through inet_frag_find() earlier and stalled just before taking the queue lock. Once that fragment resumes after the flush and takes the queue lock, it passes the INET_FRAG_COMPLETE check and then dereferences the freed fragments_tail. inet_frag_queue_insert() reads FRAG_CB() and ->len of that pointer and, on the append path, writes ->next_frag, causing a slab use-after-free. IPv6, nf_conntrack_reasm6 and 6lowpan reassembly share the same flush path and are affected as well.

Reset rb_fragments, fragments_tail and last_run_head in inet_frag_queue_flush() so a flushed queue no longer points at the freed skbs. A fragment that resumes after the flush and takes the queue lock then finds an empty queue and starts a new run instead of dereferencing the freed fragments_tail. ip_frag_reinit() already performed this reset after its own flush, so drop the now duplicate code there.

AnalysisAI

Slab use-after-free in the Linux kernel's IP fragment reassembly (inet frags) layer occurs during network namespace teardown: fqdir_pre_exit() flushes incomplete fragment queues via inet_frag_queue_flush() without clearing q->fragments_tail/last_run_head, so a fragment reassembly already in flight resumes after the flush and dereferences freed skbs. IPv4, IPv6, nf_conntrack_reasm6, and 6lowpan reassembly all share the affected flush path. There is no public exploit identified at time of analysis, and EPSS is low (0.18%, 7th percentile); NVD scores it CVSS 9.8 (AV:N), but the bug is fundamentally a teardown-vs-reassembly race, so the network-unauthenticated framing overstates practical reachability.

Technical ContextAI

The affected subsystem is the kernel's generic inet fragments framework (net/ipv4/inet_fragment.c and callers), which buffers out-of-order IP fragments in a per-netns rhashtable (fqdir) until a datagram can be reassembled. Each fragment queue tracks queued skbs through q->rb_fragments, q->fragments_tail, and q->last_run_head. On netns teardown, fqdir_pre_exit() lowers high_thresh to 0 to block new lookups and flushes every not-yet-complete queue, but inet_frag_queue_flush() freed the skbs without setting INET_FRAG_COMPLETE and left the tail/run pointers dangling. A reassembly thread that had already obtained the queue via inet_frag_find() and stalled before the queue lock then passes the COMPLETE check and, in inet_frag_queue_insert(), reads FRAG_CB()/->len of the freed tail and writes ->next_frag on the append path - a classic use-after-free. The root-cause class is CWE-416 (Use After Free) despite the feed listing CWE as N/A and tagging it 'Information Disclosure'; the fix resets rb_fragments, fragments_tail, and last_run_head in inet_frag_queue_flush() (and removes the now-duplicate reset in ip_frag_reinit()).

RemediationAI

Apply the vendor-released stable patch for your branch: upgrade to Linux 6.12.94 or later on the 6.12 series, 6.18.36 or later on the 6.18 series, 7.0.13 or later on the 7.0 series, or 7.1 on the development line, per the EUVD fixed-version data. If you build from source, cherry-pick the upstream fix commits (git.kernel.org/stable/c/89b909e9704587bfecc1aab1d37e98faee03b9f9 and the related 010c3313a4d1, 0e823ca0e739, 32594b09854970d, c22599cc90e1) which reset rb_fragments/fragments_tail/last_run_head in inet_frag_queue_flush(). Because the bug is a kernel-internal teardown race there is no clean in-kernel feature toggle, so where immediate patching is impossible the most effective compensating control is to remove the attacker's ability to drive the race on shared hosts: disable unprivileged user/network-namespace creation (e.g., sysctl kernel.unprivileged_userns_clone=0 or user.max_user_namespaces=0), accepting that this can break container runtimes and sandboxes that rely on rootless namespaces. As a secondary, lower-value measure you can reduce fragment churn by rate-limiting or dropping IP fragments at the host firewall on untrusted interfaces, with the trade-off that legitimate fragmented traffic (some VPN/UDP/DNSSEC flows) may be impacted; this does not close the race but shrinks the window. Track distribution kernel advisories for backported builds matching your running series.

Vendor StatusVendor

SUSE

Severity: Important
Product Status
SUSE Linux Enterprise Desktop 15 SP7 Affected
SUSE Linux Enterprise Desktop 15 SP7 Affected
SUSE Linux Enterprise High Availability Extension 15 SP7 Affected
SUSE Linux Enterprise High Availability Extension 15 SP7 Affected
SUSE Linux Enterprise High Availability Extension 16.0 Affected

Share

CVE-2026-53175 vulnerability details – vuln.today

This site uses cookies essential for authentication and security. No tracking or analytics cookies are used. Privacy Policy