CVE-2022-50310
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.18 (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 is a use-after-free (UAF) issue in the Linux kernel's IPv6 multicast routing code. Specifically, when the initialization function addrconf_init_net() fails, it frees a pointer (devconf_all) but later the function ip6mr_sk_done() tries to access this freed pointer, leading to invalid memory access. This can cause kernel crashes or undefined behavior.
How can this vulnerability impact me? :
This vulnerability can lead to invalid pointer access in the Linux kernel, potentially causing system instability, crashes, or denial of service. Exploiting this could disrupt normal network operations or affect system reliability.