CVE-2026-53091
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: net: pull headers in qdisc_pkt_len_segs_init() Most ndo_start_xmit() methods expects headers of gso packets to be already in skb->head. net/core/tso.c users are particularly at risk, because tso_build_hdr() does a memcpy(hdr, skb->data, hdr_len); qdisc_pkt_len_segs_init() already does a dissection of gso packets. Use pskb_may_pull() instead of skb_header_pointer() to make sure drivers do not have to reimplement this. Some malicious packets could be fed, detect them so that we can drop them sooner with a new SKB_DROP_REASON_SKB_BAD_GSO drop_reason.
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 confidenceThe Linux kernel's qdisc_pkt_len_segs_init() function fails to properly pull GSO (Generic Segmentation Offload) packet headers into skb->head before processing. This causes drivers expecting headers in skb->head (particularly TSO users in net/core/tso.c) to perform unsafe memory operations via memcpy() from skb->data, potentially leading to memory corruption or information disclosure. The fix adds pskb_may_pull() to ensure headers are pulled and introduces a new SKB_DROP_REASON_SKB_BAD_GSO drop reason for detecting malformed GSO packets.
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>= 3.16, < 7.0.10CVSS 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
- Local
- Complexity
- Low
- Privileges
- Low
- User interaction
- None
- Scope
- Changed
- Confidentiality
- High
- Integrity
- None
- Availability
- High
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:H/I:N/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 kernel version for vulnerability rangeRun `uname -r` or `cat /proc/version` to obtain the running kernel version. Compare against the kernel version that includes the fix (the patch replaces skb_header_pointer() with pskb_may_pull() in qdisc_pkt_len_segs_init).Affected if The kernel version is older than the version containing the security fix.
-
Verify GSO support is enabledCheck if Generic Segmentation Offload is enabled by running `ethtool -k <interface>` or looking for 'generic-segmentation-offload' in the output. Also check kernel config with `grep -i gso /boot/config-$(uname -r)` or `zcat /proc/config.gz 2>/dev/null | grep -i gso`.Affected if GSO is enabled on any active network interface and the kernel version is vulnerable.
-
Inspect qdisc_pkt_len_segs_init functionExamine the kernel source or module for the qdisc_pkt_len_segs_init function. Search for the presence of skb_header_pointer() calls within this function that have not been replaced with pskb_may_pull(). On live systems, this may require checking the vmlinux or kernel headers.Affected if The function still uses skb_header_pointer() without proper header pulling, indicating the vulnerability is present.
-
Check for SKB_DROP_REASON_SKB_BAD_GSO supportLook for the presence of SKB_DROP_REASON_SKB_BAD_GSO in the kernel source or check kernel logs for this drop reason. Search in /usr/include/linux/skbuff.h or use `grep -r 'SKB_DROP_REASON_SKB_BAD_GSO' /lib/modules/$(uname -r)/build/` if headers are available.Affected if The kernel lacks SKB_DROP_REASON_SKB_BAD_GSO support, suggesting the fix has not been applied.
A user is affected if running a kernel version lacking the fix (skb_header_pointer replaced with pskb_may_pull in qdisc_pkt_len_segs_init) with GSO enabled on their network interfaces.
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.
From vendor data7.0.10
Apply the kernel update containing this fix; ensure network drivers receive GSO packets with properly pulled headers. Monitor for the new SKB_DROP_REASON_SKB_BAD_GSO drop reason to detect exploitation attempts.
- Consultation2.0 h
- Implementation2.0 h
- Testing3.0 h
- Review / QA2.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $2,512.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2026-53091 — 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-53091 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