AUGUST 22, 2026
Live Feed
Back to database
Case File

CVE-2026-68181

UNKNOWN · CVSS N/A EPSS 0.20%

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 management of the MEI (Management Engine Interface) device, specifically during the cleanup process where improper locking can lead to a use-after-free condition. This could allow an attacker to exploit concurrent access issues, potentially leading to system instability or unauthorized access. Organizations utilizing Linux systems with MEI devices should prioritize addressing this vulnerability to mitigate risks associated with system reliability and security.

CVE
CVE-2026-68181
Severity
UNKNOWN
CVSS
N/A
EPSS
0.20%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: mei: bus: access mei_device under device_lock on cleanup Fix couple of problems in mei_cl_bus_dev_release(): mei_cl_flush_queues() is running without lock. bus->file_list access after mei_dev_bus_put(bus) can become a use-after-free if this was the last reference to bus. Protect queues cleanup and WARN traversal by device lock there to avoid the concurrent access problems. Move WARN traversal before mei_dev_bus_put(bus). This file uses bus variable name for mei_device, adjust code of mei_cl_bus_dev_release() to use bus variable too.