Debian LinuxOperating system · Debian

CVE-2025-62600

HIGH · 7.5 CVSS v3.1 Published 2026-02-03
Fix available
A fix is available. Upgrade to 2.6.11 / 3.3.1 or later.
See remediation →
84/100
Remediation priority · High
Remotely reachable No privileges Zero-click

Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.

NVD · unedited
eprosima Fast DDS is a C++ implementation of the DDS (Data Distribution Service) standard of the OMG (Object Management Group). Prior to 2.6.11, 2.14.6, 3.2.4, 3.3.1, and 3.4.1, when the security mode is enabled, modifying the DATA Submessage within an SPDP packet sent by a publisher causes an Out-Of-Memory (OOM) condition, resulting in remote termination of Fast-DDS. If the fields of PID_IDENTITY_TOKEN or PID_PERMISSION_TOKEN in the DATA Submessage — specifically by tampering with the length field in readBinaryPropertySeq— are modified, an integer overflow occurs, leading to an OOM during the resize operation. This vulnerability is fixed in 2.6.11, 2.14.6, 3.2.4, 3.3.1, and 3.4.1.

Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.

dbcve analysis · high confidence

In eprosima Fast DDS versions prior to 2.6.11, 2.14.6, 3.2.4, 3.3.1, and 3.4.1, an integer overflow vulnerability exists in the readBinaryPropertySeq function when parsing PID_IDENTITY_TOKEN or PID_PERMISSION_TOKEN fields within DATA Submessages of SPDP discovery packets. An attacker can tamper with the length field to trigger an integer overflow, causing excessive memory allocation that leads to Out-of-Memory condition and remote denial of service.

MitigationUpgrade Fast DDS to version 2.6.11, 2.14.6, 3.2.4, 3.3.1, or 3.4.1 or later. If immediate upgrade is not feasible, implement input validation on the length fields in DATA Submessage processing to reject malformed packets before resize operations.

Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.

Affected products & versions What the vendor confirmedThe version ranges the vendor confirmed as vulnerable. If your version sits inside a range here, treat yourself as exposed until you have upgraded.

NVD · CPE data
Debian LinuxOperating system
Affected:= 11.0= 12.0= 13.0
Fast DdsApplication
Affected:< 2.6.11>= 3.0.0, < 3.3.1= 3.4.0

CVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.

From the vector
Attack vector
Network
Complexity
Low
Privileges
None
User interaction
None
Scope
Unchanged
Confidentiality
None
Integrity
None
Availability
High

CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H

Am I affected? How to checkSteps we derive from the advisory and the affected-version data, so you can decide whether this CVE reaches your setup. They are a guide, not a scan — your own configuration is the authority.

dbcve checks

Work through these to decide whether this CVE applies to you.

  1. Check if Fast DDS is installed
    Look for Fast DDS libraries or binaries on the system. Common package names include libfastrtps, fast-dds, or eprosima-fast-dds. On Debian systems, check with dpkg -l | grep -i fast or list installed libraries in /usr/lib/
    Affected if Fast DDS libraries or executables are found on the system
  2. Determine the installed Fast DDS version
    Run fastdds --version or check the library version. For Debian packages, use dpkg -l | grep -i eprosima-fast-dds. If source-built, check the version.h or CMakeLists.txt in the installation directory
    Affected if The version is lower than 2.6.11, 2.14.6, 3.2.4, 3.3.1, or 3.4.1, or falls in the range >= 3.0.0, < 3.3.1, or equals 3.4.0
  3. Verify SPDP discovery is enabled
    Check the Fast DDS XML configuration file (usually named *.xml in the application directory or /etc/fastdds/) for <discovery> settings. Look for <spdp> tags or the ParticipantDiscoveryProtocol set to SPDP
    Affected if SPDP discovery protocol is enabled in the Fast DDS configuration
  4. Confirm DATA Submessage processing is active
    Verify the application initializes DomainParticipants that participate in discovery. This is typically the default behavior for any Fast DDS participant. Check application logs or configuration for DomainParticipant creation
    Affected if Fast DDS DomainParticipants are running and participating in standard discovery

A system is affected if it runs a vulnerable Fast DDS version with SPDP discovery enabled, which is the default configuration for most Fast DDS deployments.

Generated from the published advisory. Verify against your own configuration.

Check your environment

Paste your version and any relevant configuration and it will be compared against the affected criteria above. Do not include secrets or credentials.

AI-assisted, checked against the advisory. Informational, not a guarantee.

Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.

dbcve · scoped
Upgrade available Upgrade to 2.6.11 / 3.3.1 or later
Fixed in 2.6.113.3.1
Interim mitigation

Upgrade Fast DDS to version 2.6.11, 2.14.6, 3.2.4, 3.3.1, or 3.4.1 or later. If immediate upgrade is not feasible, implement input validation on the length fields in DATA Submessage processing to reject malformed packets before resize operations.

Recommended fix High confidence

Upgrade to Fast DDS 2.6.11/2.14.6 (for 2.x users) or 3.3.1/3.4.1 (for 3.x users)

  1. 1. Identify the currently installed Fast DDS version by checking your project's dependencies or library files
  2. 2. Determine which major version branch you are using (2.x or 3.x) from your dependency configuration
  3. 3. For Fast DDS 2.x users: Upgrade to version 2.6.11 or later (or 2.14.6 if using the 2.14 branch)
  4. 4. For Fast DDS 3.x users: Upgrade to version 3.3.1 or later (or 3.4.1 if using the 3.4 branch)
  5. 5. Update your package manager or build system to pull the patched version (e.g., conan install fastdds>=2.6.11 or conan install fastdds>=3.3.1)
  6. 6. Rebuild and recompile your application with the updated Fast DDS library
  7. 7. Verify the upgrade by checking that the integer overflow vulnerability in readBinaryPropertySeq is no longer present
  8. 8. Test your application thoroughly, especially security-related functionality using SPDP packets with DATA Submessages
Caveat Review release notes for potential API changes between versions; major version upgrades (2.x to 3.x) may require code adjustments

Generated from the published advisory — verify against the referenced sources before acting.

Fix this in Debian Linux Scoped from the published advisory
  • Consultation4.0 h
  • Implementation8.0 h
  • Testing6.0 h
  • Review / QA2.0 h
20.0 hours of engineering $3,500
Get the upgrade done

An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $5,600.

Scan for this in your stack

Free · runs locally
dbcve dependency scanner

Check whether your project pulls in CVE-2025-62600 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.

References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.

Primary sources

Practitioner notes

Contributed

Peer-ranked notes from engineers who’ve handled CVE-2025-62600 in production — separate from our analysis above.

No notes yet

Be the first to add a field note for this CVE — a mitigation you’ve verified, a version caveat, or a link to a working fix. Sign in above to contribute.

What this is

A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.

What belongs here
  • Verified mitigations, workarounds, and config changes
  • Version or environment caveats, and links to real fixes
  • No weaponised exploit code, or anything meant to cause harm
  • No spam, self-promotion, credentials, or personal data