CyberRota
← Ana sayfaya dön

CVE-2026-53272

UNKNOWN · CVSS N/A EPSS %0.16

Kaynak: NVD + CISA KEV + EPSS · Yayınlanma: 2026-06-25T09:16:45.353 · Çekilme zamanı: 2026-06-30T18:33:31.117661+00:00

CyberRota Yorumu

Detaylı analiz gerekiyor.

CVE
CVE-2026-53272
Severity
UNKNOWN
CVSS
N/A
EPSS
%0.16
Linux

Orijinal NVD Açıklaması

In the Linux kernel, the following vulnerability has been resolved: erofs: fix use-after-free on sbi->sync_decompress z_erofs_decompress_kickoff() can race with filesystem unmount, causing a use-after-free on sbi->sync_decompress. When I/O completes, z_erofs_endio() calls z_erofs_decompress_kickoff() to queue z_erofs_decompressqueue_work() asynchronously. Then, after all folios are unlocked, unmount workflow can proceed and sbi will be freed before accessing to sbi->sync_decompress. Thread (unmount) I/O completion kworker queue_work z_erofs_decompressqueue_work (all folios are unlocked) cleanup_mnt .. erofs_kill_sb erofs_sb_free kfree(sbi) access sbi->sync_decompress // UAF!!