CVE-2026-45958
Analyzed Analyzed - Analysis Complete
Memory Corruption in Linux Kernel DRM Exynos VIDI

Publication date: 2026-05-27

Last updated on: 2026-06-16

Assigner: kernel.org

Description
In the Linux kernel, the following vulnerability has been resolved: drm/exynos: vidi: fix to avoid directly dereferencing user pointer In vidi_connection_ioctl(), vidi->edid(user pointer) is directly dereferenced in the kernel. This allows arbitrary kernel memory access from the user space, so instead of directly accessing the user pointer in the kernel, we should modify it to copy edid to kernel memory using copy_from_user() and use it.
CVSS Scores
EPSS Scores
Probability:
Percentile:
Meta Information
Published
2026-05-27
Last Modified
2026-06-16
Generated
2026-06-16
AI Q&A
2026-05-27
EPSS Evaluated
2026-06-15
NVD
EUVD
Affected Vendors & Products
Showing 7 associated CPEs
Vendor Product Version / Range
linux linux_kernel From 6.13 (inc) to 6.18.14 (exc)
linux linux_kernel From 6.19 (inc) to 6.19.4 (exc)
linux linux_kernel From 6.2 (inc) to 6.6.130 (exc)
linux linux_kernel From 6.7 (inc) to 6.12.77 (exc)
linux linux_kernel From 5.11 (inc) to 5.15.203 (exc)
linux linux_kernel From 5.16 (inc) to 6.1.167 (exc)
linux linux_kernel From 3.4 (inc) to 5.10.253 (exc)
Helpful Resources
Exploitability
CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-476 The product dereferences a pointer that it expects to be valid but is NULL.
Attack-Flow Graph
AI Quick Actions
Instant insights powered by AI
Executive Summary

This vulnerability exists in the Linux kernel's drm/exynos driver, specifically in the vidi_connection_ioctl() function. The issue arises because a user pointer (vidi->edid) is directly dereferenced in kernel space without proper validation or copying.

Directly dereferencing a user pointer in the kernel can lead to arbitrary kernel memory access from user space, which is a serious security risk. The fix involves copying the data from user space to kernel space using the safe copy_from_user() function before accessing it.

Impact Analysis

This vulnerability allows an attacker to gain arbitrary access to kernel memory from user space. Such access can lead to privilege escalation, unauthorized data access, system crashes, or other malicious activities that compromise the security and stability of the affected system.

Mitigation Strategies

To mitigate this vulnerability, update the Linux kernel to a version where the drm/exynos vidi driver no longer directly dereferences user pointers. The fix involves modifying vidi_connection_ioctl() to safely copy the edid data from user space to kernel space using copy_from_user() instead of direct dereferencing.

Chat Assistant
Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-45958. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70
EPSS Chart