CVE-2026-23056
BaseFortify
Publication date: 2026-02-04
Last updated on: 2026-02-06
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
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 uacce driver where the mremap operation was not explicitly implemented in the uacce_vm_ops structure.
Because the mremap operation was missing, the default mremap method was used, which copies the original virtual memory area's private data to the new virtual memory area.
This behavior can lead to a risk where an application that performs a sequence of mmap, mremap, and munmap calls could cause the same resource to be freed twice, potentially leading to memory corruption or instability.
The fix was to implement the mremap operation to explicitly return -EPERM, preventing this unsafe behavior.
How can this vulnerability impact me? :
This vulnerability can lead to a double free of kernel resources when certain memory operations are performed by an application.
Double freeing memory can cause memory corruption, which may result in system instability, crashes, or potentially allow an attacker to exploit the kernel for 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