CVE-2025-55086
BaseFortify
Publication date: 2025-10-20
Last updated on: 2025-10-24
Assigner: Eclipse Foundation
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| eclipse | threadx_netx_duo | to 6.4.4.202503 (exc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-125 | The product reads data past the end, or before the beginning, of the intended buffer. |
| CWE-1285 | The product receives input that is expected to specify an index, position, or offset into an indexable resource such as a buffer or file, but it does not validate or incorrectly validates that the specified index/position/offset has the required properties. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability in NetXDuo versions before 6.4.4 affects the DHCPv6 client module. It occurs because the code improperly validates the server DUID (DHCP Unique Identifier) received from a DHCPv6 server reply. Specifically, when extracting parts of the server DUID, the code fails to check the buffer length before reading the least significant word, leading to an out-of-bounds memory read. This can cause undefined behavior such as system crashes or memory corruption when processing a maliciously crafted DHCPv6 packet. [1]
How can this vulnerability impact me? :
Exploitation of this vulnerability can lead to system instability, crashes, or memory corruption on devices running vulnerable versions of NetXDuo. Since the attack can be performed remotely over the network without any privileges or user interaction, it poses a risk of denial of service or unexpected behavior in affected systems. [1]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by monitoring DHCPv6 client traffic for malformed or truncated DHCPv6 server reply packets that attempt to exploit the unchecked index when extracting the server DUID. Network packet capture tools like tcpdump or Wireshark can be used to capture DHCPv6 traffic and analyze server replies for anomalies. For example, using tcpdump: `tcpdump -i <interface> port 546 or port 547` to capture DHCPv6 client and server traffic. Additionally, checking system logs for crashes or memory corruption related to DHCPv6 client processes may indicate exploitation attempts. However, no specific detection commands or signatures are provided in the resources. [1]
What immediate steps should I take to mitigate this vulnerability?
The immediate mitigation step is to upgrade NetXDuo to version 6.4.4 or later, where the vulnerability has been patched by adding proper validation checks before reading the server DUID. Until the upgrade can be applied, consider restricting or monitoring DHCPv6 server traffic from untrusted sources to reduce exposure to crafted malicious packets exploiting this vulnerability. [1]