CVE-2026-53254
Received Received - Intake
Bluetooth RFCOMM Memory Corruption in Linux Kernel

Publication date: 2026-06-25

Last updated on: 2026-06-25

Assigner: kernel.org

Description
In the Linux kernel, the following vulnerability has been resolved: Bluetooth: RFCOMM: validate skb length in MCC handlers The RFCOMM MCC handlers cast skb->data to protocol-specific structs without validating skb->len first. A malicious remote device can send truncated MCC frames and trigger out-of-bounds reads in these handlers. Fix this by using skb_pull_data() to validate and access the required data before dereferencing it. rfcomm_recv_rpn() requires special handling since ETSI TS 07.10 allows 1-byte RPN requests. Handle this by validating only the DLCI byte first, and validating the full struct only when len > 1.
CVSS Scores
EPSS Scores
Probability:
Percentile:
Meta Information
Published
2026-06-25
Last Modified
2026-06-25
Generated
2026-06-25
AI Q&A
2026-06-25
EPSS Evaluated
N/A
NVD
EUVD
Affected Vendors & Products
Showing 1 associated CPE
Vendor Product Version / Range
linux linux_kernel *
Helpful Resources
Exploitability
CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-UNKNOWN
Attack-Flow Graph
AI Quick Actions
Instant insights powered by AI
Mitigation Strategies

The vulnerability is resolved by validating the skb length in RFCOMM MCC handlers in the Linux kernel. Immediate mitigation steps include updating the Linux kernel to a version where this fix is applied.

Specifically, the fix involves using skb_pull_data() to validate and access the required data before dereferencing it, preventing out-of-bounds reads caused by truncated MCC frames.

Executive Summary

This vulnerability exists in the Linux kernel's Bluetooth RFCOMM MCC handlers. These handlers cast the skb->data pointer to protocol-specific structures without first validating the length of the skb (socket buffer). A malicious remote device can exploit this by sending truncated MCC frames, which causes the handlers to perform out-of-bounds reads of memory.

The issue is fixed by using skb_pull_data() to validate and safely access the required data before dereferencing it. Special handling is applied to the rfcomm_recv_rpn() function because the protocol allows 1-byte RPN requests, so it validates the DLCI byte first and the full structure only if the length is greater than one.

Impact Analysis

This vulnerability can allow a malicious remote Bluetooth device to cause out-of-bounds memory reads in the Linux kernel's Bluetooth RFCOMM MCC handlers. Such out-of-bounds reads can potentially lead to information disclosure, system instability, or crashes, depending on how the kernel handles the invalid memory access.

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