CVE-2026-53254
Analyzed Analyzed - Analysis Complete

Bluetooth RFCOMM Memory Corruption in Linux Kernel

Vulnerability report for CVE-2026-53254, 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: 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-07-08
Generated
2026-07-15
AI Q&A
2026-06-25
EPSS Evaluated
2026-07-14
NVD
EUVD

Affected Vendors & Products

Showing 17 associated CPEs
Vendor Product Version / Range
linux linux_kernel 2.6.12
linux linux_kernel 2.6.12
linux linux_kernel 2.6.12
linux linux_kernel 2.6.12
linux linux_kernel 2.6.12
linux linux_kernel 7.1
linux linux_kernel 7.1
linux linux_kernel 7.1
linux linux_kernel 7.1
linux linux_kernel From 5.16 (inc) to 6.1.176 (exc)
linux linux_kernel From 6.2 (inc) to 6.6.143 (exc)
linux linux_kernel From 6.13 (inc) to 6.18.36 (exc)
linux linux_kernel From 6.7 (inc) to 6.12.94 (exc)
linux linux_kernel From 6.19 (inc) to 7.0.13 (exc)
linux linux_kernel 7.1
linux linux_kernel 7.1
linux linux_kernel From 2.6.12.1 (inc) to 5.15.210 (exc)

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-125 The product reads data past the end, or before the beginning, of the intended buffer.

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