CVE-2026-53276
Analyzed Analyzed - Analysis Complete

Bluetooth Use-After-Free in Linux Kernel

Vulnerability report for CVE-2026-53276, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-06-25

Last updated on: 2026-07-08

Assigner: kernel.org

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().

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-06-25
Last Modified
2026-07-08
Generated
2026-07-15
AI Q&A
2026-06-25
EPSS Evaluated
2026-07-14
NVD
EUVD

Affected Vendors & Products

Showing 7 associated CPEs
Vendor Product Version / Range
linux linux_kernel 7.1
linux linux_kernel 7.1
linux linux_kernel 7.1
linux linux_kernel 7.1
linux linux_kernel From 6.19 (inc) to 7.0.13 (exc)
linux linux_kernel 7.1
linux linux_kernel 7.1

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-416 The product reuses or references memory after it has been freed. At some point afterward, the memory may be allocated again and saved in another pointer, while the original pointer references a location somewhere within the new allocation. Any operations using the original pointer are no longer valid because the memory "belongs" to the code that operates on the new pointer.

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Mitigation Strategies

The vulnerability is resolved in the Linux kernel by fixing a use-after-free issue in the Bluetooth ISO code. To mitigate this vulnerability, you should update your Linux kernel to a version that includes this fix.

Executive Summary

This vulnerability is a use-after-free issue in the Linux kernel's Bluetooth ISO implementation. Specifically, in the function iso_sock_rebind_bc(), a pointer to a Bluetooth connection (hci_conn) is cached and then the socket lock is released. During this unlocked period, if a concurrent close() operation occurs, it can destroy the connection and free the memory that the pointer references. Subsequently, the code attempts to access this freed memory, leading to a use-after-free condition. The fix involves using a safely acquired reference to the Bluetooth device (hdev) to avoid accessing freed memory.

Impact Analysis

This use-after-free vulnerability can lead to undefined behavior such as system crashes, memory corruption, or potentially allow an attacker to execute arbitrary code within the kernel. Exploiting this flaw could compromise system stability and security, especially on devices using Bluetooth functionality in the Linux kernel.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-53276. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart