Skip to main content

Zephyr RTOS CVE-2026-10680

| EUVDEUVD-2026-46449 HIGH
Out-of-bounds Read (CWE-125)
2026-07-21 zephyr
7.6
CVSS 3.1 · Vendor: zephyr
Share

Severity by source

Vendor (zephyr) PRIMARY
7.6 HIGH
AV:A/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:H
vuln.today AI
7.6 HIGH

Adjacent Bluetooth radio range (AV:A) with a simple crafted PDU (AC:L), no pairing/auth or interaction (PR:N/UI:N); memory disclosure/corruption gives C:L/I:L while the reliable outcome is a device crash (A:H).

3.1 AV:A/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:H
4.0 AV:A/AC:L/AT:N/PR:N/UI:N/VC:L/VI:L/VA:H/SC:N/SI:N/SA:N

Primary rating from Vendor (zephyr).

CVSS VectorVendor: zephyr

Attack Vector
Adjacent
Attack Complexity
Low
Privileges Required
None
User Interaction
None
Scope
Unchanged
Confidentiality
Low
Integrity
Low
Availability
High

Lifecycle Timeline

3
Source Code Evidence Fetched
Jul 21, 2026 - 22:07 vuln.today
Analysis Generated
Jul 21, 2026 - 22:07 vuln.today
CVE Published
Jul 21, 2026 - 21:30 cve.org
HIGH 7.6

DescriptionCVE.org

The Classic (BR/EDR) L2CAP signaling handlers l2cap_br_conf_req() and l2cap_br_conf_rsp() in subsys/bluetooth/host/classic/l2cap_br.c validated the minimum command size against buf->len (the bytes remaining in the whole received PDU) instead of len (the per-command data length from the L2CAP signaling header). Because multiple signaling commands can be packed into one PDU, buf->len may exceed a command's len. An attacker can send a CONF_REQ command with a header length smaller than the configuration-request structure (e.g. 0), followed by another command so that buf->len still satisfies the check. The check then passes incorrectly and opt_len = len - sizeof(*req) underflows the uint16_t to a near-0xFFFF value. The configuration-option loop, which lacks an opt_len-versus-buf->len guard, then walks far past the end of the pooled ACL receive buffer using net_buf pull primitives that perform no runtime bounds check, producing an out-of-bounds read of host memory and, when the out-of-bounds option bytes encode an MTU or flush-timeout option, an out-of-bounds write. The BR/EDR signaling channel is processed before pairing/encryption and an L2CAP channel to an L0 service such as SDP can be opened without pairing, so an unauthenticated peer within radio range that can establish an ACL connection can trigger the flaw, leading to memory corruption and denial of service (host/device crash). The defect is present in released versions including v4.4.0. The fix validates against len instead of buf->len in both handlers.

AnalysisAI

Out-of-bounds read and write in the Zephyr RTOS Bluetooth Classic (BR/EDR) L2CAP signaling handlers (l2cap_br_conf_req/rsp) lets an unauthenticated peer within Bluetooth radio range corrupt host memory and crash the device, affecting released versions including v4.4.0. Because the handlers checked the whole-PDU length (buf->len) instead of the per-command length (len), a packed CONF_REQ with a tiny header length underflows opt_len to ~0xFFFF and walks the option-parsing loop past the pooled ACL receive buffer. No public exploit is identified at time of analysis; a vendor patch and GHSA advisory exist and EPSS/KEV data were not provided.

Technical ContextAI

The flaw lives in Zephyr's Bluetooth host stack, specifically the Classic BR/EDR L2CAP signaling layer in subsys/bluetooth/host/classic/l2cap_br.c. L2CAP signaling PDUs can carry multiple commands, each prefixed by a code/ident/length header; the correct bound for a single command's payload is the header 'len' field, not buf->len (bytes remaining in the entire PDU). The root cause is CWE-125 (out-of-bounds read): the minimum-size validation used buf->len, so a command declaring length 0 followed by a second command still satisfied the check. The subsequent computation opt_len = len - sizeof(*req) underflows the uint16_t, and the configuration-option loop uses net_buf pull primitives that perform no runtime bounds checking, so parsing runs off the end of the shared ACL receive buffer. When over-read option bytes happen to encode an MTU or flush-timeout option, the handler writes back, escalating the read into an out-of-bounds write. CPE cpe:2.3:a:zephyrproject:zephyr identifies the affected component as the Zephyr project itself.

RemediationAI

Patch available per vendor advisory: apply the upstream fix (commit 1d451683377f4c8e56d7718565bea7b5c1155159), which validates against the per-command len instead of buf->len in both l2cap_br_conf_req() and l2cap_br_conf_rsp(); consult GHSA-vrwx-p97q-8854 for the exact patched release corresponding to your Zephyr baseline, then rebuild and reflash affected firmware. Because a specific tagged fixed-version string was not provided in the input, confirm the patched tag from the advisory before deployment. Where firmware cannot be updated immediately, the most effective compensating control is to disable Bluetooth Classic (BR/EDR) support if the device only needs BLE, or to avoid exposing pre-pairing L0 services such as SDP; note the trade-off that disabling BR/EDR breaks any Classic-profile functionality (e.g. legacy audio/serial profiles). Reducing device discoverability/connectability and physically limiting radio exposure lowers opportunistic risk but does not close the vulnerability, since an attacker who can establish an ACL connection can still reach the signaling channel.

More in Zephyr

View all
CVE-2023-4260 CRITICAL POC
10.0 Sep 27

Potential off-by-one buffer overflow vulnerability in the Zephyr fuse file system. Rated critical severity (CVSS 10.0),

CVE-2023-5055 CRITICAL POC
9.8 Nov 21

Possible variant of CVE-2021-3434 in function le_ecred_reconf_req. Rated critical severity (CVSS 9.8), this vulnerabilit

CVE-2023-4257 CRITICAL POC
9.8 Oct 13

Unchecked user input length in /subsys/net/l2/wifi/wifi_shell.c can cause buffer overflows. Rated critical severity (CVS

CVE-2023-3725 CRITICAL POC
9.8 Oct 06

Potential buffer overflow vulnerability in the Zephyr CAN bus subsystem. Rated critical severity (CVSS 9.8), this vulner

CVE-2021-3323 CRITICAL POC
9.8 Oct 12

Integer Underflow in 6LoWPAN IPHC Header Uncompression in Zephyr. Rated critical severity (CVSS 9.8), this vulnerability

CVE-2021-3625 CRITICAL POC
9.8 Oct 05

Buffer overflow in Zephyr USB DFU DNLOAD. Rated critical severity (CVSS 9.8), this vulnerability is remotely exploitable

CVE-2021-3319 CRITICAL POC
9.8 Oct 05

DOS: Incorrect 802154 Frame Validation for Omitted Source / Dest Addresses. Rated critical severity (CVSS 9.8), this vul

CVE-2018-1000800 CRITICAL POC
9.8 Sep 06

zephyr-rtos version 1.12.0 contains a NULL base pointer reference vulnerability in sys_ring_buf_put(), sys_ring_buf_get(

CVE-2023-4264 CRITICAL POC
9.6 Sep 27

Potential buffer overflow vulnerabilities n the Zephyr Bluetooth subsystem. Rated critical severity (CVSS 9.6), this vul

CVE-2026-1678 CRITICAL POC
9.4 Mar 05

Buffer overflow in Zephyr RTOS dns_unpack_name() function causing OOB writes. PoC available.

CVE-2024-1638 CRITICAL POC
9.1 Feb 19

The documentation specifies that the BT_GATT_PERM_READ_LESC and BT_GATT_PERM_WRITE_LESC defines for a Bluetooth characte

CVE-2023-5753 HIGH POC
8.8 Oct 25

Potential buffer overflows in the Bluetooth subsystem due to asserts being disabled in /subsys/bluetooth/host/hci_core.c

Share

CVE-2026-10680 vulnerability details – vuln.today

This site uses cookies essential for authentication and security. No tracking or analytics cookies are used. Privacy Policy