CVE-2023-53552
BaseFortify
Publication date: 2025-10-04
Last updated on: 2026-03-23
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | From 6.2 (inc) to 6.5.4 (exc) |
| linux | linux_kernel | From 6.0 (inc) to 6.1.54 (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 in the Linux kernel's drm/i915 component involves improper handling of requests for GuC virtual engines, which could lead to use-after-free issues. Specifically, references to i915_requests can be trapped by userspace inside sync_file or dmabuf and held indefinitely across different processes, causing memory leaks. The fix involves marking requests for virtual engines to avoid keeping references past their completion and ensuring the engine pointer is valid upon fence release.
How can this vulnerability impact me? :
The vulnerability can lead to memory leaks and use-after-free conditions in the Linux kernel's graphics driver, potentially causing system instability, crashes, or security issues related to memory corruption.