CVE-2026-43254
Last modified
CVE-2026-43254 is a high-severity vulnerability rated 7.5/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: ovpn: tcp - fix packet extraction from stream When processing TCP stream data in ovpn_tcp_recv, we receive large cloned skbs from __strp_rcv that may contain multiple coalesced packets. The current implementation has two bugs: 1. Header offset overflow: Using pskb_pull with large offsets on coalesced skbs causes skb->data - skb->head to exceed the u16 storage of skb->network_header. EPSS estimates a 0.45% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: ovpn: tcp - fix packet extraction from stream When processing TCP stream data in ovpn_tcp_recv, we receive large cloned skbs from __strp_rcv that may contain multiple coalesced packets. The current implementation has two bugs: 1. Header offset overflow: Using pskb_pull with large offsets on coalesced skbs causes skb->data - skb->head to exceed the u16 storage of skb->network_header. This causes skb_reset_network_header to fail on the inner decapsulated packet, resulting in packet drops. 2. Unaligned protocol headers: Extracting packets from arbitrary positions within the coalesced TCP stream provides no alignment guarantees for the packet data causing performance penalties on architectures without efficient unaligned access. Additionally, openvpn's 2-byte length prefix on TCP packets causes the subsequent 4-byte opcode and packet ID fields to be inherently misaligned. Fix both issues by allocating a new skb for each openvpn packet and using skb_copy_bits to extract only the packet content into the new buffer, skipping the 2-byte length prefix. Also, check the length before invoking the function that performs the allocation to avoid creating an invalid skb. If the packet has to be forwarded to userspace the 2-byte prefix can be pushed to the head safely, without misalignment. As a side effect, this approach also avoids the expensive linearization that pskb_pull triggers on cloned skbs with page fragments. In testing, this resulted in TCP throughput improvements of up to 74%.
Metrics
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
Weakness Enumeration
Affected Software
| Vendor | Product | Versions | Update |
|---|---|---|---|
| Linux | Linux Kernel | >= 6.16, < 6.18.16 | — |
| Linux | Linux Kernel | >= 6.19, < 6.19.6 | — |
| Linux | Linux Kernel | 7.0 | Rc1 |
References
Timeline
- Published
- Last Modified
- Status
- Analyzed
Frequently Asked Questions
What is CVE-2026-43254?
How severe is CVE-2026-43254?
How do I fix CVE-2026-43254?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-43249In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-4325A flaw was found in Keycloak. The SingleUseObjectProvider, a…5.3
- CVE-2026-43250In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-43251In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2026-43252In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2026-43253In the Linux kernel, the following vulnerability has been re…7.5
- CVE-2026-43255In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2026-43256In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-43257In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2026-43258In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-43259In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2026-4326The Vertex Addons for Elementor plugin for WordPress is vuln…8.8
Are you affected by CVE-2026-43254?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
