CVE-2026-53073
Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.
NVD · uneditedIn the Linux kernel, the following vulnerability has been resolved: Bluetooth: hci_ldisc: Clear HCI_UART_PROTO_INIT on error When hci_register_dev() fails in hci_uart_register_dev() HCI_UART_PROTO_INIT is not cleared before calling hu->proto->close(hu) and setting hu->hdev to NULL. This means incoming UART data will reach the protocol-specific recv handler in hci_uart_tty_receive() after resources are freed. Clear HCI_UART_PROTO_INIT with a write lock before calling hu->proto->close() and setting hu->hdev to NULL. The write lock ensures all active readers have completed and no new reader can enter the protocol recv path before resources are freed. This allows the protocol-specific recv functions to remove the "HCI_UART_REGISTERED" guard without risking a null pointer dereference if hci_register_dev() fails.
Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.
dbcve analysis · high confidenceA race condition in the Linux kernel's Bluetooth HCI UART driver (hci_ldisc) allows incoming UART data to reach the protocol-specific recv handler after resources are freed. When hci_register_dev() fails, the HCI_UART_PROTO_INIT flag is not cleared before calling hu->proto->close() and setting hu->hdev to NULL, allowing freed resources to be accessed.
Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.
Affected products & versions What the vendor confirmedThe version ranges the vendor confirmed as vulnerable. If your version sits inside a range here, treat yourself as exposed until you have upgraded.
NVD · CPE data>= 5.4.293, < 5.5>= 5.10.237, < 5.10.258>= 5.15.181, < 5.15.209>= 6.1.135, < 6.1.175>= 6.6.88, < 6.6.141>= 6.12.24, < 6.12.91>= 6.13.12, < 6.14>= 6.14.3, < 6.18.33>= 6.19, < 7.0.10CVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.
From the vector- Attack vector
- Local
- Complexity
- Low
- Privileges
- Low
- User interaction
- None
- Scope
- Unchanged
- Confidentiality
- None
- Integrity
- None
- Availability
- High
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
Am I affected? How to checkSteps we derive from the advisory and the affected-version data, so you can decide whether this CVE reaches your setup. They are a guide, not a scan — your own configuration is the authority.
dbcve checksWork through these to decide whether this CVE applies to you.
-
Check the running kernel versionRun 'uname -r' to get the kernel version and compare it to the affected ranges: >= 5.4.293 and < 5.5; >= 5.10.237 and < 5.10.258; >= 5.15.181 and < 5.15.209; >= 6.1.135 and < 6.1.175; >= 6.6.88 and < 6.6.141; >= 6.12.24 and < 6.12.91; >= 6.13.12 and < 6.14; >= 6.14.3 and < 6.18.33; >= 6.19 and < 7.0.10Affected if The kernel version falls within any of the listed ranges
-
Verify Bluetooth subsystem is activeRun 'lsmod | grep -i bluetooth' or check /proc/bluetooth/ directory exists and contains entries, or run 'hciconfig -a' to list Bluetooth adaptersAffected if Bluetooth is loaded and active (if not, the driver is not in use and the system is not affected)
-
Identify if HCI UART driver is in useRun 'ls -la /sys/class/bluetooth/' and check if any adapter uses a serial UART connection. Run 'cat /proc/bus/usb/devices' or check 'dmesg | grep -i uart' for UART-based Bluetooth hardware. Also check 'ls /dev/ttyUSB*' or similar serial devices associated with BluetoothAffected if A Bluetooth adapter is connected via UART (HCI UART driver) rather than USB; this driver is only vulnerable when using the UART transport
A system is affected only if it runs a vulnerable kernel version AND uses a Bluetooth adapter connected via the HCI UART (serial) driver, not USB Bluetooth.
Generated from the published advisory. Verify against your own configuration.
Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.
dbcve · scoped5.55.10.2585.15.209
Apply the kernel patch that adds a write lock to clear HCI_UART_PROTO_INIT before resource cleanup, ensuring all active readers complete and no new reader can enter the protocol recv path.
Upgrade to one of: Linux kernel 5.5+, 5.10.258+, 5.15.209+, or 6.1.175+ depending on which branch you are on
- Identify the currently running Linux kernel version using `uname -r`
- Check which affected branch your kernel version falls into (5.4.x, 5.10.x, 5.15.x, or 6.1.x)
- For 5.4.x: Upgrade to kernel version 5.5 or later
- For 5.10.x: Upgrade to kernel version 5.10.258 or later
- For 5.15.x: Upgrade to kernel version 5.15.209 or later
- For 6.1.x: Upgrade to kernel version 6.1.175 or later
- After upgrade, verify the fix is present by checking the hci_ldisc.c file for the HCI_UART_PROTO_INIT clearing code with write lock, or confirm via vendor security advisory
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation2.0 h
- Implementation4.0 h
- Testing4.0 h
- Review / QA2.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $3,328.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2026-53073 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.
References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.
Primary sourcesPractitioner notes
ContributedPeer-ranked notes from engineers who’ve handled CVE-2026-53073 in production — separate from our analysis above.
The advisory tells you what broke. It rarely tells you what actually worked. If you’ve dealt with this one, that detail is what the next engineer is searching for.
- The version that genuinely resolved it — not the one the vendor claimed
- A config change or rule that shut the vector down
- A gotcha in the upgrade path that cost you an afternoon
No notes yet
Be the first to add a field note for this CVE — a mitigation you’ve verified, a version caveat, or a link to a working fix. Sign in above to contribute.
A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.
- Verified mitigations, workarounds, and config changes
- Version or environment caveats, and links to real fixes
- No weaponised exploit code, or anything meant to cause harm
- No spam, self-promotion, credentials, or personal data