CVE-2026-63921
Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.
NVD · uneditedIn the Linux kernel, the following vulnerability has been resolved: ip6: vti: Use ip6_tnl.net in vti6_siocdevprivate(). After patch 1/2 in this series, vti6_update() unlinks and relinks the tunnel through t->net. vti6_siocdevprivate() still uses dev_net(dev) for the collision lookup. For a tunnel moved through IFLA_NET_NS_FD, dev_net(dev) is the new netns, not t->net. SIOCCHGTUNNEL on a migrated tunnel then runs: net = dev_net(dev) /* migrated netns */ t = vti6_locate(net, &p1, false) /* misses target in t->net */ ... t = netdev_priv(dev) vti6_update(t, &p1, false) /* mutates t->net's hash */ A caller in the migrated netns picks params that match a tunnel in the creation netns. The lookup in dev_net(dev) finds nothing. vti6_update() prepends the migrated tunnel at the head of the creation netns hash bucket for those params. Later lookups in the creation netns resolve to the migrated device. xfrm receive delivers the matched packets through a device the caller controls. Reachable from an unprivileged user namespace (unshare --user --map-root-user --net). Cross tenant scope on container hosts. Switch the SIOCCHGTUNNEL path on a non fallback device to use t->net for the lookup. The lookup now matches the netns vti6_update() operates on. Also add ns_capable(self->net->user_ns, CAP_NET_ADMIN) before the lookup. The check at the top of the case is against dev_net(dev)->user_ns, which after migration is the attacker's netns. A caller there can pick params absent from self->net, the lookup returns NULL, t becomes self, and vti6_update() inserts the device into the creation netns hash. The new check requires CAP_NET_ADMIN in the creation netns user_ns too. SIOCADDTUNNEL and SIOCCHGTUNNEL on the fallback device keep dev_net(dev), which equals init_net there.
Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.
dbcve analysis · high confidenceIn the Linux kernel's IPv6 VTI (Virtual Tunnel Interface), vti6_siocdevprivate() uses dev_net(dev) for tunnel collision lookup, but vti6_update() operates on t->net. After a tunnel is migrated via IFLA_NET_NS_FD, these differ, allowing an attacker in an unprivileged user namespace to manipulate SIOCCHGTUNNEL and insert the migrated tunnel into the wrong namespace's hash table. This enables cross-namespace hash collision and potential xfrm packet interception.
Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.
CVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.
From the vector- Attack vector
- Local
- Complexity
- Low
- Privileges
- Low
- User interaction
- None
- Scope
- Changed
- Confidentiality
- High
- Integrity
- High
- Availability
- High
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H
Am I affected? How to checkSteps we derive from the advisory and the affected-version data, so you can decide whether this CVE reaches your setup. They are a guide, not a scan — your own configuration is the authority.
dbcve checksWork through these to decide whether this CVE applies to you.
-
Check kernel version for patch presenceRun 'uname -r' to get the kernel version, then search kernel release notes or git logs for the CVE-2026-63921 fix commit (vti6_siocdevprivate namespace correction)Affected if Kernel version predates the patch that changes dev_net(dev) to t->net in vti6_siocdevprivate() for SIOCCHGTUNNEL operations
-
Identify existing IP6 VTI tunnel interfacesRun 'ip -6 tunnel show' or check /sys/class/net/ for tunnel devices, then identify VTI6 type tunnels with 'ip -6 link show'Affected if Any VTI6 (ip6_vti) tunnel interfaces exist on the system
-
Detect namespace-migrated VTI tunnelsRun 'ip -6 link show' for each VTI tunnel and check for 'link netns' entries indicating migration via IFLA_NET_NS_FD, or inspect netlink attributes via 'ip -6 -detail link'Affected if Any VTI6 tunnel shows a link netns reference different from the initial creation namespace
-
Verify tunnel hash table namespace alignmentUse 'ip -6 tunnel show' in each network namespace (ip netns exec <ns> ip -6 tunnel show) and compare tunnel presence against the namespace where each tunnel's network device actually residesAffected if A VTI6 tunnel's hash table entry exists in a different namespace than the tunnel's actual device namespace
-
Check for unprivileged user namespace VTI operationsReview audit logs (auditd) or dmesg for SIOCCHGTUNNEL ioctl calls from user namespaces, or monitor with 'ip -6 monitor' for tunnel attribute changesAffected if SIOCCHGTUNNEL operations on VTI6 tunnels are performed from unprivileged user namespaces after namespace migration
User is affected if running a kernel older than the fix AND has VTI6 tunnels that were migrated across namespaces, allowing cross-namespace packet redirection via hash table collision attacks.
Generated from the published advisory. Verify against your own configuration.
Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.
dbcve · scopedApply the kernel patch (or upgrade to a patched kernel version) that switches SIOCCHGTUNNEL to use t->net for lookups and adds ns_capable() verification for CAP_NET_ADMIN in the creation netns. This is a kernel-level fix requiring system update and reboot.
Latest stable Linux kernel (6.6.y, 6.12.y, or later stable branch)
- Upgrade the Linux kernel to a version that includes the vti6 namespace fix (commit series fixing the dev_net vs t->net mismatch in vti6_siocdevprivate)
- Ensure the kernel is built with CONFIG_XFRM_VTI enabled
- After kernel upgrade, verify vti6 tunnels function correctly in containerized environments
- If using custom network namespace migration (IFLA_NET_NS_FD), test SIOCCHGTUNNEL operations post-migration to confirm correct namespace behavior
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation2.0 h
- Implementation4.0 h
- Testing6.0 h
- Review / QA3.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $4,096.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2026-63921 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.
References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.
Primary sourcesPractitioner notes
ContributedPeer-ranked notes from engineers who’ve handled CVE-2026-63921 in production — separate from our analysis above.
The advisory tells you what broke. It rarely tells you what actually worked. If you’ve dealt with this one, that detail is what the next engineer is searching for.
- The version that genuinely resolved it — not the one the vendor claimed
- A config change or rule that shut the vector down
- A gotcha in the upgrade path that cost you an afternoon
No notes yet
Be the first to add a field note for this CVE — a mitigation you’ve verified, a version caveat, or a link to a working fix. Sign in above to contribute.
A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.
- Verified mitigations, workarounds, and config changes
- Version or environment caveats, and links to real fixes
- No weaponised exploit code, or anything meant to cause harm
- No spam, self-promotion, credentials, or personal data