CVE-2026-72071
Received Received - Intake

BaseFortify

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

Publication date: 2026-08-15

Last updated on: 2026-08-15

Assigner: kernel.org

Description

In the Linux kernel, the following vulnerability has been resolved: tracing/user_events: Fix use-after-free in user_event_mm_dup() user_event_mm_dup() walks the parent mm's enabler list locklessly under rcu_read_lock() during fork() (from copy_process()); it does not take event_mutex: rcu_read_lock(); list_for_each_entry_rcu(enabler, &old_mm->enablers, mm_enablers_link) enabler->event = user_event_get(orig->event); user_event_enabler_destroy() removes an enabler from that list with list_del_rcu() and then, without waiting for a grace period, drops the enabler's user_event reference with user_event_put() and frees the enabler with kfree(). A reader that loaded the enabler before the list_del_rcu() can still be walking it, which leads to two use-after-frees: - kfree(enabler) frees the enabler while that reader dereferences enabler->event. - user_event_put() may drop the last reference to the user_event, which is then freed (via delayed_destroy_user_event() on a work queue), while the same reader does user_event_get(orig->event) on it. Both are reachable by an unprivileged task that can open user_events_data: one multithreaded process that registers an enabler and then concurrently unregisters it and calls fork() triggers the race. KASAN reports a slab-use-after-free in user_event_mm_dup() during clone(), with a "refcount_t: addition on 0" warning when the user_event is freed. The enabler use-after-free was found first; the user_event one was reported by XIAO WU, and the earlier enabler-only fix did not address it. Defer both the user_event_put() and the kfree(enabler) to a work item queued with queue_rcu_work(), so they run only after an RCU grace period, once all readers walking the enabler list have finished. The put must run in process context because user_event_put() takes event_mutex on the last reference, so a work queue is used rather than call_rcu(). The now-unlocked put lets the locked argument of user_event_enabler_destroy() be removed; all callers are updated.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-08-15
Last Modified
2026-08-15
Generated
2026-08-15
AI Q&A
2026-08-15
EPSS Evaluated
N/A
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 vulnerability in the Linux kernel's tracing/user_events subsystem. It occurs during the fork() system call when a parent process's memory management (mm) enabler list is accessed without proper locking. A race condition allows an enabler to be freed while another thread is still accessing it, leading to memory corruption and potential crashes.

Detection Guidance

This vulnerability is specific to the Linux kernel's tracing/user_events subsystem and requires kernel-level access to detect. It involves race conditions during process forking. Detection would typically involve kernel tracing tools like ftrace or perf to monitor for slab-use-after-free errors or refcount_t warnings in kernel logs.

Impact Analysis

An unprivileged local attacker could exploit this to cause a denial-of-service (system crash) or potentially execute arbitrary code with kernel privileges. The vulnerability is triggered by a multithreaded process that registers and unregisters an enabler while concurrently calling fork().

Mitigation Strategies

Apply the kernel patch that fixes this issue by deferring user_event_put() and kfree(enabler) to an RCU-protected work queue. Update to a Linux kernel version that includes the fix for CVE-2026-72071. If immediate patching is not possible, restrict access to user_events_data to unprivileged users to reduce attack surface.

Chat Assistant

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

EPSS Chart