In the Linux kernel, the following vulnerability has been resolved: tls: fix handling of zero-length records on the rx_list Each recvmsg()
위협 신호 · CVSS · EPSS · KEV
이론적 심각도 점수
30일 내 악용 확률 예측
등재일 2026. 09. 18.
패치 기한 2026. 09. 21.
즉시 패치 + 침해 여부 포렌식 분석
CVSS 벡터 · 메트릭
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H약점 (CWE)
상세 설명
In the Linux kernel, the following vulnerability has been resolved:
tls: fix handling of zero-length records on the rx_list
Each recvmsg() call must process either
- only contiguous DATA records (any number of them)
- one non-DATA record
If the next record has different type than what has already been
processed we break out of the main processing loop. If the record
has already been decrypted (which may be the case for TLS 1.3 where
we don't know type until decryption) we queue the pending record
to the rx_list. Next recvmsg() will pick it up from there.
Queuing the skb to rx_list after zero-copy decrypt is not possible,
since in that case we decrypted directly to the user space buffer,
and we don't have an skb to queue (darg.skb points to the ciphertext
skb for access to metadata like length).
Only data records are allowed zero-copy, and we break the processing
loop after each non-data record. So we should never zero-copy and
then find out that the record type has changed. The corner case
we missed is when the initial record comes from rx_list, and it's
zero length.
AI 심층 분석
공격 시나리오 · 재현 가능한 PoC 페이로드 · 즉시 적용 가능한 차단 패치를 한 번에 받아 보세요. 보안 운영팀이 그대로 점검·티켓팅에 쓸 수 있는 형태로 정리해 드립니다.
영향받는 제품·버전
- linux linux_kernel6.0 - 6.1.149linux
- linux linux_kernel6.2 - 6.6.103linux
- linux linux_kernel6.7 - 6.12.44linux
- linux linux_kernel6.13 - 6.16.4linux
- linux linux_kernellinux
- linux linux_kernellinux
- debian debian_linuxlinux
- siemens simatic_cn_4100_firmware< 5.0other
- siemens simatic_cn_4100other
영향받는 구성 (CPE) 6
- linux linux_kernel≥ 6.0 < 6.1.149cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
- linux linux_kernel 6.17cpe:2.3:o:linux:linux_kernel:6.17:rc1:*:*:*:*:*:*
- linux linux_kernel 6.17cpe:2.3:o:linux:linux_kernel:6.17:rc2:*:*:*:*:*:*
- debian debian_linux 11.0cpe:2.3:o:debian:debian_linux:11.0:*:*:*:*:*:*:*
- siemens simatic_cn_4100_firmware< 5.0cpe:2.3:o:siemens:simatic_cn_4100_firmware:*:*:*:*:*:*:*:*
- siemens simatic_cn_4100cpe:2.3:h:siemens:simatic_cn_4100:-:*:*:*:*:*:*:*
참고 자료 8
- https://lists.debian.org/debian-lts-announce/2025/10/msg00008.htmlMailing ListThird Party Advisory
- https://cert-portal.siemens.com/productcert/html/ssa-032379.htmlThird Party Advisory
- https://www.cisa.gov/known-exploited-vulnerabilities-catalog?field_cve=CVE-2025-39682US Government Resource
링크 내용 불러오는 중…