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

Bluetooth: ISO: fix refcounting of iso_conn

iso_conn_del() and iso_chan_del() have a race that results to double-put
of iso_conn:

[Task hdev->workqueue] [Task 2]
iso_conn_del iso_chan_del
iso_conn_hold_unless_zero iso_conn_lock
iso_conn_lock conn->sk = NULL
iso_conn_unlock
sk = iso_sock_hold(conn) <---------´
if (!sk) iso_conn_put iso_conn_put
iso_conn_put /* UAF */

The extra put for !sk in iso_conn_del() is currently required since
failing iso_chan_add() may leave iso_conn not associated with any sk.

Fix by having iso_pi(sk)->conn own refcount when non-NULL, so
iso_conn_del does not need to put it. Adjust the iso_conn_add()
refcounting so that conn is put if it does not get associated with an
sk.
Published: 2026-08-15
Score: 8.8 High
EPSS: < 1% Very Low
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

A race between iso_conn_del() and iso_chan_del() allows the reference counter for an iso_conn object to be decremented twice, bringing it below zero. This underflow frees the object while it remains reachable, creating a use‑after‑free in kernel space. The flaw is specific to the Bluetooth ISO subsystem of the Linux kernel and was discovered in the refcounting logic for iso_conn during channel addition failures.

Affected Systems

All Linux kernel builds that include the Bluetooth ISO device driver are affected. The vendor list identifies Linux kernel as the impacted product; no specific release numbers are enumerated, so any kernel released before the patch commits remains vulnerable.

Risk and Exploitability

The CVSS score of 8.8 classifies this as a high‑severity flaw. The EPSS score of <1% indicates that exploitation attempts are statistically unlikely at the present time, and the vulnerability is not listed in the CISA KEV catalog. However, a skilled attacker who can trigger the race—either locally via a privileged process or remotely through a crafted Bluetooth ISO packet—could execute arbitrary code with kernel privileges. The attack vector is inferred to be Bluetooth ISO traffic or local configuration manipulation, based on the nature of the affected subsystem.

Generated by OpenCVE AI on August 22, 2026 at 04:54 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Apply a kernel update that includes the referenced patch commits (3b921533e8aa95b77aadcf31737595578e735f3c, 8208b4939afb0a1977fffe902c3ca42fe0f3baaa, fdfde532ab1caa165fcd8985001157ac8b4db365).
  • If an immediate update is infeasible, back‑port the exact patch changes from the kernel source tree and rebuild your kernel.
  • After updating or back‑porting, reboot the system or restart the Bluetooth service to clear any lingering iso_conn objects.
  • As a temporary hardening measure, disable the Bluetooth ISO subsystem or unload the corresponding kernel module until a patch is applied.

Generated by OpenCVE AI on August 22, 2026 at 04:54 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Sat, 22 Aug 2026 03:00:00 +0000

Type Values Removed Values Added
Weaknesses CWE-367

Sat, 22 Aug 2026 00:15:00 +0000

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

None

threat_severity

Moderate


Mon, 17 Aug 2026 15:45:00 +0000

Type Values Removed Values Added
Weaknesses CWE-367

Mon, 17 Aug 2026 12:00:00 +0000

Type Values Removed Values Added
Weaknesses CWE-362
CWE-784

Mon, 17 Aug 2026 06:00: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'}


Sat, 15 Aug 2026 16:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-362
CWE-784

Sat, 15 Aug 2026 12:45:00 +0000

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: Bluetooth: ISO: fix refcounting of iso_conn iso_conn_del() and iso_chan_del() have a race that results to double-put of iso_conn: [Task hdev->workqueue] [Task 2] iso_conn_del iso_chan_del iso_conn_hold_unless_zero iso_conn_lock iso_conn_lock conn->sk = NULL iso_conn_unlock sk = iso_sock_hold(conn) <---------´ if (!sk) iso_conn_put iso_conn_put iso_conn_put /* UAF */ The extra put for !sk in iso_conn_del() is currently required since failing iso_chan_add() may leave iso_conn not associated with any sk. Fix by having iso_pi(sk)->conn own refcount when non-NULL, so iso_conn_del does not need to put it. Adjust the iso_conn_add() refcounting so that conn is put if it does not get associated with an sk.
Title Bluetooth: ISO: fix refcounting of iso_conn
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-17T05:48:23.337Z

Reserved: 2026-08-15T05:44:03.913Z

Link: CVE-2026-74534

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-08-15T13:17:58.700

Modified: 2026-08-17T06:19:50.400

Link: CVE-2026-74534

cve-icon Redhat

Severity : Moderate

Publid Date: 2026-08-15T00:00:00Z

Links: CVE-2026-74534 - Bugzilla

cve-icon OpenCVE Enrichment

Updated: 2026-08-22T05:00:13Z

Weaknesses
  • CWE-825

    Expired Pointer Dereference