The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-31692

CVE-2026-31692: Linux Kernel Privilege Escalation Flaw

CVE-2026-31692 is a privilege escalation vulnerability in the Linux kernel rtnetlink subsystem that allows unprivileged users to create network interfaces in arbitrary namespaces. This article covers technical details, impact, and mitigation.

Published: April 30, 2026

CVE-2026-31692 Overview

A missing capability check vulnerability exists in the Linux kernel's rtnetlink subsystem. The rtnl_newlink() function lacks a CAP_NET_ADMIN capability check on the peer network namespace when creating paired devices such as veth, vxcan, and netkit. This authorization bypass allows an unprivileged user with access to a user namespace to create network interfaces in arbitrary network namespaces, including the critical init_net namespace.

Critical Impact

Unprivileged users can bypass network namespace isolation boundaries and create interfaces in arbitrary namespaces, potentially compromising network segmentation and container security.

Affected Products

  • Linux Kernel (multiple stable versions)
  • Systems using veth, vxcan, or netkit paired network devices
  • Container environments relying on network namespace isolation

Discovery Timeline

  • 2026-04-30 - CVE CVE-2026-31692 published to NVD
  • 2026-04-30 - Last updated in NVD database

Technical Details for CVE-2026-31692

Vulnerability Analysis

This vulnerability represents a Privilege Escalation and Authorization Bypass flaw in the Linux kernel's rtnetlink interface. The core issue stems from an incomplete capability check implementation in the rtnl_newlink() function. While the function properly validates CAP_NET_ADMIN capability in the caller's namespace, it fails to perform the same check against the peer network namespace when creating paired network devices.

Paired network devices like veth (virtual ethernet pairs), vxcan (virtual CAN pairs), and netkit create endpoints that span two network namespaces. When a user creates such a device, they should require administrative privileges in both the source and destination namespaces. The missing netlink_ns_capable() check for the peer namespace creates a privilege boundary violation.

Root Cause

The root cause is a missing netlink_ns_capable() call for CAP_NET_ADMIN validation against the peer network namespace in the rtnl_newlink() function. When creating paired devices, the kernel only verified capabilities in the requesting namespace, not the target peer namespace where the paired interface would be created.

Attack Vector

An attacker with access to a user namespace (commonly available in container environments or systems with unprivileged user namespace creation enabled) can exploit this vulnerability by:

  1. Creating a user namespace where they have CAP_NET_ADMIN privileges
  2. Using the rtnetlink interface to create a paired network device (veth, vxcan, or netkit)
  3. Specifying init_net or another privileged network namespace as the peer namespace
  4. Successfully creating an interface in the target namespace without proper authorization

This allows network device creation in protected namespaces, potentially enabling network traffic interception, container escape vectors, or disruption of network isolation boundaries.

The fix adds a netlink_ns_capable() check to verify CAP_NET_ADMIN capability in the peer namespace before allowing device creation to proceed. This ensures proper authorization is validated for both endpoints of paired network devices.

Detection Methods for CVE-2026-31692

Indicators of Compromise

  • Unexpected network interfaces appearing in privileged network namespaces
  • Audit logs showing netlink socket operations from user namespaces targeting external namespaces
  • Unusual veth, vxcan, or netkit device creation patterns from unprivileged processes
  • Container processes creating network devices outside their expected namespace scope

Detection Strategies

  • Monitor /proc/net/dev for unexpected interface creation in critical namespaces
  • Enable kernel auditing for netlink socket operations with NETLINK_ROUTE family
  • Implement namespace-aware monitoring to detect cross-namespace device creation
  • Deploy SentinelOne Singularity Platform for behavioral detection of namespace escape attempts

Monitoring Recommendations

  • Enable CONFIG_AUDIT and configure audit rules for RTM_NEWLINK netlink messages
  • Monitor for processes creating user namespaces followed by network device operations
  • Track network namespace boundary crossings in containerized environments
  • Implement runtime security monitoring for abnormal netlink API usage patterns

How to Mitigate CVE-2026-31692

Immediate Actions Required

  • Apply the kernel patches from the stable kernel tree immediately
  • Restrict unprivileged user namespace creation by setting kernel.unprivileged_userns_clone=0 where possible
  • Review and audit existing network namespace configurations for unauthorized interfaces
  • Consider implementing additional AppArmor or SELinux policies restricting netlink operations

Patch Information

Linux kernel developers have released fixes in multiple stable kernel branches. The patches add a netlink_ns_capable() check for CAP_NET_ADMIN in the peer namespace before allowing paired device creation. Apply the relevant patch for your kernel version:

  • Kernel Git Commit 0975b64
  • Kernel Git Commit 7b735ef
  • Kernel Git Commit d04cc16

Workarounds

  • Disable unprivileged user namespace creation using sysctl: kernel.unprivileged_userns_clone=0
  • Use Seccomp filters to restrict NETLINK_ROUTE socket operations from untrusted processes
  • Implement container runtime policies that restrict network device creation capabilities
  • Apply the no_new_privs flag to sensitive workloads to limit namespace capability escalation
bash
# Disable unprivileged user namespaces as a workaround
echo 'kernel.unprivileged_userns_clone=0' >> /etc/sysctl.d/99-disable-userns.conf
sysctl -p /etc/sysctl.d/99-disable-userns.conf

# Verify the setting is applied
sysctl kernel.unprivileged_userns_clone

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit 0975b64

  • Kernel Git Commit 7b735ef

  • Kernel Git Commit d04cc16
  • Related CVEs
  • CVE-2026-43055: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-43052: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-31724: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-31735: Linux Kernel Privilege Escalation Flaw
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English