CVE-2026-23077
Use-After-Free in Linux Kernel anon_vma during mremap() Merge
Publication date: 2026-02-04
Last updated on: 2026-04-03
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | From 6.16 (inc) to 6.18.8 (exc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-416 | The product reuses or references memory after it has been freed. At some point afterward, the memory may be allocated again and saved in another pointer, while the original pointer references a location somewhere within the new allocation. Any operations using the original pointer are no longer valid because the memory "belongs" to the code that operates on the new pointer. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a use-after-free (UAF) issue in the Linux kernel's memory management subsystem, specifically related to anonymous virtual memory area (anon_vma) handling during the mremap() operation.
A patch series fixed incorrect handling of merging faulted and unfaulted VMAs (virtual memory areas) when using mremap(). The problem arose because the kernel incorrectly merged faulted VMAs adjacent to unfaulted VMAs, leading to improper anon_vma state management.
The bug was due to missing checks and incorrect duplication of anon_vma state in certain corner cases during VMA merges, which could cause use-after-free errors.
How can this vulnerability impact me? :
This vulnerability can lead to use-after-free conditions in the kernel's memory management, which may cause system instability, crashes, or potentially allow an attacker to execute arbitrary code with kernel privileges.
Because it affects the kernel's handling of memory mappings, exploitation could compromise system security, leading to privilege escalation or denial of service.
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
I don't know
How can this vulnerability be detected on my network or system? Can you suggest some commands?
I don't know
What immediate steps should I take to mitigate this vulnerability?
I don't know