CVE-2026-64265
Gravedad CVSS v3.1:
ALTA
Tipo:
No Disponible / Otro tipo
Fecha de publicación:
25/07/2026
Última modificación:
30/07/2026
Descripción
*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
fuse: clear intr_entry in fuse_resend and fuse_remove_pending_req<br />
<br />
When fuse_resend() moves a request from fpq->processing back to<br />
fiq->pending, it sets FR_PENDING and clears FR_SENT but does not<br />
remove the requests intr_entry from fiq->interrupts. If the<br />
request had FR_INTERRUPTED set from a prior signal, intr_entry<br />
remains dangling on fiq->interrupts. When the requesting task<br />
then receives a fatal signal, fuse_remove_pending_req() sees<br />
FR_PENDING=1, removes the request from fiq->pending and frees it<br />
via the refcount path, also without cleaning intr_entry. The<br />
stale intr_entry causes use-after-free when fuse_read_interrupt()<br />
iterates fiq->interrupts:<br />
- list_del_init(&req->intr_entry) -> UAF write on freed slab<br />
- req->in.h.unique -> UAF read, data leaked to userspace<br />
<br />
Remove intr_entry from fiq->interrupts in fuse_resend() for<br />
interrupted requests before they are placed back on fiq->pending.<br />
<br />
Add a WARN_ON if the intr_entry is not empty on request destruction.
Impacto
Puntuación base 3.x
7.80
Gravedad 3.x
ALTA



