CVE-2026-72061 is a missing CAP_NET_ADMIN capability check in the Linux kernel's SIT (Simple Internet Transition) tunnel implementation. When reconfiguring an existing SIT tunnel via the rtnetlink changelink path, the kernel checks whether the caller holds CAP_NET_ADMIN in the device's network namespace (dev_net(dev)) but fails to verify the same capability in the tunnel's actual namespace (t->net). This gap allows a privileged user in one namespace to reconfigure tunnels belonging to a different namespace — a cross-namespace isolation failure with implications for containerized and multi-tenant environments where network namespaces are the fundamental isolation boundary.
The vulnerability exists because a recent hardening series added CAP_NET_ADMIN checks to multiple changelink handlers across tunnel types, but SIT was excluded. This wasn't random neglect — SIT's code structure and namespace semantics diverge structurally from the other tunnel types, meaning it behaved differently under the same audit criteria. The pattern mirrors historical precedent in netfilter and cgroup namespace hardening where partial series created hardened reference code that masked untreated siblings from subsequent review.
The EPSS score of 0.00176 indicates no current weaponization, but this number measures exploitation probability against a static proof-of-concept, not the underlying exposure. The real risk is the compound blast radius: an attacker who compromises one namespace can potentially manipulate tunnels in another namespace they hold no credentials for. Future audits looking for 'CAP_NET_ADMIN checks on changelink handlers' will find the five treated cases and correctly conclude the pattern is established — using those as reference makes it more likely the next untreated handler survives the next pass.
Audit your kernel for other tunnel types (ip6tnl, gre, vti, wireguard) and network namespace operations that involve multiple namespaces to confirm equivalent hardening exists. The fix is correct, but the underlying condition — incremental security hardening producing predictable blind spots in complex subsystems — will generate the next similar CVE unless the kernel community addresses the documentation gap around what wasn't covered in each hardening series.