CVE-2026-53175
Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.
NVD · uneditedIn 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.
Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.
dbcve analysis · high confidenceA use-after-free vulnerability in the Linux kernel's inet fragment queue handling allows a stalled fragment that obtained a queue before netns teardown to dereference freed skb pointers after fqdir_pre_exit() flushes incomplete fragment queues. The flush helper frees skbs but leaves q->fragments_tail and q->last_run_head pointing at freed memory, and doesn't set INET_FRAG_COMPLETE, allowing a racing fragment to pass the completion check and cause a UAF.
Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.
Affected products & versions What the vendor confirmedThe version ranges the vendor confirmed as vulnerable. If your version sits inside a range here, treat yourself as exposed until you have upgraded.
NVD · CPE data>= 6.18.3, < 6.18.36>= 6.19.1, < 7.0.13= 6.12.93= 6.19= 7.1CVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.
From the vector- Attack vector
- Network
- Complexity
- Low
- Privileges
- None
- User interaction
- None
- Scope
- Unchanged
- Confidentiality
- High
- Integrity
- High
- Availability
- High
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
Am I affected? How to checkSteps we derive from the advisory and the affected-version data, so you can decide whether this CVE reaches your setup. They are a guide, not a scan — your own configuration is the authority.
dbcve checksWork through these to decide whether this CVE applies to you.
-
Check the running kernel versionRun `uname -r` or `cat /proc/version` to obtain the exact kernel versionAffected if The version matches one of the affected ranges: >= 6.18.3 and < 6.18.36, >= 6.19.1 and < 7.0.13, equals 6.12.93, equals 6.19, or equals 7.1
-
Identify if IP fragmentation is in useCheck for active fragment queues by examining `/proc/net/ipv4/ipfrag` (IPv4) and `/proc/net/ipv6/ip6_frag` (IPv6), or run `lsmod | grep -E 'ip_frag|nf_defrag|frag'` to see loaded fragmentation-related modulesAffected if Fragmentation is actively used (e.g., receiving fragmented packets, NAT/firewall rules processing fragments, or tunneled traffic) and the kernel version is in the affected range
-
Examine kernel logs for inet_frag crashesRun `dmesg | grep -iE 'inet_frag|ip_frag|use.after|slab' ` and review `/var/log/kern.log` (if available) for any UAF or slab corruption messages related to fragmentationAffected if Kernel oops or crash messages reference inet_frag_queue_insert, INET_FRAG_COMPLETE, or dangling fragment pointers (fragments_tail, last_run_head)
-
Check for netns teardown activity with fragmentsMonitor or review logs around network namespace destruction (docker/container deletion, vpn teardown, network namespace removal) for any associated crashesAffected if Crashes occur during or shortly after network namespace teardown operations while fragment processing was active
A system is affected if it runs a kernel version in the listed ranges and processes IP fragments, particularly in environments where network namespace teardown coincides with active fragmentation.
Generated from the published advisory. Verify against your own configuration.
Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.
dbcve · scoped6.18.367.0.13
Apply the kernel patch that resets rb_fragments, fragments_tail, and last_run_head in inet_frag_queue_flush() to prevent dereferencing freed skbs after flush. This is a kernel source code fix requiring recompilation.
6.18.36+ / 6.19.1+ / 7.0.13+ / 6.12.94+ (depending on branch)
- Identify the currently running kernel version using `uname -r`
- If running 6.18.x (>= 6.18.3, < 6.18.36), upgrade to kernel 6.18.36 or later
- If running 6.19.x (>= 6.19.1, < 7.0.13), upgrade to kernel 7.0.13 or later
- If running exactly 6.19, upgrade to kernel 6.19.1 or later
- If running exactly 6.12.93, upgrade to kernel 6.12.94 or later (or a later stable branch)
- Reboot the system to apply the new kernel
- Verify the fix is applied by checking the kernel version after reboot
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation4.0 h
- Implementation8.0 h
- Testing16.0 h
- Review / QA4.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $8,576.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2026-53175 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.
References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.
Primary sourcesPractitioner notes
ContributedPeer-ranked notes from engineers who’ve handled CVE-2026-53175 in production — separate from our analysis above.
The advisory tells you what broke. It rarely tells you what actually worked. If you’ve dealt with this one, that detail is what the next engineer is searching for.
- The version that genuinely resolved it — not the one the vendor claimed
- A config change or rule that shut the vector down
- A gotcha in the upgrade path that cost you an afternoon
No notes yet
Be the first to add a field note for this CVE — a mitigation you’ve verified, a version caveat, or a link to a working fix. Sign in above to contribute.
A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.
- Verified mitigations, workarounds, and config changes
- Version or environment caveats, and links to real fixes
- No weaponised exploit code, or anything meant to cause harm
- No spam, self-promotion, credentials, or personal data