SEPTEMBER 19, 2026
Live Feed
Back to database
Case File

CVE-2026-74733

HIGH · CVSS 7.8 EPSS 0.12%

Source: NVD + CISA KEV + EPSS · Published 2026-08-22 · Last synced 2026-09-18

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's PCA953x GPIO driver, where improper locking in the regmap configuration can lead to race conditions during register read/write operations. This flaw may result in incorrect data being processed, potentially compromising system stability and functionality. Linux system administrators and developers utilizing the PCA953x driver should prioritize addressing this issue to ensure reliable operation and avoid potential system errors.

CVE
CVE-2026-74733
Severity
HIGH
CVSS
7.8
EPSS
0.12%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: gpio: pca953x: fix pca953x_irq_bus_sync_unlock regmap lock Locking is disabled in the regmap config as this driver uses its own lock. This means that all calls to regmap functions (read or write) must hold the i2c_lock. The function pca953x_irq_bus_sync_unlock() did not do this, and it was therefore possible that multiple threads could cause an incorrect register to be read/written. A previous patch partly fixed this, but only protected the write to the interrupt mask register, and not the read from the direction register.