CyberRota
← Ana sayfaya dön

CVE-2026-46221

MEDIUM · CVSS 5.5 EPSS %0.12

Kaynak: NVD + CISA KEV + EPSS · Yayınlanma: 2026-05-28T10:16:37.737 · Çekilme zamanı: 2026-06-27T06:04:54.906734+00:00

CyberRota Yorumu

Bellek tüketimine neden olabilir.

CVE
CVE-2026-46221
Severity
MEDIUM
CVSS
5.5
EPSS
%0.12
Linux

Orijinal NVD Açıklaması

In the Linux kernel, the following vulnerability has been resolved: EDAC/versalnet: Fix device name memory leak The device name allocated via kzalloc() in init_one_mc() is assigned to dev->init_name but never freed on the normal removal path. device_register() copies init_name and then sets dev->init_name to NULL, so the name pointer becomes unreachable from the device. Thus leaking memory. Use a stack-local char array instead of using kzalloc() for name.