CVE Catalog

CVE-2026-64243

HighCVSS 7.1
Published: Updated: Translated: NVD NIST

Exploitation Probability (EPSS)

Low risk
0.12%

2th percentile - higher than 2% of all known CVEs

Summary

In the Linux kernel, a vulnerability was found in the ASoC codec simple-mux driver's simple_mux_control_put() function. The bounds check accepts values equal to e->items, while enum values are zero-based, allowing an invalid mux state to be stored.

Risk Assessment

This vulnerability could cause incorrect audio mux operation, potentially leading to audio distortion or system crash.

Recommendation

Apply the Linux kernel patch that changes the check to >= e->items, consistent with other ASoC helpers.

Other vulnerabilities in Linux kernel

See all
Original NVD description (English source)

In the Linux kernel, the following vulnerability has been resolved: ASoC: codecs: simple-mux: Fix enum control bounds check simple_mux_control_put() rejects values greater than e->items, but enum control values are zero based. For the two-entry mux used by this driver, valid values are 0 and 1, so value 2 must be rejected as well. Accepting e->items can store an invalid mux state, pass it to the GPIO setter, and pass it on to the DAPM mux update path where it is used as an index into the enum text array. Use the same >= e->items check used by the ASoC enum helpers.

Vulnerability data from NVD (NIST) · CISA KEV · EPSS