CVE-2026-80589는 Linux에서 확인된 긴급 등급 보안 취약점입니다. 공개 데이터에 표시된 영향 버전은 >= 6f8191fdf41d3a53cc1d63fe2234e812c55a0092 < 6ae7364f68e6c7af6b6df4bbb14040b89e5975d0, >= 6f8191fdf41d3a53cc1d63fe2234e812c55a0092 < 6f06dbe5012c160e0dba418a5a9cb16c456ad46a, >= 6f8191fdf41d3a53cc1d63fe2234e812c55a0092 < 1a0ae4d502062a2759f2a92d12bdeab3c64c7372, >= 6f8191fdf41d3a53cc1d63fe2234e812c55a0092 < bb03b56d1d754908a37a160603be21769da423cf, >= 6f8191fdf41d3a53cc1d63fe2234e812c55a0092 < 93d620519d71dfc6ee64b5baea74f1d85d4439fb, >= 6f8191fdf41d3a53cc1d63fe2234e812c55a0092 < 26cb8ebbfaf713c82e142d08828d4d765057633b, >= d27b66257db183fe11c10f31246ae965adb005d3, >= 5.19.12 < 5.20, >= 6.0입니다. CVSS 기본 점수는 9.8점입니다. 현재 CISA KEV 등록은 확인되지 않았습니다.
NVD 영문 원문의 세부 내용은 한국어 설명으로 순차 보강 중입니다. 보강 전에는 제품·위험도·실제 악용 여부처럼 공개 데이터로 확인된 정보만 표시합니다.
영문 원문 보기
In the Linux kernel, the following vulnerability has been resolved: block: stop the timeout timer when releasing a never added disk disk_release() undoes blk_mq_init_allocated_queue() for a disk whose probe failed before add_disk(), but it only calls blk_mq_exit_queue(). Nothing there stops q->timeout, and that timer rolls forward: it stays pending until it next expires, not until the last request completes. So if the driver issued any I/O before adding the disk, the request_queue is freed while still linked into a timer wheel bucket. Commit 6f8191fdf41d ("block: simplify disk shutdown") dr...