AUGUST 15, 2026
Live Feed
Back to database
Case File

CVE-2026-72133

UNKNOWN · CVSS N/A

Source: NVD + CISA KEV + EPSS · Published 2026-08-15 · Last synced 2026-08-15

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's SPI Uniphier driver, where the completion structure is not properly initialized before calling `devm_request_irq()`. This can lead to undefined behavior if an interrupt occurs immediately after the IRQ is registered, potentially causing system instability or crashes. Linux system administrators and developers using the affected kernel version should prioritize applying the fix to ensure system reliability and security.

CVE
CVE-2026-72133
Severity
UNKNOWN
CVSS
N/A
EPSS
N/A
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: spi: uniphier: Fix completion initialization order before devm_request_irq() The driver calls devm_request_irq() before initializing the completion used by the interrupt handler. Because the interrupt may occur immediately after devm_request_irq(), the handler may execute before init_completion(). This may result in calling complete() on an uninitialized completion, causing undefined behavior. This has been observed with KASAN. Fix this by initializing the completion before registering the IRQ.