AUGUST 16, 2026
Live Feed
Back to database
Case File

CVE-2026-68340

HIGH · CVSS 7.7 EPSS 0.15%

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

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's hardware monitoring (hwmon) subsystem, specifically in the OCC poll response parser, which improperly handles truncated sensor data responses. This flaw can lead to the parser reading beyond the valid data boundaries, potentially causing memory corruption or other unpredictable behavior. Organizations using Linux systems with hwmon capabilities should prioritize this issue to mitigate risks associated with potential exploitation.

CVE
CVE-2026-68340
Severity
HIGH
CVSS
7.7
EPSS
0.15%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: hwmon: occ: validate poll response sensor blocks The OCC poll response parser walks a counted list of sensor data blocks. It used the static backing-array capacity as the parse boundary, but a transport response makes only data_length bytes current and valid. A truncated response can therefore make the parser consume a block header or block extent outside the current response. Use data_length as the parent boundary, prove the fixed poll header and each current block header before reading them, and prove the complete block before advancing. Keep parsed sensor metadata local until the complete response has passed validation, then publish it. Propagate malformed-response errors before publishing the OCC as active.