SEPTEMBER 19, 2026
Live Feed
Back to database
Case File

CVE-2026-72054

HIGH · CVSS 8.8 EPSS 0.17%

Source: NVD + CISA KEV + EPSS · Published 2026-08-15 · Last synced 2026-09-14

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's handling of virtual tunnel interfaces (VTI), specifically in the `vti_changelink()` function, which improperly checks for administrative privileges when modifying tunnel links across different network namespaces. This oversight could allow an attacker with CAP_NET_ADMIN privileges in one namespace to alter tunnel configurations in another, potentially leading to unauthorized access or manipulation of network traffic. System administrators and security teams managing Linux environments with network namespace configurations should prioritize addressing this vulnerability to mitigate risks associated with unauthorized network modifications.

CVE
CVE-2026-72054
Severity
HIGH
CVSS
8.8
EPSS
0.17%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: net: ip_vti: require CAP_NET_ADMIN in the device netns for changelink vti_changelink() operates on at most two netns, dev_net(dev) and the tunnel link netns t->net. They differ once the device is created in or moved to a netns other than the one the request runs in. The rtnl changelink path checks CAP_NET_ADMIN only against dev_net(dev), so a caller privileged there but not in t->net can rewrite a tunnel that lives in t->net. Gate vti_changelink() on rtnl_dev_link_net_capable() at its top, before any attribute is parsed.