Description
In the Linux kernel, the following vulnerability has been resolved:

vxlan: require CAP_NET_ADMIN in the device netns for changelink

A tunnel changelink() operates on at most two netns, dev_net(dev) and
the sticky underlay netns vxlan->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 vxlan->net can rewrite a vxlan
device whose underlay lives in vxlan->net.

vxlan_changelink() validates and applies the new configuration against
vxlan->net (vxlan_config_validate(vxlan->net, ...)) and can reopen the
underlay socket in that netns, so the same reasoning as the tunnel
changelink series applies here.

Gate vxlan_changelink() with rtnl_dev_link_net_capable(), at the top of
the op before any attribute is parsed, matching ipgre_changelink() and
the rest of the "require CAP_NET_ADMIN in the device netns for
changelink" series.

Found by 0sec automated security-research tooling (https://0sec.ai).
Published: 2026-08-12
Score: 8.8 High
EPSS: < 1% Very Low
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

The kernel’s VXLAN changelink operation omitted a required CAP_NET_ADMIN check against the device’s network namespace. An attacker who holds CAP_NET_ADMIN in the dev_net(dev) namespace can invoke vxlan_changelink and modify or replace a VXLAN device whose underlying socket resides in a different namespace. This mis‑check allows the alteration of networking configuration or the installation of a malicious tunnel, giving the attacker privileged control over network traffic or the ability to bypass isolation boundaries. The vulnerability is a classic example of improper access control in kernel code, potentially leading to privilege escalation or denial of service.

Affected Systems

All Linux kernel implementations that include the unpatched vxlan_changelink code are affected, regardless of distribution. The impact applies to any system running a kernel version that has not yet been updated to the patch that adds the missing CAP_NET_ADMIN verification. Vendors listed in the CNA record are Linux, Linux.

Risk and Exploitability

The CVSS score of 8.8 reflects a high severity, the EPSS score is reported as < 1%, indicating a low chance of real‑world exploitation today, and the vulnerability is not listed in the CISA KEV catalog. Nevertheless, the missing privilege check is a high‑severity flaw, as it permits a user with limited privileges in one namespace to modify network devices in another. Exploitation requires the attacker to run within a namespace that has CAP_NET_ADMIN for the target device but not for the underlying VXLAN namespace; once this condition is met, a simple command to change link settings can be used to elevate privileges or to compromise network segmentation. The attack vector is local and requires access to a privileged shell or a service running with the necessary capability, but the bug does not need remote code execution to achieve its effect.

Generated by OpenCVE AI on August 14, 2026 at 02:13 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Update the Linux kernel to a version that contains the patch adding CAP_NET_ADMIN verification to vxlan_changelink
  • Configure network namespaces so that processes with CAP_NET_ADMIN are limited to the namespaces they are required in, preventing cross‑namespace manipulation of VXLAN devices
  • Enforce strict usage of VXLAN interfaces, disabling the creation of new tunnels in untrusted or shared namespaces and monitoring unexpected changelink operations

Generated by OpenCVE AI on August 14, 2026 at 02:13 UTC.

Tracking

Sign in to view the affected projects.

Advisories
Source ID Title
Debian DLA Debian DLA DLA-4745-1 linux-6.12 security update
History

Wed, 19 Aug 2026 16:45:00 +0000


Fri, 14 Aug 2026 01:45:00 +0000

Type Values Removed Values Added
Weaknesses CWE-284

Thu, 13 Aug 2026 23:15:00 +0000

Type Values Removed Values Added
Metrics cvssV3_1

{'score': 7.0, 'vector': 'CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H'}

cvssV3_1

{'score': 8.8, 'vector': 'CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H'}


Thu, 13 Aug 2026 12:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-266
References
Metrics threat_severity

None

cvssV3_1

{'score': 7.0, 'vector': 'CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H'}

threat_severity

Important


Wed, 12 Aug 2026 16:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-284

Wed, 12 Aug 2026 00:15:00 +0000

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: vxlan: require CAP_NET_ADMIN in the device netns for changelink A tunnel changelink() operates on at most two netns, dev_net(dev) and the sticky underlay netns vxlan->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 vxlan->net can rewrite a vxlan device whose underlay lives in vxlan->net. vxlan_changelink() validates and applies the new configuration against vxlan->net (vxlan_config_validate(vxlan->net, ...)) and can reopen the underlay socket in that netns, so the same reasoning as the tunnel changelink series applies here. Gate vxlan_changelink() with rtnl_dev_link_net_capable(), at the top of the op before any attribute is parsed, matching ipgre_changelink() and the rest of the "require CAP_NET_ADMIN in the device netns for changelink" series. Found by 0sec automated security-research tooling (https://0sec.ai).
Title vxlan: require CAP_NET_ADMIN in the device netns for changelink
First Time appeared Linux
Linux linux Kernel
CPEs cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
Vendors & Products Linux
Linux linux Kernel
References

Subscriptions

Linux Linux Kernel
cve-icon MITRE

Status: PUBLISHED

Assigner: Linux

Published:

Updated: 2026-08-19T16:35:30.743Z

Reserved: 2026-07-30T09:28:09.393Z

Link: CVE-2026-68432

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-08-12T00:17:43.290

Modified: 2026-08-19T17:20:50.010

Link: CVE-2026-68432

cve-icon Redhat

Severity : Important

Publid Date: 2026-08-12T00:00:00Z

Links: CVE-2026-68432 - Bugzilla

cve-icon OpenCVE Enrichment

Updated: 2026-08-14T02:15:03Z

Weaknesses
  • CWE-266

    Incorrect Privilege Assignment