Skip to main content

Linux Kernel CVE-2026-43023

| EUVDEUVD-2026-26622 HIGH
Race Condition (CWE-362)
2026-05-01 Linux
7.8
CVSS 3.1 · NVD
Share

Severity by source

NVD PRIMARY
7.8 HIGH
AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
SUSE
HIGH
qualitative
Red Hat
7.0 MEDIUM
qualitative

Primary rating from NVD.

CVSS VectorNVD

CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
Attack Vector
Local
Attack Complexity
Low
Privileges Required
Low
User Interaction
None
Scope
Unchanged
Confidentiality
High
Integrity
High
Availability
High

Lifecycle Timeline

7
Analysis Generated
May 03, 2026 - 07:34 vuln.today
CVSS changed
May 03, 2026 - 07:22 NVD
7.8 (HIGH)
Patch released
May 03, 2026 - 07:16 nvd
Patch available
Patch available
May 01, 2026 - 16:33 EUVD
EUVD ID Assigned
May 01, 2026 - 15:00 euvd
EUVD-2026-26622
Analysis Generated
May 01, 2026 - 15:00 vuln.today
CVE Published
May 01, 2026 - 14:15 nvd
HIGH 7.8

DescriptionCVE.org

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

Bluetooth: SCO: fix race conditions in sco_sock_connect()

sco_sock_connect() checks sk_state and sk_type without holding the socket lock. Two concurrent connect() syscalls on the same socket can both pass the check and enter sco_connect(), leading to use-after-free.

The buggy scenario involves three participants and was confirmed with additional logging instrumentation:

Thread A (connect): HCI disconnect: Thread B (connect):

sco_sock_connect(sk) sco_sock_connect(sk) sk_stateBT_OPEN sk_stateBT_OPEN (pass, no lock) (pass, no lock) sco_connect(sk): sco_connect(sk): hci_dev_lock hci_dev_lock hci_connect_sco <- blocked -> hcon1 sco_conn_add->conn1 lock_sock(sk) sco_chan_add: conn1->sk = sk sk->conn = conn1 sk_state=BT_CONNECT release_sock hci_dev_unlock hci_dev_lock sco_conn_del: lock_sock(sk) sco_chan_del: sk->conn=NULL conn1->sk=NULL sk_state= BT_CLOSED SOCK_ZAPPED release_sock hci_dev_unlock (unblocked) hci_connect_sco -> hcon2 sco_conn_add -> conn2 lock_sock(sk) sco_chan_add: sk->conn=conn2 sk_state= BT_CONNECT // zombie sk! release_sock hci_dev_unlock

Thread B revives a BT_CLOSED + SOCK_ZAPPED socket back to BT_CONNECT. Subsequent cleanup triggers double sock_put() and use-after-free. Meanwhile conn1 is leaked as it was orphaned when sco_conn_del() cleared the association.

Fix this by:

  • Moving lock_sock() before the sk_state/sk_type checks in

sco_sock_connect() to serialize concurrent connect attempts

  • Fixing the sk_type != SOCK_SEQPACKET check to actually

return the error instead of just assigning it

  • Adding a state re-check in sco_connect() after lock_sock()

to catch state changes during the window between the locks

  • Adding sco_pi(sk)->conn check in sco_chan_add() to prevent

double-attach of a socket to multiple connections

  • Adding hci_conn_drop() on sco_chan_add failure to prevent

HCI connection leaks

AnalysisAI

Race condition in the Linux kernel's Bluetooth SCO socket implementation allows local authenticated users to trigger use-after-free and memory corruption via concurrent connect() syscalls on the same socket. The vulnerability affects the sco_sock_connect() function which fails to properly serialize state checks, enabling two threads to simultaneously progress through connection setup on a socket already marked for cleanup, leading to double-free conditions and connection object leaks. Vendor-released patches are available for kernel versions 6.1.168, 6.6.134, 6.12.81, 6.18.22, 6.19.12, and mainline 7.0. EPSS score of 0.02% indicates very low observed exploitation probability, and no public exploit or CISA KEV listing exists at time of analysis.

Technical ContextAI

This vulnerability resides in the Linux kernel's Bluetooth Synchronous Connection-Oriented (SCO) socket implementation (net/bluetooth/sco.c), specifically in the sco_sock_connect() function. SCO is used for audio data transmission in Bluetooth, commonly for headsets and voice calls. The root cause is a classic time-of-check-time-of-use (TOCTOU) race condition where socket state (sk_state) and type (sk_type) are validated without holding the socket lock. The affected code path involves complex multi-threaded interactions between userspace connect() syscalls, HCI (Host Controller Interface) event handlers processing Bluetooth disconnect events, and the socket state machine. The CPE identifiers point to the core Linux kernel package across multiple stable branches. The vulnerability was introduced in commit 9a8ec9e8ebb5 and fixed through multiple backports to stable kernel series, indicating this is baseline kernel code rather than a distribution-specific module.

RemediationAI

Upgrade to a patched kernel version: 6.1.168 or later for the 6.1 series, 6.6.134 or later for 6.6, 6.12.81 or later for 6.12, 6.18.22 or later for 6.18, 6.19.12 or later for 6.19, or mainline kernel 7.0 or later. Consult your Linux distribution's security advisory for distribution-specific patched kernel packages (RHEL, Ubuntu, Debian, SUSE typically release security updates within days of upstream fixes). After installing the updated kernel, a system reboot is required for the fix to take effect. For systems where immediate patching is not feasible, consider these compensating controls with trade-offs: disable the Bluetooth subsystem entirely by blacklisting the bluetooth kernel module (echo 'blacklist bluetooth' >> /etc/modprobe.d/blacklist-bluetooth.conf and reboot), which eliminates Bluetooth functionality system-wide; restrict access to Bluetooth device nodes via udev rules limiting permissions to trusted users only, though this does not prevent exploitation by those authorized users; or implement mandatory access controls (SELinux/AppArmor) with policies preventing untrusted local users from accessing Bluetooth sockets, though policy development requires expertise and testing. The most reliable mitigation remains kernel patching per vendor advisories.

Vendor StatusVendor

SUSE

Severity: High
Product Status
SUSE Linux Enterprise Desktop 15 SP7 Fixed
SUSE Linux Enterprise Desktop 15 SP7 Fixed
SUSE Linux Enterprise High Availability Extension 15 SP7 Fixed
SUSE Linux Enterprise High Availability Extension 15 SP7 Fixed
SUSE Linux Enterprise High Performance Computing 15 SP7 Fixed

Share

CVE-2026-43023 vulnerability details – vuln.today

This site uses cookies essential for authentication and security. No tracking or analytics cookies are used. Privacy Policy