CVE-2026-64300
Awaiting Analysis Awaiting Analysis - Queue

Page UAF in Linux Kernel perf/aux

Vulnerability report for CVE-2026-64300, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-07-25

Last updated on: 2026-08-11

Assigner: kernel.org

Description

In the Linux kernel, the following vulnerability has been resolved: perf/aux: Fix page UAF in map_range() map_range() reads rb->aux_pages[], rb->aux_nr_pages and rb->aux_pgoff via perf_mmap_to_page() while holding only event->mmap_mutex. Those fields are serialized by rb->aux_mutex, and mmap_mutex is per event. Thus, two events sharing one rb via PERF_EVENT_IOC_SET_OUTPUT can race rb_alloc_aux() with map_range(), leading to a page-UAF scenario as follows: CPU 0 CPU 1 ===== ===== rb_alloc_aux() map_range() [1]: allocate rb->aux_pages[0] [2]: rb->aux_nr_pages++ [3]: perf_mmap_to_page() returns rb->aux_pages[0] [4]: map it as VM_PFNMAP [5]: rb->aux_pgoff = 1 munmap the page [6]: free rb->aux_pages[0] Pages mapped as VM_PFNMAP have no refcount protection, so CPU 1 holds a mapping to a freed physical frame. Fix this by taking rb->aux_mutex across the page walk in map_range().

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-07-25
Last Modified
2026-08-11
Generated
2026-08-14
AI Q&A
2026-07-25
EPSS Evaluated
2026-08-13
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
linux linux_kernel *

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-UNKNOWN

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

This is a use-after-free (UAF) vulnerability in the Linux kernel's perf subsystem. It occurs when two CPU cores race to access shared memory structures during performance monitoring. One core may free a memory page while another core is still using it, leading to potential crashes or privilege escalation.

Detection Guidance

This vulnerability is specific to the Linux kernel's perf subsystem and requires kernel-level access to detect. There are no direct network-based detection methods. Monitor kernel logs for crashes or memory corruption events related to perf or aux buffers. Check for unusual behavior in processes using perf_event_open() or related tools.

Impact Analysis

An attacker with local access could exploit this to crash the system or gain elevated privileges. Systems using performance monitoring tools are at risk if unpatched. Data corruption or denial of service are possible outcomes.

Compliance Impact

This vulnerability is a use-after-free (UAF) issue in the Linux kernel's perf subsystem, which could lead to memory corruption or privilege escalation. It does not directly affect compliance with standards like GDPR or HIPAA, as those focus on data protection, privacy, and security controls rather than kernel memory management flaws.

Mitigation Strategies

Apply the latest kernel security patches from your Linux distribution. If patches are unavailable, avoid using PERF_EVENT_IOC_SET_OUTPUT to share ring buffers between events. Restrict access to perf_event_open() via kernel parameters or seccomp policies until patched.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-64300. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart