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

CVE-2026-26011: ROS 2 Navigation2 AMCL DoS Vulnerability

CVE-2026-26011 is a heap out-of-bounds write denial of service vulnerability in ROS 2 Navigation2 AMCL that allows attackers to crash localization. This post covers technical details, affected versions, and mitigation.

Published: February 13, 2026

CVE-2026-26011 Overview

CVE-2026-26011 is a critical heap out-of-bounds write vulnerability affecting the Nav2 AMCL (Adaptive Monte Carlo Localization) particle filter clustering logic within the navigation2 framework, a ROS 2 Navigation Framework and System. This vulnerability allows an unauthenticated attacker on the same ROS 2 DDS domain to trigger a negative index write into heap memory by publishing a crafted geometry_msgs/PoseWithCovarianceStamped message with extreme covariance values to the /initialpose topic.

Critical Impact

This vulnerability enables controlled heap corruption that can lead to further exploitation or provides a reliable single-packet denial of service that kills localization and halts all robot navigation operations.

Affected Products

  • navigation2 version 1.3.11 and earlier
  • ROS 2 systems using Nav2 AMCL for robot localization
  • Autonomous mobile robots relying on the Nav2 navigation stack

Discovery Timeline

  • February 12, 2026 - CVE-2026-26011 published to NVD
  • February 12, 2026 - Last updated in NVD database

Technical Details for CVE-2026-26011

Vulnerability Analysis

The vulnerability resides in the particle filter clustering logic within Nav2 AMCL. When processing pose initialization messages, the system fails to properly validate covariance matrix values before using them in cluster index calculations. By providing extreme covariance values in a geometry_msgs/PoseWithCovarianceStamped message, an attacker can cause the cluster index calculation to produce a negative value, resulting in an out-of-bounds memory write at set->clusters[-1].

This is classified as CWE-122 (Heap-based Buffer Overflow). The critical issue is compounded by the fact that in Release builds, the only boundary check—an assert statement—is compiled out, leaving zero runtime protection against this attack.

Root Cause

The root cause is improper validation of covariance matrix values in incoming pose messages before they are used in array index calculations. The clustering algorithm does not validate that the computed cluster index is within valid bounds, and relies solely on assert statements for boundary checking. Since assert macros are typically disabled in production Release builds through the NDEBUG preprocessor definition, the vulnerability has no runtime protection in deployed systems.

Attack Vector

An attacker with network access to the ROS 2 DDS domain can exploit this vulnerability without authentication. The attack requires sending a single crafted geometry_msgs/PoseWithCovarianceStamped message to the /initialpose topic containing extreme covariance values. This triggers the negative index write (set->clusters[-1]) into heap memory preceding the allocated buffer.

The attacker can control at minimum the size of the heap chunk where set->clusters resides, enabling controlled corruption of heap chunk metadata. This primitive can be leveraged for:

  1. Denial of Service: Immediately crashes the AMCL node, halting localization and all dependent navigation operations
  2. Further Exploitation: Heap metadata corruption may enable arbitrary code execution through heap exploitation techniques

The security patch introduces input validation in nav2_ros_common/include/nav2_ros_common/validate_messages.hpp:

text
 #ifndef  NAV2_ROS_COMMON__VALIDATE_MESSAGES_HPP_
 #define  NAV2_ROS_COMMON__VALIDATE_MESSAGES_HPP_
 
+#include <array>
 #include <cmath>
 #include <iostream>

Source: GitHub Commit Update

Detection Methods for CVE-2026-26011

Indicators of Compromise

  • Unexpected crashes of the Nav2 AMCL node or localization failures
  • Abnormal messages published to /initialpose topic with extreme or malformed covariance values
  • Segmentation faults or heap corruption errors in ROS 2 navigation logs
  • Sudden loss of robot localization capability following network activity

Detection Strategies

  • Monitor ROS 2 DDS traffic for geometry_msgs/PoseWithCovarianceStamped messages with anomalous covariance matrix values
  • Implement logging for all incoming /initialpose topic messages and flag values outside expected operational ranges
  • Deploy process monitoring to detect unexpected AMCL node terminations or restarts
  • Use SentinelOne Singularity Platform to detect heap corruption and anomalous process behavior

Monitoring Recommendations

  • Enable verbose logging on Nav2 AMCL nodes to capture all pose initialization attempts
  • Implement network segmentation to restrict access to ROS 2 DDS domains from untrusted sources
  • Set up automated alerts for AMCL node crashes or unexpected navigation stack failures
  • Monitor system logs for segmentation faults and memory corruption signatures in navigation processes

How to Mitigate CVE-2026-26011

Immediate Actions Required

  • Update navigation2 to a patched version that includes the security fix from commit d09ea82477ce9234678a6febf6890235e0a7ce12
  • Restrict network access to the ROS 2 DDS domain to trusted hosts only
  • Implement DDS security plugins with authentication and encryption if not already enabled
  • Monitor for exploitation attempts while preparing to deploy patches

Patch Information

The vulnerability has been addressed by the navigation2 maintainers. The security patch adds proper input validation for covariance values in message handling. Users should update to the latest version of navigation2 that includes this fix.

For detailed patch information, see:

  • GitHub Security Advisory GHSA-mgj5-g2p6-gc5x
  • GitHub Commit with Fix

Workarounds

  • Implement network-level access controls to restrict which hosts can publish to the /initialpose topic
  • Enable ROS 2 DDS Security with authentication to prevent unauthenticated attackers from publishing messages
  • Deploy a message filtering node that validates covariance values before forwarding to AMCL
  • Consider running navigation nodes in isolated network segments with strict firewall rules
bash
# Example: Enable ROS 2 DDS Security configuration
export ROS_SECURITY_ENABLE=true
export ROS_SECURITY_STRATEGY=Enforce
export ROS_SECURITY_KEYSTORE=/path/to/keystore

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechNavigation2

  • SeverityCRITICAL

  • CVSS Score9.3

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-122
  • Technical References
  • GitHub Commit Update

  • GitHub Release Version 1.3.11

  • GitHub Security Advisory GHSA-mgj5-g2p6-gc5x
  • Latest CVEs
  • CVE-2025-49454: TinySalt Path Traversal Vulnerability

  • CVE-2025-48261: MultiVendorX Information Disclosure Flaw

  • CVE-2025-32119: CardGate WooCommerce SQL Injection Flaw

  • CVE-2025-26879: s2Member Plugin Reflected XSS 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