CVE-2022-50241
BaseFortify
Publication date: 2025-09-15
Last updated on: 2025-11-25
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | From 5.15.160 (inc) to 5.16 (inc) |
| linux | linux_kernel | From 5.15.160 (inc) to 5.16 (inc) |
| linux | linux_kernel | From 5.15.160 (inc) to 5.16 (inc) |
| linux | linux_kernel | From 5.15.160 (inc) to 5.16 (inc) |
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 bug in the Linux kernel's NFS server (NFSD) related to inter-server copy operations. It occurs when the server tries to free an expired copy state entry that has already been freed due to the order in which LOCKU, FREE_STATEID, and CLOSE requests are processed. Specifically, if the CLOSE request is processed before the FREE_STATEID, the server frees lock states without cleaning up the copy state, leading to a use-after-free when the expired copy state is later freed.
How can this vulnerability impact me? :
This vulnerability can cause the Linux NFS server to access memory that has already been freed, potentially leading to server crashes, denial of service, or unpredictable behavior during inter-server copy operations.