Skip to content

jakbadwolf/CVEs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 

Repository files navigation

CVE Disclosures


CVE-2025-63547: Denial of Service via Zero-length MTU Allocation

  • Vulnerability Type: Unsafe Packet Validation (Denial of Service)
  • Affected Product: Eprosima Micro-XRCE-DDS-Agent v.3.0.1
  • Affected Component: Client creation inside the agent (Session object allocation)
  • Attack Type: Remote

Description

An issue in Eprosima Micro-XRCE-DDS Agent v.3.0.1 allows a remote attacker to cause a denial of service via a crafted packet modifying the MTU length field.

When a new XRCE client connects to the agent, it sends a CREATE_CLIENT message with a specific MTU length as one of the parameters. The agent uses this MTU length to determine the maximum size of the buffer allocated for future responses. If a malicious or malfunctioning client sets the MTU length to 0, the agent attempts to allocate a buffer of size 0, which results in a crash.

Attack Vector

The Agent must receive a specially crafted CREATE_CLIENT packet bearing a size of 0 in the MTU length field, followed by a subsequent message (such as a HEARTBEAT), triggering the invalid allocation.

References & Mitigation

  • Reported Issue: eProsima/Micro-XRCE-DDS-Agent#390
  • Status: Acknowledged and patched by the vendor. The fix involved patching the creation of a client representation and adding an error log in the agent CLI if a CREATE_CLIENT message contains an MTU of 0.

CVE-2025-63548: Denial of Service via Improper Boolean Deserialization

  • Vulnerability Type: Improper Object Deserialization (Denial of Service)
  • Affected Product: Eprosima Micro-XRCE-DDS-Agent v.3.0.1
  • Affected Component: Packet receiver (InputMessage::deserialize())
  • Attack Type: Remote

Description

An issue in Eprosima Micro-XRCE-DDS Agent v.3.0.1 allows a remote attacker to cause a denial of service via a packet specially crafted to bear a non-valid value in any Boolean field.

The Micro-XRCE-DDS Agent relies on the FastCdr library to serialize and deserialize incoming data payloads. During the deserialization of a boolean field, if the value is strictly different from 0 or 1, the FastCdr library throws a BadParamException. Because this exception was previously uncaught by the caller, the agent crashes immediately upon processing the packet.

Attack Vector

The Agent must receive a packet specially crafted to bear a non-valid value (e.g., 0xFF) in any boolean field (such as m_properties_flag in a CREATE_CLIENT message).

References & Mitigation

  • Reported Issue: eProsima/Micro-XRCE-DDS-Agent#389
  • Status: Acknowledged and patched by the vendor. The issue was resolved by catching the BadParamException everywhere a boolean is included in a submessage, preventing the crash.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors