CVE-2026-53256
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: RFCOMM: hold listener socket in rfcomm_connect_ind() rfcomm_get_sock_by_channel() scans rfcomm_sk_list under the list lock, but returns the selected listener after dropping that lock without taking a reference. rfcomm_connect_ind() then locks the listener, queues a child socket on it, and may notify it after unlocking it. The buggy scenario involves two paths, with each column showing the order within that path: rfcomm_connect_ind(): listener close: 1. Find parent in 1. close() enters rfcomm_get_sock_by_channel() rfcomm_sock_release(). 2. Drop rfcomm_sk_list.lock 2. rfcomm_sock_shutdown() without pinning parent. closes the listener. 3. Call lock_sock(parent) and 3. rfcomm_sock_kill() bt_accept_enqueue(parent, unlinks and puts parent. sk, true). 4. Read parent flags and may 4. parent can be freed. call sk_state_change(). If close wins the race, parent can be freed before rfcomm_connect_ind() reaches lock_sock(), bt_accept_enqueue(), or the deferred-setup callback. Take a reference on the listener before leaving rfcomm_sk_list.lock. After lock_sock() succeeds, recheck that it is still in BT_LISTEN before queueing a child, cache the deferred-setup bit while the parent is locked, and drop the reference after the last parent use. KASAN reported a slab-use-after-free in lock_sock_nested() from rfcomm_connect_ind(), with the freeing stack going through rfcomm_sock_kill() and rfcomm_sock_release().
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 Linux kernel's Bluetooth RFCOMM implementation causes a use-after-free. The function rfcomm_get_sock_by_channel() returns a reference to a listener socket without taking a reference count, then drops the list lock. If another thread closes the listener socket during this window, the socket is freed, and the original code later attempts to use the freed memory in lock_sock(), bt_accept_enqueue(), or sk_state_change().
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>= 2.6.12.1, < 5.10.259>= 5.11, < 5.15.210>= 5.16, < 6.1.176>= 6.2, < 6.6.143>= 6.7, < 6.12.94>= 6.13, < 6.18.36>= 6.19, < 7.0.13= 2.6.12= 7.1CVSS 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
- Adjacent
- Complexity
- Low
- Privileges
- Low
- User interaction
- None
- Scope
- Unchanged
- Confidentiality
- High
- Integrity
- High
- Availability
- High
CVSS:3.1/AV:A/AC:L/PR:L/UI:N/S:U/C:H/I:H/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.
-
Identify the running Linux kernel versionRun `uname -r` or check `/proc/version` to get the exact kernel version stringAffected if The kernel version falls within any of the affected ranges: >= 2.6.12.1 and < 5.10.259; >= 5.11 and < 5.15.210; >= 5.16 and < 6.1.176; >= 6.2 and < 6.6.143; >= 6.7 and < 6.12.94; >= 6.13 and < 6.18.36; >= 6.19 and < 7.0.13; equals 2.6.12; or equals 7.1
-
Verify if the Bluetooth subsystem is activeRun `rfkill list` or check `hciconfig -a` to see if any Bluetooth adapters are present and powered onAffected if Bluetooth is enabled and active on the system, making the RFCOMM code path reachable
-
Check if RFCOMM protocol is loaded or in useRun `lsmod | grep rfcomm` to check if the rfcomm kernel module is loaded, or check /proc/net/bluetooth/rfcomm for active connectionsAffected if The rfcomm module is loaded or there are active RFCOMM connections, indicating the vulnerable code path is exercised
-
Inspect kernel configuration for RFCOMM supportCheck /boot/config-$(uname -r) or /proc/config.gz for CONFIG_BT_RFCOMM=m or =yAffected if RFCOMM support is compiled as a module (m) or built-in (y), making the vulnerability surface accessible
The system is affected if it runs a kernel version within the affected ranges AND has Bluetooth RFCOMM enabled or in use, allowing the race condition in rfcomm_get_sock_by_channel() to be triggered.
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.10.2595.15.2106.1.176
Apply the kernel patch that adds proper reference counting: take a reference on the listener before dropping the list lock, recheck BT_LISTEN state after acquiring the lock, and drop the reference after final use. This is a kernel-level fix requiring code changes to rfcomm_connect_ind() and related functions.
Upgrade to kernel 5.10.259, 5.15.210, 6.1.176, or 6.6.143 (or later stable release) depending on which major version branch is in use
- Identify the current kernel version using 'uname -r' or 'cat /proc/version'
- Determine which affected version range applies (5.10.x, 5.15.x, 6.1.x, or 6.2.x through 6.6.x)
- For 5.10.x kernels: upgrade to version 5.10.259 or later
- For 5.11-5.15.x kernels: upgrade to version 5.15.210 or later
- For 5.16-6.1.x kernels: upgrade to version 6.1.176 or later
- For 6.2-6.6.x kernels: upgrade to version 6.6.143 or later
- Alternatively, apply the vendor patch commit 1f73f92f66251065a5f39b09a47cf05ea14d3107 to the kernel source and recompile
- Reboot into the patched or upgraded kernel
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation3.0 h
- Implementation6.0 h
- Testing5.0 h
- Review / QA3.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $4,752.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2026-53256 — 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-53256 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