CVE-2022-50459
BaseFortify
Publication date: 2025-10-01
Last updated on: 2025-10-02
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | kernel | * |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a NULL pointer dereference in the Linux kernel's iSCSI TCP code. It occurs when the code tries to access socket operations via a socket structure that has been freed and had its operations pointer set to NULL. Specifically, a race condition happens because the code holds a reference to the underlying 'struct sock' but not the 'struct socket', leading to a NULL pointer crash when calling kernel_getpeername(). The fix involves using a mutex to properly synchronize access to the socket instead of relying on spinlocks and reference counts.
How can this vulnerability impact me? :
This vulnerability can cause a NULL pointer dereference crash in the Linux kernel, potentially leading to a denial of service (system crash or kernel panic) when the iSCSI TCP socket is accessed concurrently during its release. This could disrupt services relying on iSCSI storage connections.