CVE-2022-50287
BaseFortify
Publication date: 2025-09-15
Last updated on: 2025-12-03
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.19 (inc) to 6.0.16 (exc) |
| linux | linux_kernel | From 6.1 (inc) to 6.1.2 (exc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-401 | The product does not sufficiently track and release allocated memory after it has been used, making the memory unavailable for reallocation and reuse. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a memory leak in the Linux kernel's drm/i915/bios component. It occurs because the program attempts to free a pointer (ptrs) that was not allocated with kzmalloc(), but instead obtained via pointer offset operations. This incorrect free operation can lead to memory leaks or undefined behavior. The fix involved changing the argument to kfree() to use ptrs_block instead of ptrs.
How can this vulnerability impact me? :
This vulnerability can cause memory leaks or undefined behavior in the Linux kernel, which may degrade system performance or stability over time. In some cases, undefined behavior could potentially lead to crashes or other unpredictable system issues.