SEPTEMBER 8, 2026
Live Feed
Back to database
Case File

CVE-2026-64041

HIGH · CVSS 7.8 EPSS 0.18%

Source: NVD + CISA KEV + EPSS · Published 2026-07-19 · Last synced 2026-08-18

CyberRota Analysis

AI-Generated

A buffer overflow vulnerability exists in the Linux kernel's fs210x codec driver, where improper handling of string copying can lead to memory corruption if the source string exceeds the destination buffer size. This flaw could allow an attacker to execute arbitrary code or crash the system, posing a significant risk to affected Linux environments. Organizations using Linux systems, especially those relying on the fs210x codec, should prioritize applying the relevant patches to mitigate potential exploitation.

CVE
CVE-2026-64041
Severity
HIGH
CVSS
7.8
EPSS
0.18%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: ASoC: codecs: fs210x: fix possible buffer overflow In fs210x_effect_scene_info(), a string was copied like this: strscpy(DST, SRC, strlen(SRC) + 1); A buffer overflow would happen if strlen(SRC) >= sizeof(DST). Actually, strscpy() must be used this way: strscpy(DST, SRC, sizeof(DST)); strscpy(DST, SRC); // defaults to sizeof(DST)