SEPTEMBER 8, 2026
Live Feed
Back to database
Case File

CVE-2026-63972

HIGH · CVSS 7.5 EPSS 0.58%

Source: NVD + CISA KEV + EPSS · Published 2026-07-19 · Last synced 2026-08-18

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's mana driver, specifically in the handling of port detachment, which can lead to NULL pointer dereferences during queue teardown. This issue arises when the port is already detached, potentially causing system instability or crashes. Organizations using Linux systems with the mana driver should prioritize this patch to mitigate the risk of operational disruptions.

CVE
CVE-2026-63972
Severity
HIGH
CVSS
7.5
EPSS
0.58%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: net: mana: Skip redundant detach on already-detached port When mana_per_port_queue_reset_work_handler() runs after a previous detach succeeded but attach failed, the port is left in a detached state with apc->tx_qp and apc->rxqs already freed. Calling mana_detach() again unconditionally leads to NULL pointer dereferences during queue teardown. Add an early exit in mana_detach() when the port is already in detached state (!netif_device_present) for non-close callers, making it safe to call idempotently. This allows the queue reset handler and other recovery paths to simply retry mana_attach() without redundant teardown.