AUGUST 15, 2026
Live Feed
Back to database
Case File

CVE-2026-72302

UNKNOWN · CVSS N/A

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

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's ASoC subsystem, specifically in the `sof_ipc3_control_update()` function, where improper size calculations using firmware-provided data can lead to integer overflow on 32-bit platforms. This flaw may result in out-of-bounds access, potentially allowing an attacker to exploit the system. Organizations using affected Linux kernel versions, particularly those deploying audio drivers or related firmware, should prioritize patching to mitigate the risk of exploitation.

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

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: ASoC: SOF: ipc3-control: Use overflow checks in control_update size calc In sof_ipc3_control_update(), the expected_size calculation uses firmware-provided cdata->num_elems in arithmetic that could overflow on 32-bit platforms, wrapping to a small value. This would allow the cdata->rhdr.hdr.size comparison to pass with mismatched sizes, potentially leading to out-of-bounds access in snd_sof_update_control. Use check_mul_overflow() and check_add_overflow() to detect and reject overflowed size calculations.