PatchSiren cyber security CVE debrief
CVE-2026-13481 zephyrproject CVE debrief
The IEEE 1588 PTP management-message parser in subsys/net/lib/ptp/tlv.c mishandles the PTP_MGMT_TIME management id. In tlv_mgmt_post_recv(), the PTP_MGMT_TIME case casts mgmt_tlv->data to a 10-byte struct ptp_timestamp and reads it (then byte-swaps and writes it back) without first checking that the TLV data field is at least sizeof(struct ptp_timestamp).
- Vendor
- zephyrproject
- Product
- zephyr
- CVSS
- MEDIUM 5.4
- CISA KEV
- Not listed in stored evidence
- Original CVE published
- 2026-08-26
- Original CVE updated
- 2026-08-31
- Advisory published
- 2026-08-26
- Advisory updated
- 2026-08-31
Who should care
Users of Zephyr project systems with PTP enabled should be aware of this vulnerability and take necessary precautions. This includes reviewing and updating affected systems, monitoring for potential exploitation attempts, and applying the patch from the Zephyr project. The impact of this vulnerability is limited to minor information exposure and corruption of the device's parsed management TIME value, but it is still essential for users to address this issue to prevent potential exploitation. Additionally, users should confirm whether affected product deployments exist in managed environments and assign an owner for follow-up. They should also review compensating controls for exposed systems while remediation is scheduled and verified. Checking relevant monitoring, detection, and logs for exposed assets that need extra review is also crucial. Tracking exceptions, retesting remediated assets, and closing the item only after evidence is documented are important steps in the remediation process. Users should also consider the operational impact of this vulnerability on their systems and prioritize patching accordingly. This may involve coordinating with vendors, assessing the vulnerability's impact on specific use cases, and implementing mitigations if patches are not immediately available. Effective communication and planning are key to minimizing disruptions and ensuring a smooth remediation process. By taking these steps, users can help protect their systems from potential exploitation and maintain the security and integrity of their Zephyr project deployments. It is also recommended that users review the supplied official advisory or CVE record to validate affected scope, severity, and vendor guidance. This will help ensure that they have a clear understanding of the vulnerability and the necessary steps to take to address it. Overall, users of Zephyr project systems with PTP enabled should take a proactive and comprehensive approach to addressing this vulnerability and minimizing its potential impact. This includes staying informed about the vulnerability, assessing its impact on their systems, and taking prompt action to apply patches or mitigations as needed
Technical summary
The vulnerability exists in the IEEE 1588 PTP management-message parser in subsys/net/lib/ptp/tlv.c. The PTP_MGMT_TIME management id is mishandled, allowing for out-of-bounds read and write operations. This occurs because the PTP_MGMT_TIME case casts mgmt_tlv->data to a 10-byte struct ptp_timestamp and reads it (then byte-swaps and writes it back) without first checking that the TLV data field is at least sizeof(struct ptp_timestamp). The length passed in is the management data size (tlv->length - 2), and the upstream guard in ptp_tlv_post_recv() only requires tlv->length > 2, while msg_tlv_post_recv() validates only that the TLV fits within the received byte count, not a per-id minimum. A peer on the local PTP segment can therefore send a PTP_MSG_MANAGEMENT message carrying a short PTP_MGMT_TIME TLV (data as small as 2 bytes), causing the parser to read and write 8 bytes beyond the validated data.
Defensive priority
Medium priority for patching due to limited impact and specific conditions for exploitation.
Recommended defensive actions
- Apply the patch from the Zephyr project
- Review and update affected systems
- Monitor for potential exploitation attempts
- Confirm whether affected product deployments exist in managed environments and assign an owner for follow-up
- Review compensating controls for exposed systems while remediation is scheduled and verified
- Check relevant monitoring, detection, and logs for exposed assets that need extra review
- Track exceptions, retest remediated assets, and close the item only after evidence is documented
Evidence notes
The vulnerability allows for minor information exposure and corruption of the device's parsed management TIME value. Impact is limited due to the out-of-bounds read and write staying within the struct ptp_msg allocation.
Sources and references
Verified primary and authoritative sources
-
CVE-2026-13481 CVE Program record
Publisher, destination, and source semantics verified
URL: https://www.cve.org/CVERecord?id=CVE-2026-13481
CVE Program - Official CVE Program record with source-provided CVE metadata.
-
CVE-2026-13481 NVD vulnerability detail
Publisher, destination, and source semantics verified
URL: https://nvd.nist.gov/vuln/detail/CVE-2026-13481
NIST National Vulnerability Database - Official NIST NVD detail page and source-specific vulnerability assessment.
Supplemental references
-
Source reference
Unverified legacy reference
URL: https://github.com/zephyrproject-rtos/zephyr/commit/de98c3721a0e21ca269313997736f4f6193909ef
[email protected] - Patch
-
Source reference
Unverified legacy reference
URL: https://github.com/zephyrproject-rtos/zephyr/security/advisories/GHSA-mh5r-jxh8-hxwx
[email protected] - Exploit, Patch, Vendor Advisory
Methodology and review provenance
AI-assisted synthesis based on stored public vulnerability evidence. System validation, approval state, and publication status do not by themselves establish human review of this revision. PatchSiren helps prioritize defensive review and does not prove exposure or remediation on any system.