CVE-2026-64403 Details
Description
In the Linux kernel, the following vulnerability has been resolved: Bluetooth: L2CAP: validate option length before reading conf opt value l2cap_get_conf_opt() derives the option length from the attacker-controlled opt->len field and immediately dereferences opt->val (as u8, get_unaligned_le16() or get_unaligned_le32(), or a raw pointer for the default case) before any caller has confirmed that opt->len bytes are present in the buffer. The callers (l2cap_parse_conf_req(), l2cap_parse_conf_rsp() and l2cap_conf_rfc_get()) only detect a malformed option afterwards, once the running length has gone negative, by which point the out-of-bounds read has already executed. An existing post-hoc length check keeps the garbage value from being consumed, so this is not a data leak in the current control flow. It is still a validate-after-use ordering bug: up to 4 bytes are read past the end of the buffer before it is known to contain them, and it is fragile to future changes in the callers. Fix it at the source. Pass the end of the buffer into l2cap_get_conf_opt() and refuse to touch opt->val unless the full option (header + value) fits. Each caller computes an end pointer once before the loop and checks the return value directly instead of inferring the error from a negative length.
A vulnerability in the Linux kernel's Bluetooth L2CAP implementation allows for out-of-bounds reads due to improper validation of option lengths in configuration options. The issue arises in the 'l2cap_get_conf_opt()' function, which reads option lengths from an attacker-controlled field and immediately dereferences the value without ensuring that the specified number of bytes is available. This flaw can lead to reading up to four bytes past the end of a buffer, creating a validate-after-use ordering bug that could be exploited by manipulating the option length.
Users can upgrade to the latest version of the Linux kernel where this vulnerability has been patched. Instructions for upgrading the kernel can be found in the documentation for the specific Linux distribution being used.
Metrics
CVSS 4.0 Severity and Vector Strings:
No CVSS 4.0 data is available for this CVE.
CVSS 3.x Severity and Vector Strings:
No data available for CVSS Version 2.0 on this CVE.
No SSVC data is available for this CVE.
References to Advisories, Solutions, and Tools
By selecting these links, you will be leaving this site. These are references gathered from the official CVE record and are not endorsed by Volerion.
| URL | Source(s) | Tag(s) |
|---|---|---|
| https://git.kernel.org/stable/c/687617555cedfb74c9e3cb85d759b908dcb17856 | kernel.org | Patch |
| https://git.kernel.org/stable/c/6b47bdaacfd0045687880177e0987055d8f4765a | kernel.org | Patch |
| https://git.kernel.org/stable/c/73abbaf91aa33da87c008fb62c148ade561bb606 | kernel.org | Patch |
| https://git.kernel.org/stable/c/7d871e969b941ce25653f7716203a0ea4d07ad4b | kernel.org | Patch |
| https://git.kernel.org/stable/c/98d93c226bdfaa79bbdd86981921d7f106374225 | kernel.org | Patch |
| https://git.kernel.org/stable/c/996d3da39899aceb8f4910911a3f19a45a7d9d1b | kernel.org | Patch |
| https://git.kernel.org/stable/c/cca81b4bc672604a84f6d224a55cc77ec7dee619 | kernel.org | Patch |
| https://git.kernel.org/stable/c/f70d4aa88068096f35d73e3a05eff33c0a16b9cd | kernel.org | Patch |
Weakness Enumeration
| CWE-ID | CWE Name | Source |
|---|---|---|
| CWE-476 | NULL Pointer Dereference | [email protected] |
Affected Products
| Product | Versions |
|---|---|
| linux linux kernel | >= 3.16.66, < 3.17 >= 3.18.138, < 3.19 >= 4.4.178, < 4.5 >= 4.9.167, < 4.10 >= 4.14.110, < 4.15 >= 4.19.33, < 4.20 >= 5.0.6, < 5.10.261 >= 5.11, < 5.15.212 >= 5.16, < 6.1.178 >= 6.2, < 6.6.145 >= 6.7, < 6.12.96 >= 6.13, < 6.18.39 >= 6.19, < 7.1.4 7.2 rc1 7.2 rc2 |
CPE
Remediation
| |
Change History
4 change records found show changes
| Date | Action | Recorded By |
|---|---|---|
| Sep 4, 2026 | Initial Analysis | [email protected] |
| Aug 17, 2026 | CVE Modified | kernel.org |
| Jul 27, 2026 | CVE Modified | kernel.org |
| Jul 25, 2026 | New CVE Received | kernel.org |