CVE-2026-46216
NULL Pointer Dereference in Linux Kernel DRM/xe/HDCP
Publication date: 2026-05-28
Last updated on: 2026-05-28
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | * |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
How can this vulnerability impact me? :
This vulnerability can cause a kernel pagefault error, which may lead to system instability or crashes when media GT is disabled. Such crashes can disrupt normal system operations and potentially cause denial of service conditions.
Can you explain this vulnerability to me?
This vulnerability exists in the Linux kernel's drm/xe/hdcp component. When the media GT (Graphics Technology) is disabled via configfs, the media_gt pointer remains NULL because no allocation is made for it. The function intel_hdcp_gsc_check_status() does not check if media_gt is NULL before accessing its members, leading to a kernel pagefault error due to dereferencing an invalid memory address.
The fix involves adding a NULL check for media_gt in intel_hdcp_gsc_check_status() to prevent the function from accessing invalid memory when media_gt is NULL.