CVE-2026-12236
Last modified
CVE-2026-12236 is a medium-severity vulnerability rated 6.5/10 on the CVSS scale. The Bluetooth host GATT client function parse_read_std_char_desc() in subsys/bluetooth/host/gatt.c parses an ATT Read By Type Response received from a remote GATT server during BT_GATT_DISCOVER_STD_CHAR_DESC discovery. The per-entry stride rsp->len is taken directly from the peer's PDU, and the parse loop both tests its exit condition (length >= rsp->len) and advances (length -= rsp->len, pdu += rsp->len) using that value. EPSS estimates a 0.10% chance of exploitation in the next 30 days.
Description
The Bluetooth host GATT client function parse_read_std_char_desc() in subsys/bluetooth/host/gatt.c parses an ATT Read By Type Response received from a remote GATT server during BT_GATT_DISCOVER_STD_CHAR_DESC discovery. The per-entry stride rsp->len is taken directly from the peer's PDU, and the parse loop both tests its exit condition (length >= rsp->len) and advances (length -= rsp->len, pdu += rsp->len) using that value. The minimum value of rsp->len was never validated before the loop. A malicious or malfunctioning peer can reply with rsp->len = 0. Because length is unsigned and never decreases, the loop condition stays true forever and the read pointer never advances; as long as the body is at least a few bytes with a non-zero handle and a matching descriptor UUID, the host repeatedly re-parses the same bytes and invokes the discovery callback, never terminating. This hangs the Bluetooth host processing thread (CWE-835, loop with unreachable exit condition). The condition is reachable by any connected peer once the local device initiates standard-descriptor-value discovery; GATT discovery does not require bonding or encryption, so an unauthenticated adjacent attacker that the device connects to can trigger it. The impact is denial of service of the Bluetooth subsystem (and likely a watchdog reset on constrained targets); there is no memory disclosure or corruption. The fix adds a rsp->len < sizeof(struct bt_att_data) check before the loop, rejecting under-length responses so the stride is always non-zero and the loop terminates. The sibling parsers parse_include() and parse_characteristic() already validated rsp->len and are unaffected.
Metrics
Weakness Enumeration
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| zephyrproject | zephyr | >= 2.6.0, < 4.4.2 |
References
Timeline
- Published
- Last Modified
- Status
- Awaiting Analysis
Frequently Asked Questions
What is CVE-2026-12236?
How severe is CVE-2026-12236?
How do I fix CVE-2026-12236?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-12230The LearnPress – WordPress LMS Plugin for Create and Sell On…6.4
- CVE-2026-12231The Exclusive Addons for Elementor plugin for WordPress is v…6.4
- CVE-2026-12232The Intel ALH digital-audio-interface driver function dai_al…6.1
- CVE-2026-12233The PSA Protected Storage credential backend (subsys/net/lib…5.9
- CVE-2026-12234The userspace syscall verifiers z_vrfy_zsock_sendmsg() and z…7.8
- CVE-2026-12235The Linkable Loadable Extensions (llext) subsystem mis-handl…6.3
- CVE-2026-12238The WP Go Maps – Most Popular Map Plugin plugin for WordPres…5.3
- CVE-2026-1224Tanium addressed an uncontrolled resource consumption vulner…6.5
- CVE-2026-12240The Export User Data plugin for WordPress is vulnerable to a…8
- CVE-2026-12242The AdRotate Banner Manager plugin for WordPress is vulnerab…8.8
- CVE-2026-12243Rejected reason: This CVE ID has been rejected or withdrawn …
- CVE-2026-12244If NSD is configured as secondary for a zone, the primary of…8.8
Are you affected by CVE-2026-12236?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
