AUGUST 22, 2026
Live Feed
Back to database
Case File

CVE-2026-68311

UNKNOWN · CVSS N/A EPSS 0.17%

Source: NVD + CISA KEV + EPSS · Published 2026-08-10 · Last synced 2026-08-22

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's handling of Multi-Link Operation (MLO) stations, specifically in the mt7925 driver, where a NULL pointer dereference may occur when updating decap offload state for a station without a corresponding link. This can lead to potential system crashes or instability. Organizations using Linux systems with the mt7925 driver should prioritize addressing this issue to maintain system reliability and security.

CVE
CVE-2026-68311
Severity
UNKNOWN
CVSS
N/A
EPSS
0.17%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: wifi: mt76: mt7925: guard link STA in decap offload mt7925_sta_set_decap_offload() iterates over the vif valid_links mask when updating decap offload state for an MLO station. The station may not have a link STA for every valid link of the vif, so mt792x_sta_to_link() can return NULL for a link that belongs to the vif but not to the station. The function currently dereferences mlink before checking whether the link WCID is ready. If mlink is NULL, setting or clearing MT_WCID_FLAG_HDR_TRANS dereferences a NULL pointer. Skip links without a station link before touching mlink->wcid.