SEPTEMBER 20, 2026
Live Feed
Back to database
Case File

CVE-2026-64490

HIGH · CVSS 8.4 EPSS 0.15%

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

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's ALSA subsystem, specifically in the virtio-snd control handling, where it improperly trusts device-provided control metadata. This flaw can lead to out-of-bounds access, potentially allowing a malicious or faulty device to exploit the system, resulting in memory corruption or crashes. Organizations using Linux systems with virtio-snd should prioritize patching this vulnerability to mitigate the risk of exploitation.

CVE
CVE-2026-64490
Severity
HIGH
CVSS
8.4
EPSS
0.15%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: ALSA: virtio: Validate control metadata from the device virtio-snd control handling trusts the device-provided control type and value count returned by the device. That metadata is then used directly to index g_v2a_type_map[] in virtsnd_kctl_info(), and to size loops and memcpy() operations in virtsnd_kctl_get() and virtsnd_kctl_put() against fixed-size virtio_snd_ctl_value and snd_ctl_elem_value arrays. A buggy or malicious device can therefore trigger out-of-bounds access by advertising an invalid control type or an oversized value count. Validate control type and count once in virtsnd_kctl_parse_cfg(), before querying enumerated items or exposing the control to ALSA.