CVE-2026-9263: bounds in zephyrproject zephyr
The Zephyr Bluetooth controller ISO Adaptation Layer (subsys/bluetooth/controller/ll_sw/isoal.c) fails to validate the length field of a framed ISO PDU start segment. Per the Bluetooth specification a start segment (sc=0) always carries a 3-byte time_offset, so its segment-header len must be at least PDU_ISO_SEG_TIMEOFFSET_SIZE (3). isoal_check_seg_header() accepted start segments with len < 3 as valid, and isoal_rx_framed_consume() then computed length = seg_hdr->len - 3 in a uint8_t, underflowing to 253-255 when len is 0-2. That oversized length is passed to isoal_rx_append_to_sdu(), whose copy is clamped only against the destination SDU buffer size, not the source PDU length, so up to ~255 bytes of controller memory beyond the received PDU are copied (via sink_sdu_write_hci()/net_buf_add_mem) into an HCI ISO data packet and delivered to the host. The PDU and its segment headers are entirely attacker-controlled and arrive over the air, reachable through both the CIS and BIS-sync HCI data paths (hci_driver.c) and the vendor data path (ull_iso.c), so a remote CIS peer or a broadcaster the device is synced to can trigger an out-of-bounds read causing information disclosure to the host and potential denial of service (faults or malformed oversized HCI ISO packets). The flaw affects all Zephyr releases since framed ISO reception was introduced in v3.0.0. The fix rejects sc=0 segments with len < 3 in isoal_check_seg_header() and adds a guard before the subtraction in isoal_rx_framed_consume().
AI Analysis
Technical Summary
The Zephyr Bluetooth controller ISO Adaptation Layer (isoal.c) fails to properly validate the length field of a framed ISO PDU start segment. According to the Bluetooth specification, a start segment (sc=0) must have a segment-header length of at least 3 bytes to carry the time_offset. The function isoal_check_seg_header() incorrectly accepts start segments with length less than 3 as valid. Consequently, isoal_rx_framed_consume() computes a length by subtracting 3 from the segment length in a uint8_t, causing underflow when length is 0-2. This results in an oversized length (253-255) passed to isoal_rx_append_to_sdu(), which copies data beyond the received PDU buffer into an HCI ISO data packet delivered to the host. Since the PDU and segment headers are attacker-controlled and arrive over the air via multiple HCI data paths, a remote attacker can trigger out-of-bounds reads causing information disclosure and potential denial of service. The vulnerability affects all Zephyr versions since framed ISO reception was introduced in v3.0.0. The fix involves rejecting start segments with length less than 3 and adding a guard before the subtraction in isoal_rx_framed_consume().
Potential Impact
An attacker controlling Bluetooth ISO PDUs can cause out-of-bounds reads in the Zephyr Bluetooth controller, leading to information disclosure to the host and potential denial of service through faults or malformed oversized HCI ISO packets. The vulnerability does not affect integrity or availability beyond denial of service and does not require privileges or user interaction. The CVSS score is 6.5 (medium severity) with attack vector over the air and low attack complexity.
Mitigation Recommendations
Patch status is not yet confirmed — check the vendor advisory for current remediation guidance. The described fix rejects invalid start segments and adds bounds checks to prevent underflow and out-of-bounds reads. Until an official patch is available, consider restricting Bluetooth ISO usage or applying vendor-provided mitigations if any.
CVE-2026-9263: bounds in zephyrproject zephyr
Description
The Zephyr Bluetooth controller ISO Adaptation Layer (subsys/bluetooth/controller/ll_sw/isoal.c) fails to validate the length field of a framed ISO PDU start segment. Per the Bluetooth specification a start segment (sc=0) always carries a 3-byte time_offset, so its segment-header len must be at least PDU_ISO_SEG_TIMEOFFSET_SIZE (3). isoal_check_seg_header() accepted start segments with len < 3 as valid, and isoal_rx_framed_consume() then computed length = seg_hdr->len - 3 in a uint8_t, underflowing to 253-255 when len is 0-2. That oversized length is passed to isoal_rx_append_to_sdu(), whose copy is clamped only against the destination SDU buffer size, not the source PDU length, so up to ~255 bytes of controller memory beyond the received PDU are copied (via sink_sdu_write_hci()/net_buf_add_mem) into an HCI ISO data packet and delivered to the host. The PDU and its segment headers are entirely attacker-controlled and arrive over the air, reachable through both the CIS and BIS-sync HCI data paths (hci_driver.c) and the vendor data path (ull_iso.c), so a remote CIS peer or a broadcaster the device is synced to can trigger an out-of-bounds read causing information disclosure to the host and potential denial of service (faults or malformed oversized HCI ISO packets). The flaw affects all Zephyr releases since framed ISO reception was introduced in v3.0.0. The fix rejects sc=0 segments with len < 3 in isoal_check_seg_header() and adds a guard before the subtraction in isoal_rx_framed_consume().
CVSS v3.1
Score 6.5medium
Affected software
Run on your own infrastructure? Check whether these packages are installed with threat-finder — our free open-source scanner.
AI-Powered Analysis
Machine-generated threat intelligence
Technical Analysis
The Zephyr Bluetooth controller ISO Adaptation Layer (isoal.c) fails to properly validate the length field of a framed ISO PDU start segment. According to the Bluetooth specification, a start segment (sc=0) must have a segment-header length of at least 3 bytes to carry the time_offset. The function isoal_check_seg_header() incorrectly accepts start segments with length less than 3 as valid. Consequently, isoal_rx_framed_consume() computes a length by subtracting 3 from the segment length in a uint8_t, causing underflow when length is 0-2. This results in an oversized length (253-255) passed to isoal_rx_append_to_sdu(), which copies data beyond the received PDU buffer into an HCI ISO data packet delivered to the host. Since the PDU and segment headers are attacker-controlled and arrive over the air via multiple HCI data paths, a remote attacker can trigger out-of-bounds reads causing information disclosure and potential denial of service. The vulnerability affects all Zephyr versions since framed ISO reception was introduced in v3.0.0. The fix involves rejecting start segments with length less than 3 and adding a guard before the subtraction in isoal_rx_framed_consume().
Potential Impact
An attacker controlling Bluetooth ISO PDUs can cause out-of-bounds reads in the Zephyr Bluetooth controller, leading to information disclosure to the host and potential denial of service through faults or malformed oversized HCI ISO packets. The vulnerability does not affect integrity or availability beyond denial of service and does not require privileges or user interaction. The CVSS score is 6.5 (medium severity) with attack vector over the air and low attack complexity.
Mitigation Recommendations
Patch status is not yet confirmed — check the vendor advisory for current remediation guidance. The described fix rejects invalid start segments and adds bounds checks to prevent underflow and out-of-bounds reads. Until an official patch is available, consider restricting Bluetooth ISO usage or applying vendor-provided mitigations if any.
Technical Details
- Data Version
- 5.2
- Assigner Short Name
- zephyr
- Date Reserved
- 2026-05-21T23:33:58.944Z
- Cvss Version
- 3.1
- State
- PUBLISHED
- Remediation Level
- null
Threat ID: 6a43f43227e9c797191862b4
Added to database: 06/30/2026, 16:52:02 UTC
Last enriched: 07/15/2026, 10:57:34 UTC
Last updated: 08/13/2026, 00:41:14 UTC
Views: 104
Community Reviews
0 reviewsCrowdsource mitigation strategies, share intel context, and vote on the most helpful responses. Sign in to add your voice and help keep defenders ahead.
Want to contribute mitigation steps or threat intel context? Sign in or create an account to join the community discussion.
Actions
Updates to AI analysis require Pro Console access. Upgrade inside Console → Billing.
Need more coverage?
Upgrade to Pro Console for AI refresh and higher limits.
For incident response and remediation, OffSeq services can help resolve threats faster.
Latest Threats
Check if your credentials are on the dark web
Instant breach scanning across billions of leaked records. Free tier available.