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-23200

CVE-2026-23200: Linux Kernel IPv6 ECMP Vulnerability

CVE-2026-23200 is an IPv6 ECMP sibling count mismatch flaw in the Linux kernel that causes kernel crashes when adding static routes. This post explains its technical details, affected versions, impact, and mitigation.

Published: February 20, 2026

CVE-2026-23200 Overview

A vulnerability has been discovered in the Linux kernel's IPv6 routing subsystem that causes a kernel BUG when adding IPv6 routes due to an ECMP (Equal-Cost Multi-Path) sibling count mismatch. The flaw exists in the fib6_add_rt2node() function and was introduced by commit f72514b3c569 which added logic to clear RTF_ADDRCONF from existing routes when a static route with the same nexthop is added.

The vulnerability occurs when RTF_ADDRCONF is cleared from a route that has a gateway, causing that route to become incorrectly eligible for ECMP routing. Because this route was never added to the fib6_siblings list, a mismatch develops between the sibling count computed by iterating the fib6_next chain and the actual siblings in the fib6_siblings list. When a subsequent ECMP route is added, the kernel triggers a BUG_ON(sibling->fib6_nsiblings != rt->fib6_nsiblings) crash.

Critical Impact

Local attackers can trigger a kernel BUG (denial of service) by manipulating IPv6 routing entries, potentially causing system instability or crashes in network infrastructure.

Affected Products

  • Linux Kernel (IPv6 networking subsystem)
  • Systems running kernels with commit f72514b3c569 applied
  • Network infrastructure and servers with IPv6 routing enabled

Discovery Timeline

  • 2026-02-14 - CVE CVE-2026-23200 published to NVD
  • 2026-02-18 - Last updated in NVD database

Technical Details for CVE-2026-23200

Vulnerability Analysis

The vulnerability resides in the Linux kernel's IPv6 FIB (Forwarding Information Base) implementation, specifically in how the kernel manages ECMP route siblings. The root cause is a logic error in the handling of the RTF_ADDRCONF flag clearing operation.

When commit f72514b3c569 was introduced, it added functionality to clear RTF_ADDRCONF from existing routes when a static route with the same nexthop is added. However, this change did not account for routes that have a gateway configured. The rt6_qualify_for_ecmp() function requires fib_nh_gw_family to be set for ECMP eligibility, meaning routes with gateways can qualify for ECMP.

The issue manifests as follows:

  1. An existing route with a gateway has RTF_ADDRCONF set
  2. A static route with the same nexthop is added
  3. RTF_ADDRCONF is cleared from the existing route
  4. The route now qualifies for ECMP via rt6_qualify_for_ecmp()
  5. However, this route was never added to the fib6_siblings list
  6. A count mismatch occurs between fib6_next chain iteration and fib6_siblings list
  7. Adding another ECMP route triggers BUG_ON() in fib6_add_rt2node() at line 1217 of net/ipv6/ip6_fib.c

Root Cause

The root cause is improper state management in the IPv6 routing code when clearing the RTF_ADDRCONF flag. The original commit did not consider that clearing this flag on routes with gateways would make them ECMP-eligible without properly integrating them into the ECMP sibling tracking structures. This represents a logic error in the route flag management that breaks internal consistency assumptions in the FIB6 subsystem.

Attack Vector

An attacker with local access to the system and sufficient privileges to manipulate IPv6 routing tables could exploit this vulnerability. The attack involves:

  1. Creating an IPv6 route with a gateway that has RTF_ADDRCONF set (typically from Router Advertisement)
  2. Adding a static route with the same nexthop to trigger the RTF_ADDRCONF clearing logic
  3. Adding another ECMP route to trigger the sibling count mismatch
  4. The kernel hits the BUG_ON() assertion, causing a kernel panic or system crash

The vulnerability was discovered by syzbot, indicating it can be triggered through various routing manipulation sequences. The kernel crash trace shows the call path through sock_ioctl → inet6_ioctl → ipv6_route_ioctl → ip6_route_add → fib6_add → fib6_add_rt2node.

Detection Methods for CVE-2026-23200

Indicators of Compromise

  • Kernel crash logs referencing fib6_add_rt2node+0x3433/0x3470 net/ipv6/ip6_fib.c:1217
  • System instability following IPv6 route manipulation operations
  • Kernel oops messages with "invalid opcode: 0000" and references to ECMP siblings
  • Unexpected system reboots on network infrastructure handling IPv6 traffic

Detection Strategies

  • Monitor kernel logs for BUG_ON triggers in net/ipv6/ip6_fib.c
  • Implement alerting on kernel panic events related to IPv6 routing subsystem
  • Track routing table modifications for suspicious patterns of static route additions
  • Use kernel crash dump analysis to identify exploitation attempts

Monitoring Recommendations

  • Enable kernel crash dump collection for post-incident analysis
  • Monitor for unusual ioctl calls to IPv6 routing interfaces
  • Implement audit logging for routing table modifications
  • Deploy system stability monitoring on network infrastructure nodes

How to Mitigate CVE-2026-23200

Immediate Actions Required

  • Apply the latest kernel patches from upstream Linux kernel stable branches
  • Monitor systems for signs of instability related to IPv6 routing
  • Consider restricting IPv6 route manipulation privileges to essential users only
  • Review routing configurations for potential problematic state combinations

Patch Information

The vulnerability has been fixed in the Linux kernel. The fix modifies the logic to only clear RTF_ADDRCONF when the existing route does not have a gateway. Routes without a gateway cannot qualify for ECMP anyway (since rt6_qualify_for_ecmp() requires fib_nh_gw_family), so clearing RTF_ADDRCONF on them is safe and matches the original intent.

Multiple patch commits are available:

  • Kernel Git Commit 50b7c7a2
  • Kernel Git Commit b8ad2d53
  • Kernel Git Commit bbf4a17a
  • Kernel Git Commit d8143c54

Workarounds

  • Restrict access to IPv6 routing manipulation interfaces using appropriate permissions
  • Disable IPv6 on systems where it is not required as a temporary measure
  • Implement network segmentation to limit exposure of vulnerable systems
  • Monitor and alert on routing table changes to detect potential exploitation attempts
bash
# Configuration example
# Temporarily disable IPv6 if not required (not recommended for production)
# Add to /etc/sysctl.conf or /etc/sysctl.d/99-disable-ipv6.conf
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1

# Apply changes
sysctl -p

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update
  • Related CVEs
  • CVE-2026-31439: Linux Kernel XDMA Error Handling Flaw

  • CVE-2026-31441: Linux Kernel Memory Leak Vulnerability

  • CVE-2026-31434: Linux Kernel Memory Leak Vulnerability

  • CVE-2026-31435: Linux Kernel Read Abandonment 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