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

Bluetooth: ISO: Fix a use-after-free of the hci_conn pointer

In iso_sock_rebind_bc(), the bis pointer is cached, then the socket lock is
dropped:
bis = iso_pi(sk)->conn->hcon;
/* Release the socket before lookups since that requires hci_dev_lock
* which shall not be acquired while holding sock_lock for proper
* ordering.
*/
release_sock(sk);
hci_dev_lock(bis->hdev);

During the unlocked window, could a concurrent close() destroy the connection
and free the bis structure, causing hci_dev_lock(bis->hdev) to access memory
after it is freed, fix this by using the hdev reference which was safely
acquired via iso_conn_get_hdev().
Published: 2026-06-25
Score: 7.8 High
EPSS: < 1% Very Low
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

This flaw is a classic use‑after‑free in the Linux kernel’s Bluetooth ISO implementation. During a socket rebind, the code caches a connection pointer, releases the socket lock, then accesses the hardware device field. If another thread closes the socket in the brief unlocked window, the connection object can be freed, causing the kernel to dereference freed memory and crash. The vulnerability is a CWE‑416 scenario involving a race condition and memory corruption.

Affected Systems

All Linux kernel builds that contain the Bluetooth ISO subsystem before the patch commits referenced in the advisory. No precise release numbers are listed, so any kernel version that predates the commits may be vulnerable. The vulnerability affects the kernel itself, not user space applications.

Risk and Exploitability

The CVSS score of 7.8 indicates a high severity issue. Inference from the description suggests the attack requires local or privileged access to orchestrate concurrent socket operations, though this is not explicitly stated in the advisory. The EPSS score of less than 1% implies a very low likelihood of real‑world exploitation, and the flaw is not in the CISA KEV catalog. An attacker who succeeds would cause a kernel crash, which can serve as a denial‑of‑service or, if executed with elevated rights, a privilege‑escalation vector.

Generated by OpenCVE AI on June 28, 2026 at 14:02 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Apply the patch commit from the advisory (c324b8aa20bd3c3394e3647dc22491d88f3f4e7a) and rebuild the kernel
  • Upgrade to a kernel version that includes the fixed Bluetooth ISO logic
  • If an immediate kernel update is not feasible, disable the Bluetooth ISO networking feature as a temporary mitigation

Generated by OpenCVE AI on June 28, 2026 at 14:02 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Tue, 30 Jun 2026 00:45:00 +0000


Sun, 28 Jun 2026 14:30:00 +0000

Type Values Removed Values Added
Weaknesses CWE-416

Sun, 28 Jun 2026 12:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-416
CWE-813

Sun, 28 Jun 2026 08:00:00 +0000

Type Values Removed Values Added
Metrics cvssV3_1

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


Thu, 25 Jun 2026 13:00:00 +0000

Type Values Removed Values Added
Weaknesses CWE-416
CWE-813

Thu, 25 Jun 2026 09:15:00 +0000

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: Bluetooth: ISO: Fix a use-after-free of the hci_conn pointer In iso_sock_rebind_bc(), the bis pointer is cached, then the socket lock is dropped: bis = iso_pi(sk)->conn->hcon; /* Release the socket before lookups since that requires hci_dev_lock * which shall not be acquired while holding sock_lock for proper * ordering. */ release_sock(sk); hci_dev_lock(bis->hdev); During the unlocked window, could a concurrent close() destroy the connection and free the bis structure, causing hci_dev_lock(bis->hdev) to access memory after it is freed, fix this by using the hdev reference which was safely acquired via iso_conn_get_hdev().
Title Bluetooth: ISO: Fix a use-after-free of the hci_conn pointer
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-06-28T06:41:19.460Z

Reserved: 2026-06-09T07:44:35.395Z

Link: CVE-2026-53276

cve-icon Vulnrichment

No data.

cve-icon NVD

No data.

cve-icon Redhat

Severity : Moderate

Publid Date: 2026-06-25T00:00:00Z

Links: CVE-2026-53276 - Bugzilla

cve-icon OpenCVE Enrichment

Updated: 2026-06-28T14:15:08Z

Weaknesses