Goal Reached Thanks to every supporter — we hit 100%!

Goal: 1000 CNY · Raised: 1336 CNY

100%

CVE-2026-11894— Double-free / use-after-free in Realtek BEE Bluetooth HCI driver `send()` error paths

CVSS 5.9 · Medium EPSS 0.17% · P7

Affected Version Matrix 1

VendorProductVersion RangeStatus
zephyrprojectzephyr4.4.0< 4.4.2affected
Get alerts for future matching vulnerabilitiesLog in to subscribe

I. Basic Information for CVE-2026-11894

Vulnerability Information

Have questions about the vulnerability? See if Shenlong's analysis helps!
View Shenlong Deep Dive ↗

Although we use advanced large model technology, its output may still contain inaccurate or outdated information.Shenlong tries to ensure data accuracy, but please verify and judge based on the actual situation.

Vulnerability Title
Double-free / use-after-free in Realtek BEE Bluetooth HCI driver `send()` error paths
Source: CVE Program / CVE List V5
Vulnerability Description
The Realtek BEE Bluetooth HCI driver's send callback, bt_hci_bee_send() in drivers/bluetooth/hci/hci_bee.c, violated the bt_hci_driver_api buffer-ownership contract. That contract requires the driver to consume (unref) the transmit net_buf only on success; on an error return the host caller retains ownership and unrefs the buffer itself. The pre-fix code routed all error paths through a shared cleanup label that unconditionally called net_buf_unref(buf) before returning the error code. Because the host TX paths (in subsys/bluetooth/host/hci_core.c) unref the buffer again after send() returns an error, the buffer is freed twice: the driver returns it to its net_buf pool and the host then unrefs the already-freed buffer, corrupting the shared pool / underflowing the reference count (CWE-415). The same error branch additionally dereferenced buf->len inside a LOG_ERR call after the buffer had already been unref'd, a read of freed memory (CWE-416) that is compiled in at the default error log level. The failing edges are reached when the controller's host-to-controller buffer allocation fails or the controller send fails (resource-exhaustion / IO conditions). A remote Bluetooth peer can push the device toward these conditions indirectly by driving heavy host transmit activity, at which point the double-free corrupts the host net_buf pool and most likely crashes the device, with residual potential for further memory corruption. The impact is confined to builds using this specific Realtek BEE HCI driver. The fix returns early from each error path without unreffing and unrefs the buffer only on the success path, restoring the ownership contract and eliminating both the double-free and the use-after-free read.
Source: CVE Program / CVE List V5
CVSS Information
CVSS:3.1/AV:A/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:H
Source: CVE Program / CVE List V5
Vulnerability Type
双重释放
Source: CVE Program / CVE List V5

Affected Products

VendorProductAffected VersionsCPESubscribe
zephyrprojectzephyr 4.4.0 ~ 4.4.2 -

II. Public POCs for CVE-2026-11894

#POC DescriptionSource LinkShenlong Link
AI-Generated POCPremium

No public POC found.

Login to generate AI POC

III. Intelligence Information for CVE-2026-11894

登录查看更多情报信息。

Patches & Fixes for CVE-2026-11894 (2)

Same Patch Batch · zephyrproject · 2026-08-11 · 5 CVEs total

CVE-2026-118935.9 MEDIUMDouble free / use-after-free in Bouffalo Lab HCI driver send() error paths (hci_bflb)
CVE-2026-120525.2 MEDIUMOut-of-bounds write in USB CDC NCM control handler when host wLength is smaller than the r
CVE-2026-120514.6 MEDIUMNULL pointer dereference in USB DFU device_next download handler (handle_download)
CVE-2026-119853.6 LOWCross-thread FPU register leak on ARM when FPU enabled without register sharing

IV. Related Vulnerabilities

V. Comments for CVE-2026-11894

No comments yet


Leave a comment