CVE-2026-64444
Awaiting Analysis Awaiting Analysis - Queue

Out-of-Bounds Read in Linux Kernel RTL8723BS WiFi Driver

Vulnerability report for CVE-2026-64444, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-07-25

Last updated on: 2026-08-11

Assigner: kernel.org

Description

In the Linux kernel, the following vulnerability has been resolved: staging: rtl8723bs: fix OOB read in OnAssocRsp() IE loop The IE parsing loop in OnAssocRsp() advances by (pIE->length + 2) each iteration but only guards on i < pkt_len. When a malicious AP sends an AssocResponse whose last IE has only one byte remaining in the frame (the element_id byte lands at pkt_len-1), the loop reads pIE->length from pframe[pkt_len], which is one byte past the allocated receive buffer. Additionally, even when the header bytes are in bounds, pIE->length itself can extend the data window beyond pkt_len, silently passing a truncated IE to the handler functions. Add two guards at the top of the loop body: 1. Break if fewer than sizeof(*pIE) bytes remain (can't read header). 2. Break if the IE's declared data extends past pkt_len.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-07-25
Last Modified
2026-08-11
Generated
2026-08-14
AI Q&A
2026-07-25
EPSS Evaluated
2026-08-13
NVD
EUVD

Affected Vendors & Products

Showing 2 associated CPEs
Vendor Product Version / Range
linux_kernel linux_kernel *
linux_kernel rtl8723bs *

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-UNKNOWN

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

This is a buffer overflow vulnerability in the Linux kernel's staging driver for Realtek RTL8723bs Wi-Fi chips. The issue occurs in the OnAssocRsp() function when parsing association response frames from access points. The loop incorrectly calculates the size of information elements (IEs) and may read beyond the allocated buffer, leading to out-of-bounds memory access.

Detection Guidance

This vulnerability is specific to the Linux kernel's staging driver for RTL8723BS WiFi chips. Detection requires checking if your system uses this driver and kernel version with the vulnerable code. Inspect loaded kernel modules with lsmod | grep rtl8723bs. Check kernel version with uname -a. Monitor system logs for crashes or errors related to wireless drivers.

Impact Analysis

An attacker within Wi-Fi range could exploit this to crash the system or potentially execute arbitrary code with kernel privileges. This could lead to denial of service, data corruption, or unauthorized access to sensitive information on affected devices using the vulnerable Realtek Wi-Fi driver.

Compliance Impact

This vulnerability is an out-of-bounds (OOB) read in the Linux kernel's Wi-Fi driver, which could allow unauthorized memory access. While it does not directly impact GDPR or HIPAA compliance, such vulnerabilities may lead to data breaches or unauthorized data exposure, which are key concerns under these regulations. Organizations must ensure proper patching and security controls to mitigate risks.

Mitigation Strategies

Update your Linux kernel to a patched version that includes the fix for this vulnerability. If you cannot update immediately, disable the vulnerable rtl8723bs driver by blacklisting it with echo blacklist rtl8723bs | sudo tee /etc/modprobe.d/blacklist-rtl8723bs.conf followed by sudo update-initramfs -u. Avoid connecting to untrusted wireless networks until patched.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-64444. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart