CVE-2026-63946
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: ISO: fix UAF in iso_recv_frame iso_recv_frame reads conn->sk under iso_conn_lock but releases the lock before using sk, with no reference held. A concurrent iso_sock_kill() can free sk in that window, causing use-after-free on sk->sk_state and sock_queue_rcv_skb(). Fix by replacing the bare pointer read with iso_sock_hold(conn), which calls sock_hold() while the spinlock is held, atomically elevating the refcount before the lock drops. Add a drop_put label so sock_put() is called on all exit paths where the hold succeeded.
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 use-after-free vulnerability exists in the Linux kernel's Bluetooth ISO subsystem where iso_recv_frame reads the socket pointer under a spinlock but releases the lock before using the socket, creating a window where concurrent iso_sock_kill() can free the socket. The fix involves using iso_sock_hold() to atomically increment the socket reference count while holding the lock, ensuring the socket remains valid.
Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.
CVSS 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
- None
- User interaction
- None
- Scope
- Unchanged
- Confidentiality
- High
- Integrity
- High
- Availability
- High
CVSS:3.1/AV:A/AC:L/PR:N/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.
-
Check kernel version against fixed releaseRun `uname -r` to get the running kernel version. Compare against the kernel version that contains the fix for this vulnerability (Linux kernel mainline after the fix commit).Affected if Kernel version is older than the fixed version and the Bluetooth ISO subsystem is in use.
-
Verify Bluetooth ISO support is activeCheck if the kernel has Bluetooth ISO support enabled by running `lsmod | grep -i iso` or checking `cat /proc/kallsyms | grep iso_recv_frame`. Also check kernel config with `zcat /proc/config.gz 2>/dev/null | grep -i ISO` or check /boot/config-$(uname -r)Affected if The iso_recv_frame function is present and the btiso kernel module or Bluetooth ISO functionality is loaded/available.
-
Confirm iso_sock_hold is missing (vulnerable code present)Check the kernel symbol table or source for the iso_recv_frame function. Run `nm /lib/modules/$(uname -r)/kernel/net/bluetooth/iso.ko 2>/dev/null | grep iso_sock_hold` or inspect the compiled code for the presence of iso_sock_hold calls around the sk pointer access.Affected if The iso_recv_frame function does NOT use iso_sock_hold() before accessing sk->sk_state, indicating the vulnerable code pattern exists.
-
Check for active ISO connectionsMonitor for active Bluetooth ISO connections using `btmon` or check /sys/kernel/debug/bluetooth/iso* for existing connections. Also check `cat /proc/net/bluetooth/iso` if available.Affected if Active ISO connections exist, which would trigger the vulnerable code path in iso_recv_frame.
The environment is affected if running a vulnerable Linux kernel version (pre-fix) with Bluetooth ISO support enabled and active ISO connections present, as the UAF window exists when iso_recv_frame accesses the socket pointer outside the spinlock.
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.
From vendor dataApply the kernel patch that replaces the bare conn->sk pointer read with iso_sock_hold() to properly hold a reference, and ensure all code paths call sock_put() via the new drop_put label.
- Consultation3.0 h
- Implementation4.0 h
- Testing6.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 $4,128.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2026-63946 — 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-63946 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