AUGUST 15, 2026
Live Feed
Back to database
Case File

CVE-2026-72306

UNKNOWN · CVSS N/A

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

CyberRota Analysis

AI-Generated

The vulnerability in the Linux kernel affects the vduse (virtio device user space) subsystem, specifically in the functions vduse_dev_msg_sync and vduse_dev_read_iter, where a race condition can lead to a double list deletion, potentially causing a crash. This issue could impact systems relying on vduse for virtual device management, making it critical for organizations using Linux in virtualized environments to prioritize applying the patch. Users should ensure their systems are updated to mitigate the risk of instability associated with this race condition.

CVE
CVE-2026-72306
Severity
UNKNOWN
CVSS
N/A
EPSS
N/A
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: vduse: Fix race in vduse_dev_msg_sync and vduse_dev_read_iter There is one race case in vduse_dev_msg_sync and vduse_dev_read_iter: vduse_dev_read_iter(): lock(msg_lock); dequeue_msg(send_list); unlock(msg_lock); vduse_dev_msg_sync(): wait_timeout() finish lock(msg_lock); check msg->complete is false list_del(msg); <- double list_del() crash! To fix this case, we shall ensure vduse_msg is on send_list or recv_list outside the msg_lock critical section.