CVE-2026-43284
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: xfrm: esp: avoid in-place decrypt on shared skb frags MSG_SPLICE_PAGES can attach pages from a pipe directly to an skb. TCP marks such skbs with SKBFL_SHARED_FRAG after skb_splice_from_iter(), so later paths that may modify packet data can first make a private copy. The IPv4/IPv6 datagram append paths did not set this flag when splicing pages into UDP skbs. That leaves an ESP-in-UDP packet made from shared pipe pages looking like an ordinary uncloned nonlinear skb. ESP input then takes the no-COW fast path for uncloned skbs without a frag_list and decrypts in place over data that is not owned privately by the skb. Mark IPv4/IPv6 datagram splice frags with SKBFL_SHARED_FRAG, matching TCP. Also make ESP input fall back to skb_cow_data() when the flag is present, so ESP does not decrypt externally backed frags in place. Private nonlinear skb frags still use the existing fast path. This intentionally does not change ESP output. In esp_output_head(), the path that appends the ESP trailer to existing skb tailroom without calling skb_cow_data() is not reachable for nonlinear skbs: skb_tailroom() returns zero when skb->data_len is nonzero, while ESP tailen is positive. Thus ESP output will either use the separate destination-frag path or fall back to skb_cow_data().
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 race condition in Linux kernel's ESP (IPsec) input path allows in-place decryption on shared skb frags. When UDP datagrams receive spliced pipe pages, they don't mark them with SKBFL_SHARED_FRAG (unlike TCP), causing ESP to use a fast no-COW decryption path on data it doesn't privately own, leading to potential data corruption or information disclosure.
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>= 4.11, < 5.10.255>= 5.12, < 5.15.205>= 5.16, < 6.1.171>= 6.2, < 6.6.138>= 6.7, < 6.12.87>= 6.13, < 6.18.28>= 7.0, < 7.0.5CVSS 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
- High
- Availability
- High
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/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 kernel versionAffected if The version falls within any of the affected ranges: >= 4.11 and < 5.10.255, >= 5.12 and < 5.15.205, >= 5.16 and < 6.1.171, >= 6.2 and < 6.6.138, >= 6.7 and < 6.12.87, >= 6.13 and < 6.18.28, or >= 7.0 and < 7.0.5
-
Verify XFRM/ESP kernel support is enabledCheck if the kernel has XFRM and ESP support by running `grep -i xfrm /proc/config.gz 2>/dev/null || lsmod | grep xfrm`Affected if XFRM and ESP modules are loaded or compiled in, enabling IPsec functionality
-
Identify active ESP-in-UDP tunnelsRun `ip xfrm state` and `ip xfrm policy` to list active IPsec security associations and policies, then check `netstat -anu | grep -E ':(4500|500)\s'` for UDP encapsulationAffected if ESP-in-UDP tunnels (typically ports 4500 or 500) are active, meaning UDP-encapsulated ESP traffic is being processed
-
Check for splice operations with shared pagesInspect running services or applications that use splice() or sendpage() with shared memory pages alongside ESP-in-UDP, as this combination triggers the vulnerable code pathAffected if The system both uses ESP-in-UDP and performs datagram splice operations with potentially shared pipe pages
A system is affected if it runs a kernel version within the affected ranges AND processes ESP-in-UDP traffic while using splice operations that involve shared pages, as only this combination triggers the unsafe decryption path.
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 · scoped5.10.2555.15.2056.1.171
Apply the kernel patch that marks IPv4/IPv6 datagram splice frags with SKBFL_SHARED_FRAG and makes ESP input fall back to skb_cow_data() when this flag is present.
Upgrade to Linux kernel >= 5.10.255, >= 5.15.205, >= 6.1.171, or >= 6.6.138 (depending on which major version line you are on)
- Identify the currently running Linux kernel version using `uname -r`
- Determine which version range your current kernel falls into from the affected ranges: >= 4.11 and < 5.10.255, >= 5.12 and < 5.15.205, >= 5.16 and < 6.1.171, or >= 6.2 and < 6.6.138
- Plan downtime for kernel upgrade as this requires a system reboot
- Upgrade the Linux kernel to a version >= 5.10.255 (for 5.10.x line), >= 5.15.205 (for 5.15.x line), >= 6.1.171 (for 6.1.x line), or >= 6.6.138 (for 6.2+ lines)
- For Debian/Ubuntu: `apt-get update && apt-get install linux-image-<version>` and reboot
- For RHEL/CentOS: `yum update kernel` and reboot
- For Arch Linux: `pacman -Syu` and reboot
- For Fedora: `dnf update kernel` and reboot
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation2.0 h
- Implementation4.0 h
- Testing6.0 h
- Review / QA3.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $4,096.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2026-43284 — 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 sources- git.kernel.org
- github.com
- git.kernel.org
- git.kernel.org
- git.kernel.org
- git.kernel.org
- git.kernel.org
- git.kernel.org
- git.kernel.org
- github.com
- www.openwall.com
- git.kernel.org
- git.kernel.org
- git.kernel.org
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.vicarius.io
- www.vicarius.io
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- bugzilla.redhat.com
- cert-portal.siemens.com
- cert-portal.siemens.com
- security.access.redhat.com
- nvd.nist.gov
Practitioner notes
ContributedPeer-ranked notes from engineers who’ve handled CVE-2026-43284 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