Skip to main content

Over 150 LLM Providers · Over 5,300 Models The most extensible AI-powered pentesting platform. Open source. Star on GitHub

CVE-2026-64446

Published Jul 25, 2026 EPSS 0.19% (9th pctl)

Overview

CVE-2026-64446 is a known-severity vulnerability. It was published on July 25, 2026.

Technical Description

In the Linux kernel, the following vulnerability has been resolved:

staging: rtl8723bs: fix heap buffer overflow in rtw_cfg80211_set_wpa_ie()

supplicant_ie is a 256-byte array in struct security_priv. The WPA and

WPA2 IE copy paths use:

memcpy(padapter->securitypriv.supplicant_ie, &pwpa[0], wpa_ielen + 2);

where wpa_ielen is the raw IE length field (u8, 0-255). When a local user

supplies a connect request via nl80211 with a crafted WPA IE of length 255,

wpa_ielen + 2 equals 257, overflowing the 256-byte buffer by one byte into

the adjacent last_mic_err_time field.

rtw_parse_wpa_ie() does not prevent this: its length consistency check

compares *(wpa_ie+1) against (u8)(wpa_ie_len-2), which is (u8)(255) == 255

when wpa_ie_len = 257, so the check passes silently.

Add explicit bounds checks for both the WPA and WPA2 paths before the

memcpy, rejecting any IE whose total size (wpa_ielen + 2) exceeds the

supplicant_ie buffer.

Remediation

Check the references section for vendor advisories, patches, and mitigation guidance. If immediate patching is not possible, review the CVSS vector to understand the attack surface and apply compensating controls such as network segmentation or access restrictions.

Frequently Asked Questions

What is CVE-2026-64446?

CVE-2026-64446 is a known-severity vulnerability. It was published on July 25, 2026.

How severe is CVE-2026-64446?

CVSS score information is not yet available for this vulnerability. Check back as the CVE record is updated by NVD analysts.

How do I fix or remediate CVE-2026-64446?

Check the references section for vendor advisories, patches, and mitigation guidance. If immediate patching is not possible, review the CVSS vector to understand the attack surface and apply compensating controls such as network segmentation or access restrictions.

How can CyberStrike help with CVE-2026-64446?

CyberStrike's AI-powered security agents can automatically detect CVE-2026-64446 across your infrastructure using autonomous pentesting, DAST scanning, and HackBrowser. The platform continuously monitors for known vulnerabilities and provides actionable remediation guidance prioritized by real-world exploitability.