CyberRota
← Ana sayfaya dön

CVE-2026-31753

MEDIUM · CVSS 5.5 EPSS %0.01

Kaynak: NVD + CISA KEV + EPSS · Yayınlanma: 2026-05-01T15:16:38.223 · Çekilme zamanı: 2026-05-31T12:00:16.264149+00:00

CyberRota Yorumu

Detaylı analiz gerekiyor.

CVE
CVE-2026-31753
Severity
MEDIUM
CVSS
5.5
EPSS
%0.01
Linux

Orijinal NVD Açıklaması

In the Linux kernel, the following vulnerability has been resolved: auxdisplay: line-display: fix NULL dereference in linedisp_release linedisp_release() currently retrieves the enclosing struct linedisp via to_linedisp(). That lookup depends on the attachment list, but the attachment may already have been removed before put_device() invokes the release callback. This can happen in linedisp_unregister(), and can also be reached from some linedisp_register() error paths. In that case, to_linedisp() returns NULL and linedisp_release() dereferences it while freeing the display resources. The struct device released here is the embedded linedisp->dev used by linedisp_register(), so retrieve the enclosing object directly with container_of() instead.