CVE-2022-50259
BaseFortify
Publication date: 2025-09-15
Last updated on: 2025-11-25
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | 5.5 |
| linux | linux_kernel | 5.5 |
| linux | linux_kernel | From 5.15.160 (inc) to 5.16 (inc) |
| linux | linux_kernel | From 5.15.160 (inc) to 5.16 (inc) |
| linux | linux_kernel | From 5.15.160 (inc) to 5.16 (inc) |
| linux | linux_kernel | From 5.15.160 (inc) to 5.16 (inc) |
| linux | linux_kernel | From 5.15.160 (inc) to 5.16 (inc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-362 | The product contains a concurrent code sequence that requires temporary, exclusive access to a shared resource, but a timing window exists in which the shared resource can be modified by another code sequence operating concurrently. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a race condition in the Linux kernel's BPF sockmap implementation. Specifically, the function sock_map_free() calls release_sock(sk) without owning a reference to the socket, which can lead to a use-after-free condition. This means that the kernel might try to access memory that has already been freed, potentially causing crashes or other unpredictable behavior.
How can this vulnerability impact me? :
The vulnerability can cause use-after-free errors in the Linux kernel, which may lead to system instability, crashes, or potentially allow an attacker to execute arbitrary code or escalate privileges if they can exploit the race condition.