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
    • 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-2025-62600

CVE-2025-62600: Fast DDS DoS Vulnerability

CVE-2025-62600 is a denial of service vulnerability in Fast DDS that causes remote termination through an Out-Of-Memory condition. This article covers the technical details, affected versions, and mitigation strategies.

Published: February 6, 2026

CVE-2025-62600 Overview

CVE-2025-62600 is an integer overflow vulnerability in Fast DDS, eProsima's C++ implementation of the Data Distribution Service (DDS) standard from the Object Management Group (OMG). When security mode is enabled, an attacker can exploit this flaw by modifying the DATA Submessage within an SPDP (Simple Participant Discovery Protocol) packet, causing an Out-Of-Memory (OOM) condition that results in remote termination of the Fast-DDS service.

The vulnerability specifically targets the PID_IDENTITY_TOKEN or PID_PERMISSION_TOKEN fields in the DATA Submessage. By tampering with the length field in readBinaryPropertySeq, an attacker can trigger an integer overflow that leads to memory exhaustion during the resize operation.

Critical Impact

Remote attackers can cause denial of service by crashing Fast DDS instances when security mode is enabled through malformed SPDP packets.

Affected Products

  • Fast DDS versions prior to 3.4.1
  • Fast DDS versions prior to 3.3.1
  • Fast DDS versions prior to 2.6.11

Discovery Timeline

  • February 3, 2026 - CVE-2025-62600 published to NVD
  • February 4, 2026 - Last updated in NVD database

Technical Details for CVE-2025-62600

Vulnerability Analysis

This vulnerability exists in the message parsing logic of Fast DDS's CDRMessage handling. When processing parameter lists from incoming SPDP packets, the code performs arithmetic operations on length fields without adequate bounds checking. The flaw manifests in the readBinaryPropertySeq function when processing identity and permission tokens.

The vulnerable code path involves reading a 16-bit length value (plength) and using it to calculate buffer positions. The original implementation performed alignment calculations using 32-bit arithmetic, which could wrap around when presented with carefully crafted length values. This integer overflow then propagates to memory allocation routines, causing the application to attempt massive memory allocations that exhaust available resources.

The vulnerability is classified as CWE-125 (Out-of-bounds Read), though the primary impact is denial of service through memory exhaustion rather than data disclosure.

Root Cause

The root cause is insufficient validation of length fields in the CDRMessage parsing routines. The vulnerable code calculated aligned lengths using the expression msg.pos += (plength + 3) & ~3; without first verifying that the resulting position would remain within bounds. This allowed attackers to supply malformed length values that cause integer overflow when combined with the current message position.

Additionally, the validation operators in parameter list parsing used bitwise AND (&=) for boolean validation, which does not short-circuit on failure, potentially allowing continued processing of malformed data.

Attack Vector

An attacker exploiting this vulnerability must be able to send specially crafted SPDP packets to a Fast DDS participant with security mode enabled. The attack involves:

  1. Intercepting or crafting an SPDP discovery packet
  2. Modifying the PID_IDENTITY_TOKEN or PID_PERMISSION_TOKEN parameters
  3. Setting the length field to a value that will cause integer overflow when aligned
  4. Sending the malformed packet to the target Fast DDS instance

The vulnerability is network-accessible but requires specific preconditions (security mode enabled) for exploitation.

cpp
// Vulnerable code pattern in ParameterList.cpp (before fix)
// The length calculation could overflow with malicious plength values
while (msg.pos < msg.length)
{
    valid = true;
    valid &= rtps::CDRMessage::readUInt16(&msg, &pid);
    valid &= rtps::CDRMessage::readUInt16(&msg, &plength);
    // ...
    msg.pos += (plength + 3) & ~3;  // Vulnerable: no bounds check
}

Source: GitHub Commit Fix

Detection Methods for CVE-2025-62600

Indicators of Compromise

  • Unexpected Fast DDS process termination or crashes
  • Memory exhaustion alerts from systems running Fast DDS applications
  • Large or unusual SPDP packets on DDS discovery multicast addresses (typically 239.255.0.1)
  • Abnormal memory allocation patterns in Fast DDS processes before crash

Detection Strategies

  • Monitor Fast DDS process memory usage for sudden spikes or allocation failures
  • Implement network traffic analysis for malformed SPDP packets with unusually large length fields in token parameters
  • Configure system-level OOM killer logging to track Fast DDS process terminations
  • Deploy application-level health checks that detect and alert on unexpected service restarts

Monitoring Recommendations

  • Enable memory resource limits (cgroups/ulimits) for Fast DDS processes to contain potential OOM impact
  • Implement watchdog monitoring for critical Fast DDS services with automatic restart capabilities
  • Set up network intrusion detection rules to flag SPDP packets with anomalous parameter lengths
  • Log and alert on DDS participant discovery failures that may indicate exploitation attempts

How to Mitigate CVE-2025-62600

Immediate Actions Required

  • Upgrade Fast DDS to version 3.4.1, 3.3.1, or 2.6.11 (depending on your major version branch)
  • If immediate patching is not possible, consider temporarily disabling security mode if the risk profile allows
  • Implement network segmentation to limit exposure of DDS discovery traffic to trusted networks only
  • Apply memory limits to Fast DDS processes to prevent system-wide impact from OOM conditions

Patch Information

eProsima has released patched versions that address this vulnerability:

BranchFixed Version
3.4.x3.4.1
3.3.x3.3.1
2.6.x2.6.11

The fix introduces proper bounds checking in the CDRMessage parsing logic and adds a new wrap_from_other_message helper function that safely handles message wrapping with length validation. The patched code uses 64-bit arithmetic for length calculations and explicitly validates that the new position does not exceed message boundaries.

For detailed technical changes, see the GitHub Commit Fix.

Workarounds

  • Restrict network access to DDS discovery ports using firewall rules to allow only trusted participants
  • Deploy Fast DDS instances behind network segments that filter external SPDP traffic
  • Configure process-level memory limits using cgroups or container resource constraints to prevent system-wide OOM
  • Consider using DDS over secure tunnels (VPN/TLS) to limit exposure to untrusted network traffic
cpp
// Fixed code pattern in ParameterList.cpp (after patch)
// Uses 64-bit arithmetic and explicit bounds checking
while (msg.pos < msg.length)
{
    valid = true;
    valid = valid && rtps::CDRMessage::readUInt16(&msg, &pid);
    valid = valid && rtps::CDRMessage::readUInt16(&msg, &plength);
    // ...
    uint64_t aligned_length = (static_cast<uint64_t>(plength) + 3u) & ~3u;
    uint64_t new_pos = static_cast<uint64_t>(msg.pos) + aligned_length;
    if (new_pos > static_cast<uint64_t>(msg.length))
    {
        new_pos = msg.length;
    }
    msg.pos = static_cast<uint32_t>(new_pos);
}

Source: GitHub Commit Fix

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechFast Dds

  • SeverityLOW

  • CVSS Score1.7

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:L/SC:N/SI:N/SA:N/E:U/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
  • AvailabilityLow
  • CWE References
  • CWE-125
  • Technical References
  • GitHub Commit Change

  • GitHub Commit Fix

  • GitHub Commit Update

  • Debian CVE Tracker Entry
  • Related CVEs
  • CVE-2025-62599: Fast DDS DoS Vulnerability

  • CVE-2025-62603: Fast DDS DoS Vulnerability

  • CVE-2025-64098: Fast DDS DoS Vulnerability

  • CVE-2025-64438: Fast DDS Out-of-Memory 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