CVE-2026-80760
Received Received - Intake

Bluetooth: MGMT Command Parameter Length Validation Flaw

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

Publication date: 2026-09-04

Last updated on: 2026-09-04

Assigner: kernel.org

Description

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: MGMT: reject HCI_CMD_SYNC params_len above 255 mgmt_hci_cmd_sync() checks that the message length agrees with params_len but puts no upper bound on it. params_len is __le16 while the parameter length in the HCI command header is a u8: struct hci_command_hdr { __le16 opcode; __u8 plen; } __packed; hci_cmd_sync_alloc() assigns one to the other: hdr->plen = plen; if (plen) skb_put_data(skb, param, plen); so a params_len of 256 leaves plen at 0 while all 256 bytes are still appended. The frame handed to the driver then declares no parameters and carries 256 of them. On a length framed transport such as H:4 the controller takes the trailing bytes as the start of the next packet. The mgmt socket MTU is HCI_MAX_FRAME_SIZE, so params_len can reach about 1KB this way. Commit 03f1700b9b4d ("Bluetooth: MGMT: reject malformed HCI_CMD_SYNC commands") only made params_len agree with the message length, a value that fits the message but not the header field is still accepted. Reject params_len that does not fit the header field.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-09-04
Last Modified
2026-09-04
Generated
2026-09-04
AI Q&A
2026-09-04
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
Executive Summary

This vulnerability in the Linux kernel involves improper handling of Bluetooth HCI command parameters. The mgmt_hci_cmd_sync() function checks message length against params_len but fails to enforce an upper limit. params_len is a 16-bit value while the HCI command header uses an 8-bit parameter length field. This mismatch allows params_len to exceed the header's capacity, leading to buffer overflows or packet corruption.

Detection Guidance

This vulnerability involves Bluetooth HCI command handling in the Linux kernel. Detection requires checking kernel logs for Bluetooth-related errors or monitoring Bluetooth controller behavior. No specific commands are provided in the context to detect this issue directly.

Impact Analysis

An attacker could exploit this to send malformed Bluetooth commands, potentially causing system crashes, memory corruption, or unauthorized access. On systems using Bluetooth, this might lead to denial-of-service or privilege escalation. The impact depends on kernel version and Bluetooth stack configuration.

Mitigation Strategies

Update your Linux kernel to the latest patched version to resolve this issue. Disable Bluetooth if not in use or restrict Bluetooth access to trusted devices until patched.

Chat Assistant

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

EPSS Chart