SEPTEMBER 23, 2026
Live Feed
Back to database
Case File

CVE-2026-72025

UNKNOWN · CVSS N/A EPSS 0.21%

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

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's monwriter functionality, where improper handling of reused data buffers can lead to out-of-bounds memory access and potential memory corruption. Although the default configuration restricts access to root users, the risk of exploitation exists if malicious users manage to alter data lengths. Organizations using Linux systems, particularly those with less stringent access controls, should prioritize addressing this issue to mitigate potential security risks.

CVE
CVE-2026-72025
Severity
UNKNOWN
CVSS
N/A
EPSS
0.21%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: s390/monwriter: Reject buffer reuse with different data length When data buffers are reused, e.g. for interval sample records, the first record determines the data length, and the size of the buffer for user copy. Current monwriter code does not check if the data length was changed for subsequent records, which also would never happen for valid user programs. However, a malicious user could change the data length, resulting in out of bounds user copy to the kernel buffer, and memory corruption. By default, the monwriter misc device is created with root-only permissions, so practical impact is typically low. Fix this by checking for changed data length and rejecting such records.