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

CVE-2025-62799: Fast DDS Buffer Overflow Vulnerability

CVE-2025-62799 is a heap buffer overflow in Fast DDS that allows unauthenticated attackers to crash systems or execute code via malformed RTPS packets. This article covers technical details, affected versions, and patches.

Published: February 6, 2026

CVE-2025-62799 Overview

CVE-2025-62799 is a heap buffer overflow vulnerability in eProsima Fast DDS, a C++ implementation of the Data Distribution Service (DDS) standard from the Object Management Group (OMG). The vulnerability exists in the Fast-DDS DATA_FRAG receive path, where an unauthenticated attacker can transmit a single malformed RTPS DATA_FRAG packet with crafted fragmentSize and sampleSize values that violate internal assumptions. Due to a 4-byte alignment step during fragment metadata initialization, the code writes past the end of the allocated payload buffer, resulting in immediate crash (Denial of Service) and potentially enabling memory corruption with Remote Code Execution risk.

Critical Impact

Unauthenticated remote attackers can crash Fast DDS applications or potentially achieve remote code execution by sending a single malformed network packet. Systems using DDS for real-time data distribution in robotics, autonomous vehicles, and industrial IoT are at significant risk.

Affected Products

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

Discovery Timeline

  • 2026-02-03 - CVE-2025-62799 published to NVD
  • 2026-02-04 - Last updated in NVD database

Technical Details for CVE-2025-62799

Vulnerability Analysis

This heap buffer overflow vulnerability (CWE-122) affects the RTPS (Real-Time Publish-Subscribe) protocol implementation in Fast DDS. The flaw is specifically located in the DATA_FRAG packet processing logic, which handles fragmented data transmission between DDS participants. When processing incoming DATA_FRAG packets, the code performs a 4-byte alignment operation during fragment metadata initialization. However, the validation logic fails to properly account for this alignment step when checking buffer boundaries.

An attacker can craft a malicious RTPS packet where the fragmentSize and sampleSize fields are specifically designed to pass initial validation checks but cause the alignment operation to extend beyond the allocated buffer space. This results in heap corruption when the code writes metadata past the buffer boundary.

The network-accessible nature of the vulnerability is particularly concerning because Fast DDS is designed to operate in distributed real-time systems where network accessibility is fundamental to its operation. Systems commonly using Fast DDS include ROS 2 (Robot Operating System 2) deployments, autonomous vehicle platforms, industrial automation systems, and aerospace applications.

Root Cause

The root cause is improper validation of the relationship between fragmentSize, sampleSize, and the actual allocated payload buffer size before the 4-byte alignment operation. The alignment step is applied without verifying that the resulting write offset remains within the bounds of the heap-allocated buffer. This allows crafted input values to bypass boundary checks and trigger an out-of-bounds write condition during fragment metadata initialization.

Attack Vector

The attack vector is network-based and requires no authentication. An attacker with network access to a Fast DDS participant can send a specially crafted RTPS DATA_FRAG packet to trigger the vulnerability. The attack is possible because:

  1. The attacker constructs an RTPS packet with the DATA_FRAG submessage type
  2. The fragmentSize and sampleSize fields are set to values that pass initial validation but cause buffer overflow after alignment
  3. When the victim's Fast DDS instance processes this packet, the 4-byte alignment operation causes a write past the allocated heap buffer
  4. The immediate result is a crash (DoS), with potential for controlled memory corruption leading to code execution

The vulnerability can be exploited remotely without user interaction, making it particularly dangerous for internet-exposed or insufficiently segmented DDS deployments. Technical details regarding the specific exploitation mechanics can be found in the GitHub commit references for the patches.

Detection Methods for CVE-2025-62799

Indicators of Compromise

  • Unexpected crashes or segmentation faults in Fast DDS applications, particularly during network packet processing
  • Anomalous RTPS DATA_FRAG packets with unusual fragmentSize or sampleSize values in network traffic
  • Heap corruption indicators in application crash dumps or core files
  • Increased network traffic targeting DDS participant discovery ports (typically UDP 7400-7410 range)

Detection Strategies

  • Deploy network intrusion detection rules to identify malformed RTPS DATA_FRAG packets with suspicious fragment metadata combinations
  • Monitor for process crashes in Fast DDS applications using system monitoring tools and correlate with network activity
  • Implement application-level logging to capture packet processing errors before crash conditions
  • Use memory safety tooling (AddressSanitizer, Valgrind) in development and testing environments to identify heap overflow conditions

Monitoring Recommendations

  • Enable verbose logging in Fast DDS to capture RTPS packet processing details for forensic analysis
  • Deploy network traffic analysis on DDS communication channels to detect anomalous packet patterns
  • Configure crash reporting and core dump collection for Fast DDS processes to support post-incident analysis
  • Establish baseline network behavior for DDS traffic to identify deviations indicative of exploitation attempts

How to Mitigate CVE-2025-62799

Immediate Actions Required

  • Update eProsima Fast DDS to patched versions: 3.4.1, 3.3.1, or 2.6.11 depending on your release branch
  • Implement network segmentation to restrict access to DDS participant communication ports from untrusted networks
  • Deploy network firewalls or access control lists to limit which hosts can send RTPS traffic to vulnerable systems
  • Monitor Fast DDS deployments for crashes or abnormal behavior while preparing for updates

Patch Information

eProsima has released patches for all supported release branches. The fixes address the heap buffer overflow by implementing proper boundary validation that accounts for the 4-byte alignment operation before performing writes to the payload buffer.

Patched versions:

  • Branch 3.4.x: Update to 3.4.1 or later
  • Branch 3.3.x: Update to 3.3.1 or later
  • Branch 2.6.x: Update to 2.6.11 or later

The patches can be obtained from the official eProsima Fast DDS repository. Specific commits implementing the fix include:

  • Commit 0c3824e
  • Commit 955c8a1
  • Commit d6dd58f

Workarounds

  • Isolate Fast DDS deployments behind network firewalls that restrict RTPS traffic to trusted participants only
  • Implement network-level filtering to drop malformed or suspicious RTPS packets before they reach vulnerable applications
  • Use DDS security features (if available in your deployment) to require authentication before accepting data from other participants
  • Consider deploying intrusion prevention systems capable of deep packet inspection of RTPS protocol traffic
bash
# Example: Restrict DDS discovery and data ports using iptables
# Allow only trusted network (192.168.1.0/24) to access DDS ports
iptables -A INPUT -p udp --dport 7400:7410 -s 192.168.1.0/24 -j ACCEPT
iptables -A INPUT -p udp --dport 7400:7410 -j DROP

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechFast Dds

  • SeverityHIGH

  • CVSS Score7.2

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:H/VI:H/VA:H/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
  • AvailabilityHigh
  • CWE References
  • CWE-122
  • Technical References
  • GitHub Commit Update

  • GitHub Commit Change

  • GitHub Commit Modification

  • Debian CVE Tracker Entry
  • Related CVEs
  • CVE-2025-62601: Fast DDS Buffer Overflow Vulnerability

  • CVE-2025-62599: Fast DDS DoS Vulnerability

  • CVE-2025-62603: Fast DDS DoS Vulnerability

  • CVE-2025-62600: Fast DDS 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