CVE-2026-89725
Last modified
CVE-2026-89725 is a high-severity vulnerability rated 8.8/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: media: cec: stm32: prevent out-of-bounds write on RX overflow stm32_rx_done() appends each received CEC byte to rx_msg.msg[] using rx_msg.len as the write index, incrementing it on every RXBR (receive-byte-ready) interrupt without checking it against the buffer size: cec->rx_msg.msg[cec->rx_msg.len++] = val & 0xFF; rx_msg.msg[] is a fixed CEC_MAX_MSG_SIZE (16) byte array in struct cec_msg, and rx_msg.len is only reset on RXACKE/RXOVR or after a completed message (RXEND). The number of bytes received before RXEND is decided by the remote CEC device (it sets EOM), not by the driver. EPSS estimates a 0.24% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: media: cec: stm32: prevent out-of-bounds write on RX overflow stm32_rx_done() appends each received CEC byte to rx_msg.msg[] using rx_msg.len as the write index, incrementing it on every RXBR (receive-byte-ready) interrupt without checking it against the buffer size: cec->rx_msg.msg[cec->rx_msg.len++] = val & 0xFF; rx_msg.msg[] is a fixed CEC_MAX_MSG_SIZE (16) byte array in struct cec_msg, and rx_msg.len is only reset on RXACKE/RXOVR or after a completed message (RXEND). The number of bytes received before RXEND is decided by the remote CEC device (it sets EOM), not by the driver. A peer that keeps sending bytes without ending the message drives RXBR repeatedly, pushing rx_msg.len past 16 and writing peer-controlled bytes out of bounds into the surrounding memory. This is reachable in normal operation once the driver has probed and receiving is enabled, from the IRQ thread, without any local privilege. The length check in the CEC core runs on the consumer side, after the byte has been stored, so it does not prevent the overflow. Bound the index in the driver before the store, as the other platform CEC drivers already do (e.g. tegra_cec), dropping the excess bytes of an overlong frame. Found by static analysis tool CodeQL.
Metrics
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= d69ae57453c80a2193bcdb3fd762efbec447eecf, < f2499b720ea9b874d58770885c6c2e8445a8c3ef; >= d69ae57453c80a2193bcdb3fd762efbec447eecf, < 3df1a4026662121011187247897fe95fd84e8a3a; >= d69ae57453c80a2193bcdb3fd762efbec447eecf, < 37ac45f7d6e3a6a5dcf6452a0b7bad9a543e8344; >= d69ae57453c80a2193bcdb3fd762efbec447eecf, < 1b4fdefd788db990d1805feb5c7b2388de791ecd; >= d69ae57453c80a2193bcdb3fd762efbec447eecf, < c3edd7fb8e3692423a702705509947fc9c30b3d1; >= d69ae57453c80a2193bcdb3fd762efbec447eecf, < 0c260d3f97e52978a8c769bb095ac0901333a3ac; >= d69ae57453c80a2193bcdb3fd762efbec447eecf, < a85ce3b175615c2e13bc01e8a1b6b6b6910fde57; >= d69ae57453c80a2193bcdb3fd762efbec447eecf, < fb9dda38d4b9e90db07ed9a0ee2d35bf85494035 |
| Linux | Linux | 4.13 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-89725?
How severe is CVE-2026-89725?
How do I fix CVE-2026-89725?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-8972Privilege escalation in the WebRTC: Audio/Video component. T…8.8
- CVE-2026-89720In the Linux kernel, the following vulnerability has been re…7.7
- CVE-2026-89721In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89722In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89723In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-89724In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-89726In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89727In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89728In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89729In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-8973Memory safety bugs present in Firefox 150. Some of these bug…8.8
- CVE-2026-89730In the Linux kernel, the following vulnerability has been re…
Are you affected by CVE-2026-89725?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
