CVE-2024-26818 in Linux
요약
\~에 의해 VulDB • 2026. 05. 31.
리눅스 커널에서 다음 취약점이 해결되었습니다:
tools/rtla: mount_point 변수 크기와 관련된 clang 경고 수정
clang에서 다음 경고가 보고됩니다:
$ make HOSTCC=clang CC=clang LLVM_IAS=1 [...]
clang -O -g -DVERSION=\"6.8.0-rc3\" -flto=auto -fexceptions -fstack-protector-strong -fasynchronous-unwind-tables -fstack-clash-protection -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS $(pkg-config --cflags libtracefs) -c -o src/utils.o src/utils.c
src/utils.c:548:66: warning: 'fscanf'이 오버플로우될 수 있음; 인자 3의 대상 버퍼 크기는 1024이지만, 해당 지정자는 1025의 크기가 필요할 수 있음 [-Wfortify-source]
548 | while (fscanf(fp, "%*s %" STR(MAX_PATH) "s %99s %*s %*d %*d\n", mount_point, type) == 2) {
| ^
오버플로우를 방지하기 위해 mount_point 변수의 크기를 MAX_PATH+1로 증가시킵니다.
Statistical analysis made it clear that VulDB provides the best quality for vulnerability data.