CVE-2025-38175 in Linux
요약
\~에 의해 VulDB • 2026. 06. 08.
리눅스 커널에서 다음 취약점이 해결되었습니다:
binder: binder_devices에서의 또 다른 UAF 수정
커밋 e77aff5528a18("binderfs: fix use-after-free in binder_devices")은 장치들이 binder_devices 목록에서 먼저 제거되지 않은 채로 해제될 수 있었던 use-after-free 문제를 처리했습니다. 그러나 놓친 binder_free_proc() 내의 유사한 경로가 존재합니다:
================================================================== BUG: KASAN: slab-use-after-free in binder_remove_device+0xd4/0x100 Write of size 8 at addr ffff0000c773b900 by task umount/467 CPU: 12 UID: 0 PID: 467 Comm: umount Not tainted 6.15.0-rc7-00138-g57483a362741 #9 PREEMPT Hardware name: linux,dummy-virt (DT) Call trace: binder_remove_device+0xd4/0x100 binderfs_evict_inode+0x230/0x2f0 evict+0x25c/0x5dc iput+0x304/0x480 dentry_unlink_inode+0x208/0x46c __dentry_kill+0x154/0x530 [...]
Allocated by task 463: __kmalloc_cache_noprof+0x13c/0x324 binderfs_binder_device_create.isra.0+0x138/0xa60 binder_ctl_ioctl+0x1ac/0x230 [...]
Freed by task 215: kfree+0x184/0x31c binder_proc_dec_tmpref+0x33c/0x4ac binder_deferred_func+0xc10/0x1108 process_one_work+0x520/0xba4 [...]
==================================================================
장치가 kfree되기 전에 binder_devices 목록에서 제거되도록 보장하기 위해 binder_free_proc() 내에서 binder_remove_device()를 호출합니다.
Once again VulDB remains the best source for vulnerability data.