CVE-2024-26792는 Linux Linux, linux kernel에서 확인된 높음 등급 보안 취약점입니다. 공개 데이터에 표시된 영향 버전은 >= 66b317a2fc45b2ef66527ee3f8fa08fb5beab88d < c34adc20b91a8e55e048b18d63f4f4ae003ecf8f, >= 833775656d447c545133a744a0ed1e189ce61430 < eb3441093aad251418921246fc3b224fd1575701, >= 5a172344bfdabb46458e03708735d7b1a918c468 < c8ab7521665bd0f8bc4a900244d1d5a7095cc3b9, >= e03ee2fe873eb68c1f9ba5112fee70303ebf9dfb < e2b54eaf28df0c978626c9736b94f003b523b451, >= 3f5d47eb163bceb1b9e613c9003bae5fefc0046f, >= e31546b0f34af21738c4ceac47d662c00ee6382f, >= 5.10.210 < 5.11, >= 5.15.149 < 5.16, >= 6.1.79 < 6.1.81, >= 6.6.18 < 6.6.21, >= 6.7.6 < 6.7.9입니다. CVSS 기본 점수는 7.8점입니다. 현재 CISA KEV 등록은 확인되지 않았습니다.
NVD 영문 원문의 세부 내용은 한국어 설명으로 순차 보강 중입니다. 보강 전에는 제품·위험도·실제 악용 여부처럼 공개 데이터로 확인된 정보만 표시합니다.
영문 원문 보기
In the Linux kernel, the following vulnerability has been resolved: btrfs: fix double free of anonymous device after snapshot creation failure When creating a snapshot we may do a double free of an anonymous device in case there's an error committing the transaction. The second free may result in freeing an anonymous device number that was allocated by some other subsystem in the kernel or another btrfs filesystem. The steps that lead to this: 1) At ioctl.c:create_snapshot() we allocate an anonymous device number and assign it to pending_snapshot->anon_dev; 2) Then we call btrfs_commit_tran...