AUGUST 15, 2026
Live Feed
Back to database
Case File

CVE-2026-74291

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 handling of PCM and DAI name strings within topology objects, where insufficient validation allows for the potential reading of memory beyond allocated buffers. This could lead to information disclosure or undefined behavior when processing malformed topology blobs. Linux system administrators and developers working with audio subsystem configurations should prioritize addressing this issue to mitigate potential security risks.

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

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: ASoC: topology: Check PCM and DAI name strings before use Topology objects store several PCM and DAI names in fixed-size UAPI arrays. Other topology parser paths validate these fields with bounded strnlen() checks before using them as C strings, but the PCM and DAI paths still pass some fixed-size arrays directly to strlen(), devm_kstrdup(), DAI lookup, and diagnostic prints. A malformed topology blob with a non-NUL-terminated PCM, DAI, or stream capability name can therefore make the parser read past the end of the fixed-size field. Reject unterminated PCM and DAI name fields before consuming them as C strings.