CyberRota
← Ana sayfaya dön

CVE-2026-43163

MEDIUM · CVSS 4.7 EPSS %0.01

Kaynak: NVD + CISA KEV + EPSS · Yayınlanma: 2026-05-06T12:16:34.410 · Çekilme zamanı: 2026-06-05T12:00:30.393771+00:00

CyberRota Yorumu

Detaylı analiz gerekiyor.

CVE
CVE-2026-43163
Severity
MEDIUM
CVSS
4.7
EPSS
%0.01
Linux

Orijinal NVD Açıklaması

In the Linux kernel, the following vulnerability has been resolved: md/bitmap: fix GPF in write_page caused by resize race A General Protection Fault occurs in write_page() during array resize: RIP: 0010:write_page+0x22b/0x3c0 [md_mod] This is a use-after-free race between bitmap_daemon_work() and __bitmap_resize(). The daemon iterates over `bitmap->storage.filemap` without locking, while the resize path frees that storage via md_bitmap_file_unmap(). `quiesce()` does not stop the md thread, allowing concurrent access to freed pages. Fix by holding `mddev->bitmap_info.mutex` during the bitmap update.