SEPTEMBER 17, 2026
Live Feed
Back to database
Case File

CVE-2026-80751

HIGH · CVSS 7.8 EPSS 0.15%

Source: NVD + CISA KEV + EPSS · Published 2026-09-03 · Last synced 2026-09-17

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel, specifically in the `mtk_mfg_attach_dev()` function, where an uninitialized pointer (`prev_o`) is read on the first iteration of a loop. This can lead to dereferencing a stale or invalid pointer, potentially causing system faults or incorrect behavior in the operating point (OPP) selection. Organizations using Linux systems, particularly those with MediaTek hardware, should prioritize addressing this issue to ensure system stability and reliability.

CVE
CVE-2026-80751
Severity
HIGH
CVSS
7.8
EPSS
0.15%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: pmdomain: mediatek: mfg: initialize prev_o in mtk_mfg_attach_dev() mtk_mfg_attach_dev() reads prev_o on the first iteration of its loop, in "if (prev_o && prev_o->freq == o->freq)", before prev_o is assigned at the end of the loop body. On that first iteration, evaluating prev_o reads an indeterminate value. If it is non-NULL, the condition dereferences a stale or invalid pointer, potentially faulting or incorrectly skipping the first OPP. Initialize prev_o to NULL. This matches the intent as well: there is no previous OPP to compare against on the first iteration. Found with Clang's -Wconditional-uninitialized.