Instituto Nacional de ciberseguridad. Sección Incibe
Instituto Nacional de Ciberseguridad. Sección INCIBE-CERT

CVE-2026-63930

Gravedad CVSS v3.1:
ALTA
Tipo:
No Disponible / Otro tipo
Fecha de publicación:
19/07/2026
Última modificación:
27/07/2026

Descripción

*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> iio: buffer: hw-consumer: fix use-after-free in error path<br /> <br /> In the err_put_buffers cleanup path of iio_hw_consumer_alloc(), the code<br /> was using list_for_each_entry() to iterate through buffers while calling<br /> iio_buffer_put() which can free the current buffer if refcount drops to 0.<br /> The list_for_each_entry() loop macro then evaluates buf-&gt;head.next to<br /> continue iteration, accessing the freed buffer.<br /> <br /> Fix this by using list_for_each_entry_safe().