AUGUST 22, 2026
Live Feed
Back to database
Case File

CVE-2026-68413

UNKNOWN · CVSS N/A EPSS 0.20%

Source: NVD + CISA KEV + EPSS · Published 2026-08-10 · Last synced 2026-08-22

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's ipw2100 driver, where a potential memory leak occurs due to allocated memory not being freed in certain error paths during device initialization. This could lead to increased memory consumption, potentially impacting system stability and performance. Organizations using affected Linux distributions, particularly those relying on the ipw2100 wireless driver, should prioritize addressing this issue to prevent resource exhaustion.

CVE
CVE-2026-68413
Severity
UNKNOWN
CVSS
N/A
EPSS
0.20%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: wifi: ipw2100: fix potential memory leak in ipw2100_pci_init_one() The memory allocated in the ipw2100_alloc_device() function is not freed in some of the error paths in ipw2100_pci_init_one(). Fix that by converting the direct return into a goto to the error path return. The error path when pci_enable_device() fails cannot jump to fail, since at this point priv is not set, so perform error handling inline.