SEPTEMBER 14, 2026
Live Feed
Back to database
Case File

CVE-2026-80967

HIGH · CVSS 8.4 EPSS 0.18%

Source: NVD + CISA KEV + EPSS · Published 2026-09-11 · Last synced 2026-09-14

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's ALSA subsystem, specifically in the pcxhr driver, where mutexes are not initialized before requesting a threaded IRQ. This oversight can lead to potential race conditions and undefined behavior if an interrupt occurs while the mutex is uninitialized. Linux system administrators and developers working with the ALSA framework should prioritize addressing this issue to ensure system stability and prevent potential exploitation.

CVE
CVE-2026-80967
Severity
HIGH
CVSS
8.4
EPSS
0.18%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: ALSA: pcxhr: initialize mutexes before requesting threaded IRQ pcxhr_probe() requests pcxhr_threaded_irq() before initializing mgr->lock, even though the threaded handler takes that mutex. Initialize the manager locks before request_threaded_irq() so an early interrupt cannot run against uninitialized mutex state during probe.