CVE-2026-11894

MEDIUMPre-NVD 5.95.9
EchelonGraph scoreMEDIUM confidence

This medium-severity CVE scores 5.9 under a secondary CVSS source (NVD's own analysis pending). EPSS exploit probability: 0.2%, top 94% of all CVEs by exploit prediction. GitHub Security Advisory data not yet ingested — confidence will rise once GHSA publishes (typical lag: hours to days for open-source ecosystem CVEs; never for infrastructure-only CVEs).

Triggered by: NVD CVSS baseline
Sources: epss, secondary
5.9EG
EchelonGraph verdictMonitorLow exploitation likelihood right now — keep watching.
  • Lower severity and no public exploit yet
CISA-KEV: Not listedEPSS PROB: 0%CVSS: 5.9Exploit: None knownExposed: 0

No vendor fix yet — apply a workaround or compensating control (WAF / firewall / segmentation) and watch for a patch.

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.

CVSS v3
5.9
EG Score
5.9(medium)
EG Risk
27(Track)
EG Risk 27/100SSVC: Track

EG Risk is EchelonGraph's 0–100 priority score: it fuses intrinsic severity with real-world exploitation and automatability so you can rank equal-severity CVEs and fix the most dangerous first. Higher = act sooner. Distinct from the 0–10 EG Score (severity).

How it’s computed
Severity59% × 45%
Exploitation0% × 40%
Automatability0% × 15%
Action: Routine — remediate on your standard cadence.
EPSS PROB
0%
EPSS %ILE
6%
KEV
Not listed

Published

August 11, 2026

Last Modified

August 26, 2026

Advisory Details (2)

Auto-updated Aug 11, 2026
Patch available. Sources: github_commit, github.
github Patch Available

Double-free / use-after-free in Realtek BEE Bluetooth HCI driver send() error paths · Advisory · zephyrproject-rtos/zephyr · GitHub

https://github.com/zephyrproject-rtos/zephyr/security/advisories/GHSA-v9mj-h2m6-v9c6
github_commit

commit 9a684b5c314f (zephyrproject-rtos/zephyr)

Fix landed in zephyrproject-rtos/zephyr commit 9a684b5c314f — awaiting tagged release

https://github.com/zephyrproject-rtos/zephyr/commit/9a684b5c314fb1d8670b01f7b6c4450a9353906c

Weakness Classification(1)

MITRE Common Weakness Enumeration — the root-cause categories this CVE belongs to.

Data Freshness Timeline

(refreshed 12× in last 7d / 30× in last 30d)

Each row is a source pipeline that fetched or updated this CVE on that date, with what changed. For example, "NVD update" means NVD published or revised its analysis for this CVE; "MITRE cvelistV5" means we ingested or refreshed it from the CNA feed. Most recent first.

  1. 2026-08-26 17:27 UTCEG score recompute
  2. 2026-08-26 12:55 UTCEG score recompute
  3. 2026-08-25 13:48 UTCEPSS rescore
  4. 2026-08-25 13:14 UTCEG score recompute
  5. 2026-08-24 13:32 UTCEG score recompute
  6. 2026-08-23 13:51 UTCEG score recompute
  7. 2026-08-23 00:19 UTCEPSS rescore
  8. 2026-08-22 14:10 UTCEG score recompute
  9. 2026-08-21 23:48 UTCEPSS rescore
  10. 2026-08-21 14:26 UTCEG score recompute
  11. 2026-08-20 22:55 UTCEPSS rescore
  12. 2026-08-20 14:40 UTCEG score recompute
  13. 2026-08-19 17:03 UTCEPSS rescore
  14. 2026-08-18 15:17 UTCEG score recompute
  15. 2026-08-18 13:48 UTCEPSS rescore
  16. 2026-08-17 15:28 UTCEG score recompute
  17. 2026-08-16 15:47 UTCEG score recompute
  18. 2026-08-16 14:56 UTCEPSS rescore
  19. 2026-08-16 02:14 UTCEPSS rescore
  20. 2026-08-15 16:06 UTCEG score recompute
  21. 2026-08-15 01:30 UTCEPSS rescore
  22. 2026-08-14 16:24 UTCEG score recompute
  23. 2026-08-13 22:00 UTCEPSS rescore
  24. 2026-08-12 17:02 UTCEG score recompute
  25. 2026-08-12 13:50 UTCEPSS rescore
Show 5 more
  1. 2026-08-11 17:21 UTCEG score recompute
  2. 2026-08-11 13:42 UTCEPSS rescore
  3. 2026-08-11 06:24 UTCEG score recompute
  4. 2026-08-11 05:34 UTCEG score recompute
  5. 2026-08-11 05:33 UTCMITRE cvelistV5first tracked

Frequently asked(5)

What is CVE-2026-11894?
CVE-2026-11894 is a medium vulnerability published on August 11, 2026. The Realtek BEE Bluetooth HCI driver's send callback, bthcibeesend() in drivers/bluetooth/hci/hcibee.c, violated the bthcidriverapi buffer-ownership contract. That contract requires the driver to consume (unref) the transmit netbuf only on success; on an error return the host caller retains…
When was CVE-2026-11894 disclosed?
CVE-2026-11894 was first published in the National Vulnerability Database on August 11, 2026, with the most recent update on August 26, 2026. EchelonGraph re-ingests CVE updates from NVD on a 2-hour cycle, so this page reflects the latest published state.
Is CVE-2026-11894 actively exploited?
CVE-2026-11894 is not currently on CISA's Known Exploited Vulnerabilities catalog. FIRST EPSS estimates a 0% probability of exploitation in the next 30 days, which ranks it in the top 93.5% of all scored CVEs.
What is the CVSS score of CVE-2026-11894?
CVE-2026-11894 has a CVSS v3 base score of 5.9 (NVD).
How do I remediate CVE-2026-11894?
Patch to the fixed version published by the affected vendor. Where vendor advisories exist for CVE-2026-11894, EchelonGraph cross-links them in the Vendor Advisories panel below — those typically contain the canonical remediation steps, fixed version numbers, and any vendor-specific mitigations.

Dependency Blast Radius

Explore the affected products and dependency analysis for CVE-2026-11894

Explore →

Is Your Infrastructure Affected by CVE-2026-11894?

EchelonGraph automatically scans your cloud infrastructure and maps CVE exposure using blast radius analysis.