CVE-2022-50363
BaseFortify
Publication date: 2025-09-17
Last updated on: 2025-12-10
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | From 6.0 (inc) to 6.0.6 (exc) |
| linux | linux_kernel | 6.1 |
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 in the Linux kernel involves the function alloc_sk_msg() being called from a non-sleepable context without the proper gfp_t argument. The issue was identified because alloc_sk_msg() could sleep, but it was called in a context where sleeping is not allowed, leading to potential kernel bugs or crashes. The fix requires callers to pass a gfp_t argument to alloc_sk_msg() to ensure proper memory allocation behavior in the correct context.
How can this vulnerability impact me? :
This vulnerability can cause kernel bugs or crashes due to improper memory allocation in non-sleepable contexts. This may lead to system instability or denial of service on affected Linux systems.