CVE-2026-80914
Last modified
CVE-2026-80914 is a high-severity vulnerability rated 8.8/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: Bluetooth: ISO: fix use-after-free of listener socket in iso_conn_ready iso_conn_ready() looks up the BIS listener socket with iso_get_sock(), which takes a reference, and then, without re-checking its state, creates a child socket from it: parent = iso_get_sock(hdev, ...); if (!parent) return; lock_sock(parent); sk = iso_sock_alloc(sock_net(parent), NULL, BTPROTO_ISO, ...); ... iso_chan_add(conn, sk, parent); ... release_sock(parent); sock_put(parent); If the listener socket is closed concurrently, between iso_get_sock() and lock_sock(), the reference taken by iso_get_sock() may be the last one: the close path drops the link-list reference, and once iso_conn_ready() drops its own reference at the end of the function the socket is freed. The child socket, however, is already linked to the freed parent, and a later disconnect of the child runs iso_chan_del() -> bt_accept_unlink(), which dereferences the dangling parent pointer into the freed accept queue (a use-after-free). EPSS estimates a 0.22% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: Bluetooth: ISO: fix use-after-free of listener socket in iso_conn_ready iso_conn_ready() looks up the BIS listener socket with iso_get_sock(), which takes a reference, and then, without re-checking its state, creates a child socket from it: parent = iso_get_sock(hdev, ...); if (!parent) return; lock_sock(parent); sk = iso_sock_alloc(sock_net(parent), NULL, BTPROTO_ISO, ...); ... iso_chan_add(conn, sk, parent); ... release_sock(parent); sock_put(parent); If the listener socket is closed concurrently, between iso_get_sock() and lock_sock(), the reference taken by iso_get_sock() may be the last one: the close path drops the link-list reference, and once iso_conn_ready() drops its own reference at the end of the function the socket is freed. The child socket, however, is already linked to the freed parent, and a later disconnect of the child runs iso_chan_del() -> bt_accept_unlink(), which dereferences the dangling parent pointer into the freed accept queue (a use-after-free). The same dangling pointer is also dereferenced through parent->***() in iso_chan_del(). Fix it the same way the connected (non-BIS) path was fixed in commit 0d255e63fcf3 ("Bluetooth: ISO: hold sk properly in iso_conn_ready"): after taking the socket lock, re-check that the parent is still a listening, alive socket, and bail out otherwise.
Metrics
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= ccf74f2390d60a2f9a75ef496d2564abb478f46a, < 1702f12cf59a1c3b670eb6bb4a4d6fcccf07e3b8; >= ccf74f2390d60a2f9a75ef496d2564abb478f46a, < d47b8f8c02a3d3f282693e5a4ff1f6b4b00518de; >= ccf74f2390d60a2f9a75ef496d2564abb478f46a, < 2387cd06a2c0b416f05028b02bba1089f54c28d9; >= ccf74f2390d60a2f9a75ef496d2564abb478f46a, < 49fd7116f76b860b230843700fb7423ab5331e1f; >= ccf74f2390d60a2f9a75ef496d2564abb478f46a, < 03288b7447c9e572f8ab82fc29cfb4ca719ab210; >= ccf74f2390d60a2f9a75ef496d2564abb478f46a, < 560bef609fa5992745929e8d7d458b9d88dd2830 |
| Linux | Linux | 6.0 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-80914?
How severe is CVE-2026-80914?
How do I fix CVE-2026-80914?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-80909In the Linux kernel, the following vulnerability has been re…
- CVE-2026-8091Incorrect boundary conditions in the Audio/Video: Playback c…9.8
- CVE-2026-80910In the Linux kernel, the following vulnerability has been re…
- CVE-2026-80911In the Linux kernel, the following vulnerability has been re…
- CVE-2026-80912In the Linux kernel, the following vulnerability has been re…
- CVE-2026-80913In the Linux kernel, the following vulnerability has been re…
- CVE-2026-80915In the Linux kernel, the following vulnerability has been re…
- CVE-2026-80916In the Linux kernel, the following vulnerability has been re…
- CVE-2026-80917In the Linux kernel, the following vulnerability has been re…
- CVE-2026-80918In the Linux kernel, the following vulnerability has been re…
- CVE-2026-80919In the Linux kernel, the following vulnerability has been re…
- CVE-2026-8092Memory safety bugs present in Firefox ESR 115.35.1, Firefox …8.1
Are you affected by CVE-2026-80914?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
