CVE-2026-43074
eventpoll Use-After-Free in Linux Kernel
Publication date: 2026-05-06
Last updated on: 2026-05-06
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | * |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability exists in the Linux kernel's eventpoll subsystem. Specifically, the function ep_free() in eventpoll.c may free (kfree) the eventpoll structure (epi->ep) while it is still being accessed by another concurrent thread. This leads to a use-after-free (UAF) condition. The fix defers the freeing of this structure to an RCU (Read-Copy-Update) grace period callback, ensuring the structure is not freed while still in use.
How can this vulnerability impact me? :
The use-after-free vulnerability can lead to undefined behavior including potential system crashes, data corruption, or exploitation by attackers to execute arbitrary code or escalate privileges. Since the eventpoll structure may be accessed concurrently, freeing it prematurely can destabilize the kernel and compromise system security.