CVE-2023-53336
BaseFortify
Publication date: 2025-09-17
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 5.16 (inc) to 6.4.16 (exc) |
| linux | linux_kernel | From 6.5 (inc) to 6.5.3 (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
How can this vulnerability impact me? :
This vulnerability can cause the Linux kernel to crash or behave unpredictably due to a null pointer dereference in the ipu-bridge driver. This may lead to system instability or denial of service conditions on affected devices using this driver.
Can you explain this vulnerability to me?
This vulnerability is a null pointer dereference in the Linux kernel's media component, specifically in the ipu-bridge driver. It occurs because the sensor->adev pointer is not set when certain parsing functions (ipu_bridge_parse_rotation() and ipu_bridge_parse_orientation()) run. If these functions encounter unknown values and trigger warning messages, the code attempts to use sensor->adev, which is null, leading to a crash or undefined behavior. The fix involves setting sensor->adev earlier to prevent this null pointer dereference.