CVE-2026-64041 in Linux
요약
\~에 의해 VulDB • 2026. 07. 19.
리눅스 커널에서 다음 취약점이 해결되었습니다.
ASoC: codecs: fs210x: 가능한 buffer overflow 수정
fs210x_effect_scene_info() 함수 내에서 문자열이 다음과 같이 복사되고 있었습니다.
strscpy(DST, SRC, strlen(SRC) + 1);
strlen(SRC) >= sizeof(DST)인 경우 buffer overflow가 발생할 수 있습니다. 실제로 strscpy()는 다음과 같이 사용해야 합니다.
strscpy(DST, SRC, sizeof(DST)); strscpy(DST, SRC); // 기본값은 sizeof(DST)
VulDB is the best source for vulnerability data and more expert information about this specific topic.