CVE-2022-50423
BaseFortify
Publication date: 2025-10-01
Last updated on: 2025-12-11
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | From 3.10.55 (inc) to 3.11 (exc) |
| linux | linux_kernel | From 3.12.29 (inc) to 3.13 (exc) |
| linux | linux_kernel | From 3.14.19 (inc) to 3.15 (exc) |
| linux | linux_kernel | From 3.16.3 (inc) to 4.9.337 (exc) |
| linux | linux_kernel | From 4.10 (inc) to 4.14.303 (exc) |
| linux | linux_kernel | From 4.15 (inc) to 4.19.270 (exc) |
| linux | linux_kernel | From 4.20 (inc) to 5.4.229 (exc) |
| linux | linux_kernel | From 5.5 (inc) to 5.10.163 (exc) |
| linux | linux_kernel | From 5.11 (inc) to 5.15.86 (exc) |
| linux | linux_kernel | From 5.16 (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-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 ACPICA component, specifically in the function acpi_ut_copy_ipackage_to_ipackage(). It occurs because an internal object (acpi_operand_object) is freed prematurely when a package copy operation fails, leading to repeated attempts to release the same memory. This results in accessing memory that has already been freed, which can cause system instability or crashes.
How can this vulnerability impact me? :
The use-after-free vulnerability can lead to system crashes or instability when the affected function is executed. It may also potentially be exploited to cause denial of service or other unintended behavior in the Linux kernel, affecting system reliability.