CVE-2026-93805
Last modified
CVE-2026-93805 is a vulnerability of currently unknown severity. In the Linux kernel, the following vulnerability has been resolved: wifi: cfg80211: validate rx/tx MLME callback frame lengths before access cfg80211_rx_mlme_mgmt() and cfg80211_tx_mlme_mgmt() call tracepoints before rejecting frames shorter than the frame-control field. After that, they only require len >= 2 before dispatching into subtype handlers that assume their fixed fields are present. The frames that trip this are not shorter than 2 bytes; they are short relative to their subtype.
Description
In the Linux kernel, the following vulnerability has been resolved: wifi: cfg80211: validate rx/tx MLME callback frame lengths before access cfg80211_rx_mlme_mgmt() and cfg80211_tx_mlme_mgmt() call tracepoints before rejecting frames shorter than the frame-control field. After that, they only require len >= 2 before dispatching into subtype handlers that assume their fixed fields are present. The frames that trip this are not shorter than 2 bytes; they are short relative to their subtype. mwifiex is a concrete in-tree example on the length side: mwifiex_process_mgmt_packet() only requires a 4-address ieee80211_hdr plus the 2-byte firmware length prefix before handing the frame to cfg80211_rx_mlme_mgmt(). After stripping the length prefix and removing addr4, pkt_len can be exactly 24: a bare 3-address management header with no reason-code body. The existing WARN_ON(len < 2) does not fire on such a frame, and cfg80211_process_deauth() then reads u.deauth.reason_code as a two-byte access starting at offset 24, immediately past the 24-byte buffer. Add a frame-control length gate, then validate each subtype's minimum frame size in an if/else-if chain that mirrors the dispatch logic. Trace only after the frame is known to be well-formed. Side effects of this change: - The WARN_ON(len < 2) is dropped. It only guarded the frame_control read, never the subtype fixed fields, and it does not fire on the frames that actually trigger the out-of-bounds read (which are >= 2). The len >= 2 check is kept as the guard before dereferencing frame_control, but without the warning: these are exported callbacks and a malformed frame from a driver should be dropped silently rather than backtraced. - cfg80211_tx_mlme_mgmt() previously routed every non-deauth subtype through disassociation handling; it now silently ignores unrecognised subtypes.
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 6829c878ecd24ff0ae41b4668c7e9d0f11b66942, < 0ec738a0d361d7eb37188117166d201f9df622d3; >= 6829c878ecd24ff0ae41b4668c7e9d0f11b66942, < 8f4127a93cf60d561ad39849a9ac763ba0e14db5; >= 6829c878ecd24ff0ae41b4668c7e9d0f11b66942, < d5e4586546974179feca305a94e07fac3e9727fe |
| Linux | Linux | 2.6.32 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-93805?
How severe is CVE-2026-93805?
How do I fix CVE-2026-93805?
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-9380A security vulnerability has been detected in Edimax BR-6675…8.8
- CVE-2026-93800In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93801In the Linux kernel, the following vulnerability has been re…7
- CVE-2026-93802In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93803In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93804In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93806In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-93807In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93808In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93809In the Linux kernel, the following vulnerability has been re…
- CVE-2026-9381A vulnerability was detected in Edimax BR-6675nD 1.12. Affec…8.8
- CVE-2026-93810In the Linux kernel, the following vulnerability has been re…7
Are you affected by CVE-2026-93805?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
