CVE-2026-53245
Received Received - Intake
Memory Corruption in Linux Kernel MRP Parser

Publication date: 2026-06-25

Last updated on: 2026-06-25

Assigner: kernel.org

Description
In the Linux kernel, the following vulnerability has been resolved: net/802/mrp: fix vector attribute parsing in mrp_pdu_parse_vecattr In mrp_pdu_parse_vecattr(), vector attribute events are encoded three per byte and valen tracks the number of events left to process. The parser decrements valen after processing the first and second events from each event byte, but not after processing the third one. When valen is exactly a multiple of three, the loop continues after the last valid event and consumes the next byte as a new event byte, applying a spurious event to the MRP applicant state. Additionally, when valen is zero the parser unconditionally consumes attrlen bytes as FirstValue and advances the offset, even though per IEEE 802.1ak a VectorAttribute with only a LeaveAllEvent has valen of zero and no FirstValue or Vector fields. This corrupts the offset for subsequent PDU parsing. Also, when valen exceeds three the loop crosses byte boundaries but the attribute value is not incremented between the last event of one byte and the first event of the next. This causes the first event of the next byte to use the same attribute value as the third event rather than the next consecutive value. Decrement valen after processing the third event, skip FirstValue consumption when valen is zero, and increment the attribute value at the end of each loop iteration.
CVSS Scores
EPSS Scores
Probability:
Percentile:
Meta Information
Published
2026-06-25
Last Modified
2026-06-25
Generated
2026-06-25
AI Q&A
2026-06-25
EPSS Evaluated
N/A
NVD
EUVD
Affected Vendors & Products
Currently, no data is known.
Helpful Resources
Exploitability
CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-UNKNOWN
Attack-Flow Graph
AI Quick Actions
Instant insights powered by AI
Executive Summary

This vulnerability exists in the Linux kernel's handling of vector attribute parsing within the mrp_pdu_parse_vecattr() function. The function processes events encoded three per byte, tracked by a counter called valen. Due to incorrect decrementing of valen and improper handling of certain conditions, the parser can consume extra bytes as events incorrectly, apply spurious events to the MRP applicant state, and corrupt the parsing offset for subsequent data. Specifically, valen is not decremented after the third event, causing the loop to continue improperly; the parser consumes FirstValue bytes even when valen is zero, which is against the IEEE 802.1ak standard; and the attribute value is not incremented correctly between bytes, causing event values to be reused incorrectly.

Impact Analysis

This vulnerability can lead to incorrect parsing of MRP (Multiple Registration Protocol) data units in the Linux kernel, which may cause the MRP applicant state to be corrupted by spurious events. This could result in unexpected behavior in network protocols relying on MRP, potentially causing network instability or incorrect network state management.

Chat Assistant
Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-53245. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70
EPSS Chart