AUGUST 15, 2026
Live Feed
Back to database
Case File

CVE-2026-74300

UNKNOWN · CVSS N/A

Source: NVD + CISA KEV + EPSS · Published 2026-08-15 · Last synced 2026-08-15

CyberRota Analysis

AI-Generated

A vulnerability in the Linux kernel's Bluetooth subsystem allows for improper validation of codec capability element lengths, potentially leading to buffer overflows when handling malformed controller responses. This flaw could enable attackers to exploit the system by sending crafted responses, resulting in memory corruption or denial of service. Linux system administrators and developers working with Bluetooth functionalities should prioritize applying the relevant patches to mitigate this risk.

CVE
CVE-2026-74300
Severity
UNKNOWN
CVSS
N/A
EPSS
N/A
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: hci: validate codec capability element length Read Local Codec Capabilities returns a sequence of capability elements. Each element starts with a one-byte length followed by that many payload bytes. hci_read_codec_capabilities() checks that the skb contains the length byte, but then validates only caps->len against the remaining skb length. A malformed controller response with one remaining byte and caps->len set to one passes that check even though the element needs two bytes. The parser then records a two-byte capability and copies one byte beyond the advertised response payload into the codec list. Validate the full element size, including the length byte, before adding it to the accumulated capability length. This preserves all well-formed capability elements and drops only truncated controller responses.