AUGUST 15, 2026
Live Feed
Back to database
Case File

CVE-2026-72488

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 SoundWire implementation, specifically in the `sdw_add_element_group_count` function, which previously allowed for an out-of-bounds memory access when iterating through element groups. This flaw could potentially lead to memory corruption or crashes, posing a risk to system stability and security. Linux system administrators and developers working with SoundWire should prioritize applying the fix to mitigate any potential exploitation risks.

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

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: soundwire: fix bug in sdw_add_element_group_count found by syzkaller The original implementation caused an out-of-bounds memory access in the sdw_add_element_group_count for-loop when i == num. for (i = 0; i <= num; i++) { if (rate == group->rates[i] && lane == group->lanes[i]) ... To fix this error, the function now checks for existing rate/lane entries in the group(a function parameter) using a for-loop before adding them. No functional changes apart from this fix.