SEPTEMBER 18, 2026
Live Feed
Back to database
Case File

CVE-2026-80990

UNKNOWN · CVSS N/A EPSS 0.20%

Source: NVD + CISA KEV + EPSS · Published 2026-09-11 · Last synced 2026-09-18

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's Thunderbolt networking implementation, specifically in the handling of HopIDs during connection management. An improper release of allocated HopIDs can lead to resource leaks, potentially impacting system stability and performance. Organizations using Linux systems with Thunderbolt support should prioritize this issue to mitigate risks associated with resource exhaustion and ensure optimal system operation.

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

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: net: thunderbolt: Release the Rx HopID that was handed out on mismatch tb_xdomain_alloc_in_hopid() passes the wanted HopID to ida_alloc_range() as the lower bound, so a taken id is not an error there: the allocator returns the next free one above it. tbnet_connected_work() asks for the peer's transmit path, treats any other id as a failure and returns without releasing what it got, so that allocation stays live for the rest of the XDomain connection with nothing left holding a reference to it. Release the id when it is not the one we asked for, the same way the error unwind at the end of the function releases the expected one.