CVE Catalog

CVE-2026-64272

HighCVSS 7.8
Published: Updated: Translated: NVD NIST

Exploitation Probability (EPSS)

Low risk
0.16%

6th percentile - higher than 6% of all known CVEs

Summary

In the Linux kernel's mms114 touch driver, there is an indexing error for MMS134S and MMS136 controllers. The driver uses the wrong structure size (8 bytes) instead of the actual event size (6 bytes), causing touch events to be read from incorrect offsets.

Risk Assessment

Incorrect touch event processing can lead to input device malfunctions, potentially allowing an attacker to manipulate touch data.

Recommendation

Apply the Linux kernel patch that fixes the byte offset calculation for each touch event based on the controller's actual event size.

Other vulnerabilities in Linux kernel

See all
Original NVD description (English source)

In the Linux kernel, the following vulnerability has been resolved: Input: mms114 - fix touch indexing for MMS134S and MMS136 The MMS134S and MMS136 touch controllers have an event size of 6 bytes rather than 8 bytes. When __mms114_read_reg() reads the touch data packet from the device into the touch buffer, the events are packed tightly at 6-byte intervals. However, the driver iterates through the events using standard C array indexing (touch[index]), where each element is sizeof(struct mms114_touch) (8 bytes) apart. As a result, any touch events beyond the first one are read from incorrect offsets and parsed improperly. Fix this by explicitly calculating the byte offset for each touch event based on the device's specific event size.

Vulnerability data from NVD (NIST) · CISA KEV · EPSS