SEPTEMBER 20, 2026
Live Feed
Back to database
Case File

CVE-2026-64515

HIGH · CVSS 8.3 EPSS 0.24%

Source: NVD + CISA KEV + EPSS · Published 2026-07-25 · Last synced 2026-08-24

CyberRota Analysis

AI-Generated

The vulnerability in the Linux kernel affects the mac80211 subsystem, specifically in the handling of multi-link elements during the defragmentation process. This flaw can lead to incorrect data retrieval and potential heap overflows, posing a risk of denial-of-service or arbitrary code execution. Organizations using affected Linux distributions, particularly those relying on wireless networking functionalities, should prioritize patching this vulnerability to mitigate associated risks.

CVE
CVE-2026-64515
Severity
HIGH
CVSS
8.3
EPSS
0.24%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: wifi: mac80211: fix MLE defragmentation If either reconf or EPCS multi-link element (MLE) is contained in a non-transmitted profile, the defragmentation routine is called with a pointer to the defragmented copy, but the original elements. This is incorrect for two reasons: - if the original defragmentation was needed, it will not find the correct data - if the original frame is at a higher address, the parsing will potentially overrun the heap data (though given the layout of the buffers, only into the new defragmentation buffer, and then it has to stop and fail once that's filled with copied data. Fix it by tracking the container along with the pointer and in doing so also unify the two almost identical defragmentation routines.