Cyber Posture

CVE-2026-31528

High

Published: 22 April 2026

Published
22 April 2026
Modified
28 April 2026
KEV Added
Patch
CVSS Score 7.8 CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
EPSS Score 0.0001 2.4th percentile
Risk Priority 16 60% EPSS · 20% KEV · 20% CVSS

Summary

CVE-2026-31528 is a high-severity Out-of-bounds Read (CWE-125) vulnerability in Linux Linux Kernel. Its CVSS base score is 7.8 (High).

Operationally, exploitation aligns with the MITRE ATT&CK technique Exploitation for Privilege Escalation (T1068); ranked at the 2.4th percentile by exploit likelihood (below the median); it is not currently listed in the CISA KEV catalog.

The strongest mitigations our analysis identified are NIST 800-53 SI-2 (Flaw Remediation) and RA-5 (Vulnerability Monitoring and Scanning).

Threat & Defense at a Glance

What attackers do: exploitation maps to Exploitation for Privilege Escalation (T1068) and 2 other techniques. What defenders deploy: see the NIST 800-53 controls recommended below.
Threat & Defense Details

Mitigating Controls (NIST 800-53 r5)AI

prevent

Directly and comprehensively mitigates CVE-2026-31528 by requiring timely patching of the Linux kernel with commits that ensure consistent pmu_ctx->pmu usage in perf event inheritance, group scheduling, and reading.

preventdetect

Addresses the vulnerability by scanning for and identifying the known Linux kernel perf out-of-bounds access flaw, enabling remediation.

prevent

Mitigates exploitation of the out-of-bounds memory access in the kernel perf subsystem through enforced memory protection mechanisms.

MITRE ATT&CK Enterprise TechniquesAI

T1068 Exploitation for Privilege Escalation Privilege Escalation
Adversaries may exploit software vulnerabilities in an attempt to elevate privileges.
T1212 Exploitation for Credential Access Credential Access
Adversaries may exploit software vulnerabilities in an attempt to collect credentials.
T1499.004 Application or System Exploitation Impact
Adversaries may exploit software vulnerabilities that can cause an application or system to crash and deny availability to users.
Why these techniques?

Local kernel OOB memory access in perf enables direct privilege escalation via memory modification (T1068), credential harvesting via arbitrary reads (T1212), and system crashes for DoS (T1499.004).

Confidence: HIGH · MITRE ATT&CK Enterprise v18.1

NVD Description

In the Linux kernel, the following vulnerability has been resolved: perf: Make sure to use pmu_ctx->pmu for groups Oliver reported that x86_pmu_del() ended up doing an out-of-bound memory access when group_sched_in() fails and needs to roll back. This *should* be…

more

handled by the transaction callbacks, but he found that when the group leader is a software event, the transaction handlers of the wrong PMU are used. Despite the move_group case in perf_event_open() and group_sched_in() using pmu_ctx->pmu. Turns out, inherit uses event->pmu to clone the events, effectively undoing the move_group case for all inherited contexts. Fix this by also making inherit use pmu_ctx->pmu, ensuring all inherited counters end up in the same pmu context. Similarly, __perf_event_read() should use equally use pmu_ctx->pmu for the group case.

Deeper analysisAI

CVE-2026-31528 is a vulnerability in the Linux kernel's perf subsystem that leads to an out-of-bounds memory access. The issue occurs in x86_pmu_del() during rollback when group_sched_in() fails, particularly when the group leader is a software event. This stems from transaction handlers using the wrong PMU, as inherit clones events with event->pmu instead of pmu_ctx->pmu, undoing prior fixes in move_group and group_sched_in cases. Similarly, __perf_event_read() fails to use pmu_ctx->pmu for groups. It is classified as CWE-125 with a CVSS v3.1 base score of 7.8.

A local attacker with low privileges can exploit this vulnerability with low attack complexity and no user interaction required. Successful exploitation grants high impacts on confidentiality, integrity, and availability, potentially allowing arbitrary kernel memory reads, modifications, or crashes due to the out-of-bounds access.

Mitigation requires applying upstream kernel patches, as detailed in the referenced stable commits: 35f7914e54fe7f13654c22ee045b05e4b6d8062b, 3a696e84a8b1fafdd774bb30d62919faf844d9e4, 4b9ce671960627b2505b3f64742544ae9801df97, 4c759446046500a1a6785b25725725c3ff087ace, and 656f35b463995bee024d948440128230aacd81e1. These ensure consistent use of pmu_ctx->pmu in inherit and __perf_event_read() for group cases.

Details

CWE(s)

Affected Products

linux
linux kernel
7.0 · 6.2 — 6.6.131 · 6.7 — 6.12.80 · 6.13 — 6.18.21

CVEs Like This One

CVE-2026-23076Same product: Linux Linux Kernel
CVE-2025-71101Same product: Linux Linux Kernel
CVE-2024-57982Same product: Linux Linux Kernel
CVE-2025-71136Same product: Linux Linux Kernel
CVE-2025-21782Same product: Linux Linux Kernel
CVE-2025-21743Same product: Linux Linux Kernel
CVE-2026-31558Same product: Linux Linux Kernel
CVE-2025-21647Same product: Linux Linux Kernel
CVE-2026-23204Same product: Linux Linux Kernel
CVE-2026-31568Same product: Linux Linux Kernel

References