SEPTEMBER 14, 2026
Live Feed
Back to database
Case File

CVE-2026-89523

HIGH · CVSS 7.8 EPSS 0.14%

Source: NVD + CISA KEV + EPSS · Published 2026-09-11 · Last synced 2026-09-14

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's mt76 driver for the mt7925 Wi-Fi chipset, where pending work can execute after the device has been reset, suspended, or unregistered, potentially accessing freed memory or sending commands without firmware availability. This could lead to undefined behavior or system crashes. Organizations using devices with the mt7925 chipset should prioritize applying the fix to mitigate risks associated with device state inconsistencies.

CVE
CVE-2026-89523
Severity
HIGH
CVSS
7.8
EPSS
0.14%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: wifi: mt76: mt7925: cancel pending mlo_pm_work If the device is reset, suspended or unregistered within that window, the pending work can still run and access vif/bss data that may already be freed, or send MCU commands while the firmware is not available. Add cancel_delayed_work_sync(&dev->mlo_pm_work) in all relevant teardown and suspend paths: - mt7925_mac_reset_work() (chip reset recovery) - mt7925e_unregister_device() (PCIe unbind) - mt7925_pci_suspend() (PCIe bus suspend) - mt7925_suspend() (mac80211 suspend) - mt7925u_suspend() (USB bus / runtime suspend) This ensures the work is stopped before the device state becomes invalid.