CVE-2022-50300
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 4.15 (inc) to 5.15.87 (exc) |
| linux | linux_kernel | From 5.16 (inc) to 6.0.18 (exc) |
| linux | linux_kernel | From 6.1 (inc) to 6.1.4 (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 issue in the Linux kernel's btrfs filesystem code. Specifically, it occurs when handling an extent map related to a missing device during a read operation. The code frees a reference-counted structure (extent_map) but then attempts to use it afterward, which can lead to undefined behavior or crashes. This happens when a chunk is stored on a missing device and the degraded mount option is not enabled.
How can this vulnerability impact me? :
The use-after-free vulnerability can cause system instability, crashes, or potential data corruption when accessing btrfs filesystems with missing devices under certain conditions. This could lead to denial of service or data loss if exploited or triggered unintentionally.