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

Bluetooth: ISO: fix UAF in iso_recv_frame

iso_recv_frame reads conn->sk under iso_conn_lock but releases the lock
before using sk, with no reference held. A concurrent iso_sock_kill()
can free sk in that window, causing use-after-free on sk->sk_state and
sock_queue_rcv_skb().

Fix by replacing the bare pointer read with iso_sock_hold(conn), which
calls sock_hold() while the spinlock is held, atomically elevating the
refcount before the lock drops. Add a drop_put label so sock_put() is
called on all exit paths where the hold succeeded.
Published: 2026-07-19
Score: 8.8 High
EPSS: < 1% Very Low
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

This vulnerability is a use‑after‑free in the Linux kernel’s Bluetooth ISO stack. In iso_recv_frame, the socket reference is released before the spinlock is dropped, giving a concurrent iso_sock_kill() the opportunity to free the socket and leave the code to dereference an invalid pointer. The flaw can result in memory corruption or a kernel crash, which in the right conditions could allow an attacker to execute arbitrary code.

Affected Systems

All Linux kernel releases that incorporate the original iso_recv_frame implementation are affected. The vulnerability was fixed in the kernel commit 119fb6f80c44dc1c65d604cf28e64c56bd9b6568, so any distribution using a kernel older than that commit is impacted. Users of any Linux distribution that has not yet applied the patch, or are running a kernel backported without the fix, remain vulnerable.

Risk and Exploitability

The CVSS base score of 8.8 represents a high‑severity security flaw but does not directly indicate the likelihood of exploitation. The EPSS score of less than 1% shows that, at the time of this analysis, the probability of an exploit being seen in the wild is low. The vulnerability is not listed in the U.S. CISA KEV catalog. Exploitation would require crafting a race condition between iso_recv_frame and iso_sock_kill(), typically through a malicious Bluetooth ISO packet or an active local user with the ability to send such frames. If the machine’s Bluetooth services are exposed to remote devices, an attacker could potentially trigger the condition without local access, although the specific feasibility depends on the system’s Bluetooth configuration and security policies.

Generated by OpenCVE AI on August 4, 2026 at 06:36 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Upgrade the Linux kernel to a version that includes the iso_sock_hold and drop_put fixes (commit 119fb6f80c44dc1c65d604cf28e64c56bd9b6568).
  • Reboot the system after the kernel update to ensure the new kernel is active.
  • If an update cannot be applied immediately, disable the Bluetooth ISO subsystem by turning off the Bluetooth service or unloading the related modules so that no open ISO connections can be established.

Generated by OpenCVE AI on August 4, 2026 at 06:36 UTC.

Tracking

Sign in to view the affected projects.

Advisories
Source ID Title
Ubuntu USN Ubuntu USN USN-8593-1 Linux kernel vulnerabilities
Ubuntu USN Ubuntu USN USN-8603-1 Linux kernel (Azure) vulnerabilities
Ubuntu USN Ubuntu USN USN-8618-1 Linux kernel vulnerabilities
History

Sun, 26 Jul 2026 08:45:00 +0000

Type Values Removed Values Added
Weaknesses CWE-416

Wed, 22 Jul 2026 18:45:00 +0000

Type Values Removed Values Added
Weaknesses CWE-416

Wed, 22 Jul 2026 00:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-366
References
Metrics threat_severity

None

threat_severity

Moderate


Mon, 20 Jul 2026 14:45:00 +0000

Type Values Removed Values Added
Metrics cvssV3_1

{'score': 8.8, 'vector': 'CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H'}


Sun, 19 Jul 2026 15:30:00 +0000

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: Bluetooth: ISO: fix UAF in iso_recv_frame iso_recv_frame reads conn->sk under iso_conn_lock but releases the lock before using sk, with no reference held. A concurrent iso_sock_kill() can free sk in that window, causing use-after-free on sk->sk_state and sock_queue_rcv_skb(). Fix by replacing the bare pointer read with iso_sock_hold(conn), which calls sock_hold() while the spinlock is held, atomically elevating the refcount before the lock drops. Add a drop_put label so sock_put() is called on all exit paths where the hold succeeded.
Title Bluetooth: ISO: fix UAF in iso_recv_frame
First Time appeared Linux
Linux linux Kernel
CPEs cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
Vendors & Products Linux
Linux linux Kernel
References

Subscriptions

Linux Linux Kernel
cve-icon MITRE

Status: PUBLISHED

Assigner: Linux

Published:

Updated: 2026-08-05T12:37:33.099Z

Reserved: 2026-07-19T07:54:57.023Z

Link: CVE-2026-63946

cve-icon Vulnrichment

No data.

cve-icon NVD

No data.

cve-icon Redhat

Severity : Moderate

Publid Date: 2026-07-19T00:00:00Z

Links: CVE-2026-63946 - Bugzilla

cve-icon OpenCVE Enrichment

Updated: 2026-08-04T06:45:03Z

Weaknesses
  • CWE-366

    Race Condition within a Thread