CVE-2023-53332
BaseFortify
Publication date: 2025-09-16
Last updated on: 2025-12-10
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.6 (inc) to 6.1.18 (exc) |
| linux | linux_kernel | From 6.2 (inc) to 6.2.5 (exc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-476 | The product dereferences a pointer that it expects to be valid but is NULL. |
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 genirq subsystem, specifically in the irq_data_get_affinity_mask() function. When certain functions (ipi_send_mask or ipi_send_single) are called with an invalid interrupt number, local variables become NULL. Although ipi_send_verify() checks its 'data' parameter, it misses a NULL pointer check, leading to a kernel oops (crash) when the NULL pointer is dereferenced.
How can this vulnerability impact me? :
This vulnerability can cause the Linux kernel to crash (kernel oops) when invalid interrupt numbers are used in specific inter-processor interrupt functions. This can lead to system instability or denial of service.