CVE-2025-71074
BaseFortify
Publication date: 2026-01-13
Last updated on: 2026-03-25
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | 2.6.35 |
| 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 | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | From 2.6.35.1 (inc) to 6.19 (exc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-362 | The product contains a concurrent code sequence that requires temporary, exclusive access to a shared resource, but a timing window exists in which the shared resource can be modified by another code sequence operating concurrently. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a race condition in the Linux kernel's functionfs subsystem. Specifically, the function ffs_epfile_open() can race with the removal of files, leading to a use-after-free (UAF) scenario where file->private_data points to a freed object. This happens because the count of opened files is not properly synchronized, allowing a file to be opened while it is being removed, causing subsequent read() or write() operations to access freed memory.
How can this vulnerability impact me? :
The vulnerability can lead to use-after-free conditions, which may cause system instability, crashes, or potentially allow an attacker to execute arbitrary code or escalate privileges by exploiting the freed memory access.
What immediate steps should I take to mitigate this vulnerability?
To mitigate this vulnerability, update your Linux kernel to a version where the functionfs open/removal race condition is fixed. The fix involves serializing openers on ffs->mutex, using atomic_inc_not_zero() to prevent opening doomed files, marking inodes of dynamic files on removal, and verifying the state of dynamic files during open. Applying the official patch or kernel update that includes these fixes is the recommended immediate step.