CVE-2022-50323
BaseFortify
Publication date: 2025-09-15
Last updated on: 2025-12-04
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.68 (inc) to 5.15.77 (exc) |
| linux | linux_kernel | From 5.19.9 (inc) to 6.0 (exc) |
| linux | linux_kernel | From 6.0.1 (inc) to 6.0.7 (exc) |
| linux | linux_kernel | 6.0 |
| linux | linux_kernel | 6.0 |
| linux | linux_kernel | 6.0 |
| linux | linux_kernel | 6.0 |
| linux | linux_kernel | 6.1 |
| linux | linux_kernel | 6.1 |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-NVD-CWE-noinfo |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a data race condition in the Linux kernel related to the function skb_append_pagefrags(), which is used in af_unix and udp sendpage() implementations. The issue involves improper handling of the pfmemalloc status for pages owned by user space, leading to a concurrency bug detected by the Kernel Concurrency Sanitizer (KCSAN). The fix involves not sensing the pfmemalloc status in skb_append_pagefrags() and using skb_fill_page_desc_noacc() to avoid the data race.
How can this vulnerability impact me? :
This vulnerability can cause data races in the Linux kernel memory management, potentially leading to system instability, crashes, or unpredictable behavior when using af_unix or udp sendpage() features. Such concurrency issues can affect system reliability and security.