Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-31415

CVE-2026-31415: Linux Kernel IPv6 DoS Vulnerability

CVE-2026-31415 is a denial of service flaw in the Linux kernel's IPv6 sendmsg path that allows local attackers to trigger kernel panic. This article covers the technical details, affected versions, impact, and mitigation.

Published: April 17, 2026

CVE-2026-31415 Overview

A locally exploitable integer overflow vulnerability exists in the Linux kernel's IPv6 network stack within the ip6_datagram_send_ctl() function. The vulnerability stems from a mismatch between the 16-bit length accumulator (struct ipv6_txoptions::opt_flen, type __u16) and the pointer to the last provided destination-options header (opt->dst1opt) when multiple IPV6_DSTOPTS control messages are provided.

An attacker with CAP_NET_RAW capability (or an unprivileged user with access to unprivileged user namespaces) can trigger a kernel panic via skb_under_panic(), resulting in a complete system denial of service.

Critical Impact

Local attackers can crash the Linux kernel by exploiting an integer overflow in IPv6 ancillary data handling, causing a system-wide denial of service through kernel BUG/panic.

Affected Products

  • Linux kernel (IPv6 networking subsystem)
  • Systems with unprivileged user namespaces enabled
  • Systems where users have CAP_NET_RAW capability

Discovery Timeline

  • April 13, 2026 - CVE-2026-31415 published to NVD
  • April 13, 2026 - Last updated in NVD database

Technical Details for CVE-2026-31415

Vulnerability Analysis

The vulnerability resides in the IPv6 datagram socket control message processing path. The ip6_datagram_send_ctl() function in net/ipv6/datagram.c accepts repeated IPV6_DSTOPTS control messages and accumulates their lengths into a 16-bit field (opt_flen) without rejecting duplicates. This differs from the legacy IPV6_2292DSTOPTS path which properly rejects duplicate destination options.

The core issue is that when enough large IPV6_DSTOPTS control messages are provided, the 16-bit opt_flen accumulator wraps around while dst1opt still points to a large destination-options header. For example, an attacker can craft 32 control messages with hdrlen=255 (each contributing 2048 bytes) plus one additional message with hdrlen=0 (8 bytes), resulting in a total increment of 65,544 bytes. Due to the 16-bit overflow, opt_flen wraps to only 8, while dst1opt points to a 2048-byte header.

Root Cause

The root cause is the use of a 16-bit unsigned integer (__u16) for the opt_flen field in struct ipv6_txoptions combined with the lack of duplicate rejection or overflow checking in the IPV6_DSTOPTS control message handling path.

Key affected code locations:

  • include/net/ipv6.h:298 - defines __u16 opt_flen; (wrap possible)
  • net/ipv6/datagram.c:909-933 - accepts repeated IPV6_DSTOPTS and accumulates into opt_flen
  • net/ipv6/ip6_output.c:1463-1465 - uses wrapped opt_flen for headroom calculations
  • net/ipv6/exthdrs.c:1179-1184 - ipv6_push_exthdr() pushes the actual header size from dst1opt

Attack Vector

The attack exploits the mismatch between the wrapped opt_flen value used for buffer allocation decisions and the actual header size pointed to by dst1opt. When building the final socket buffer, the transmit path sizes headers using the wrapped opt_flen, causing insufficient headroom allocation. However, when pushing the actual extension header, the size comes from ipv6_optlen(opt->dst1opt) which reflects the true header size.

This results in skb_push() attempting to push more data than available headroom, triggering skb_under_panic() in net/core/skbuff.c which calls BUG() and crashes the kernel.

The attack requires CAP_NET_RAW in the target network namespace. An unprivileged user can obtain this capability by creating a user namespace combined with a network namespace when unprivileged user namespaces are enabled.

Detection Methods for CVE-2026-31415

Indicators of Compromise

  • Kernel panic messages containing skb_under_panic in system logs
  • Unexpected system crashes or reboots without hardware-related causes
  • Multiple IPv6 sendmsg system calls with unusually large ancillary data preceding a crash
  • Processes creating user namespaces followed by network namespace operations and IPv6 socket activity

Detection Strategies

  • Monitor for kernel crash dumps and dmesg output containing skb_under_panic() or skb_panic references
  • Implement system call auditing to detect repeated sendmsg() calls with large IPV6_DSTOPTS control messages
  • Deploy kernel live patching detection to identify unpatched systems
  • Use endpoint detection to monitor for processes creating user namespaces in conjunction with suspicious network operations

Monitoring Recommendations

  • Enable kernel panic logging and ensure crash dumps are captured for forensic analysis
  • Monitor system stability metrics and correlate unexpected reboots with user activity
  • Implement network namespace creation auditing on sensitive systems
  • Deploy runtime kernel protection solutions to detect exploitation attempts

How to Mitigate CVE-2026-31415

Immediate Actions Required

  • Apply the kernel patches from the official Linux kernel git repository immediately
  • Restrict access to CAP_NET_RAW capability where not strictly required
  • Disable unprivileged user namespaces if not required by setting kernel.unprivileged_userns_clone=0
  • Implement process isolation to limit the impact of local denial of service attacks

Patch Information

Multiple patches have been released to address this vulnerability across different kernel branches. The fix adds proper overflow checking and duplicate rejection for IPV6_DSTOPTS control messages:

  • Linux Kernel Commit 0bdaf54d3aaddfe8df29371260fa8d4939b4fd6f
  • Linux Kernel Commit 4e453375561fc60820e6b9d8ebeb6b3ee177d42e
  • Linux Kernel Commit 5e4ee5dbea134e9257f205e31a96040bed71e83f
  • Linux Kernel Commit 63fda74885555e6bd1623b5d811feec998740ba4
  • Linux Kernel Commit 872b74900d5daa37067ac676d9001bb929fc6a2a
  • Linux Kernel Commit 9ed81d692758dfb9471d7799b24bfa7a08224c31

Workarounds

  • Disable unprivileged user namespaces system-wide to prevent unprivileged users from obtaining namespaced CAP_NET_RAW
  • Use capability bounding sets to remove CAP_NET_RAW from processes that do not require raw socket access
  • Implement container isolation policies that prevent network namespace creation
  • Deploy mandatory access control (SELinux/AppArmor) policies to restrict IPv6 socket operations
bash
# Disable unprivileged user namespaces (prevents unprivileged exploitation)
echo 0 > /proc/sys/kernel/unprivileged_userns_clone

# Or make it persistent via sysctl configuration
echo "kernel.unprivileged_userns_clone = 0" >> /etc/sysctl.d/99-security.conf
sysctl -p /etc/sysctl.d/99-security.conf

# Remove CAP_NET_RAW from capability bounding set for specific processes
# (implementation varies by init system and container runtime)

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.03%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update
  • Related CVEs
  • CVE-2026-31418: Linux Kernel Netfilter IPset DoS Flaw

  • CVE-2026-31420: Linux Kernel Bridge MRP DoS Vulnerability

  • CVE-2026-31424: Linux Kernel Netfilter DoS Vulnerability

  • CVE-2026-31423: Linux Kernel sch_hfsc DoS Vulnerability
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