Skip to main content

Over 150 LLM Providers · Over 5,300 Models The most extensible AI-powered pentesting platform. Open source. Star on GitHub

CVE-2026-43011

9.8 · CRITICAL
Published May 1, 2026 linux CWE-415

Overview

CVE-2026-43011 is a critical-severity vulnerability affecting linux linux_kernel. It was published on May 1, 2026 and has a CVSS 3.1 base score of 9.8 (CRITICAL).

This vulnerability has a CVSS 3.1 base score of 9.8, rated CRITICAL. It can be exploited remotely over the network. No authentication or special privileges are required for exploitation.

Technical Description

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

net/x25: Fix potential double free of skb

When alloc_skb fails in x25_queue_rx_frame it calls kfree_skb(skb) at

line 48 and returns 1 (error).

This error propagates back through the call chain:

x25_queue_rx_frame returns 1

|

v

x25_state3_machine receives the return value 1 and takes the else

branch at line 278, setting queued=0 and returning 0

|

v

x25_process_rx_frame returns queued=0

|

v

x25_backlog_rcv at line 452 sees queued=0 and calls kfree_skb(skb)

again

This would free the same skb twice. Looking at x25_backlog_rcv:

net/x25/x25_in.c:x25_backlog_rcv() {

...

queued = x25_process_rx_frame(sk, skb);

...

if (!queued)

kfree_skb(skb);

}

Remediation

Check the references section for vendor advisories and patches from linux. Update linux_kernel to the latest patched version. If immediate patching is not possible, review the CVSS vector to understand the attack surface and apply compensating controls such as network segmentation or access restrictions.

Affected Products

Vendor Product Versions Status
linux linux_kernel >= 2.6.12.1, < 5.10.253 Affected

Frequently Asked Questions

What is CVE-2026-43011?

CVE-2026-43011 is a critical-severity vulnerability affecting linux linux_kernel. It was published on May 1, 2026 and has a CVSS 3.1 base score of 9.8 (CRITICAL).

How severe is CVE-2026-43011?

This vulnerability has a CVSS 3.1 base score of 9.8, rated CRITICAL. It can be exploited remotely over the network. No authentication or special privileges are required for exploitation.

How do I fix or remediate CVE-2026-43011?

Check the references section for vendor advisories and patches from linux. Update linux_kernel to the latest patched version. If immediate patching is not possible, review the CVSS vector to understand the attack surface and apply compensating controls such as network segmentation or access restrictions.

How can CyberStrike help with CVE-2026-43011?

CyberStrike's AI-powered security agents can automatically detect CVE-2026-43011 across your infrastructure using autonomous pentesting, DAST scanning, and HackBrowser. The platform continuously monitors for known vulnerabilities and provides actionable remediation guidance prioritized by real-world exploitability.