CVE-2026-89471
Last modified
CVE-2026-89471 is a high-severity vulnerability rated 8.4/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: power: supply: cros_usbpd-charger: bound the EC-reported port count cros_usbpd_charger_probe() reads two port counts from the EC and uses one of them, num_charger_ports, as the loop bound when populating a fixed-size array: struct port_data *ports[EC_USB_PD_MAX_PORTS]; /* 8 entries */ ... for (i = 0; i < charger->num_charger_ports; i++) charger->ports[charger->num_registered_psy++] = port; Both num_usbpd_ports (from EC_CMD_USB_PD_PORTS) and num_charger_ports (from EC_CMD_CHARGE_PORT_COUNT) are u8 values reported by the EC. The only validation is a sanity check that compares the two EC-reported values against each other: if (num_charger_ports < num_usbpd_ports || num_charger_ports > num_usbpd_ports + 1) return -EPROTO; It never checks either count against EC_USB_PD_MAX_PORTS, the size of the ports[] array. EPSS estimates a 0.14% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: power: supply: cros_usbpd-charger: bound the EC-reported port count cros_usbpd_charger_probe() reads two port counts from the EC and uses one of them, num_charger_ports, as the loop bound when populating a fixed-size array: struct port_data *ports[EC_USB_PD_MAX_PORTS]; /* 8 entries */ ... for (i = 0; i < charger->num_charger_ports; i++) charger->ports[charger->num_registered_psy++] = port; Both num_usbpd_ports (from EC_CMD_USB_PD_PORTS) and num_charger_ports (from EC_CMD_CHARGE_PORT_COUNT) are u8 values reported by the EC. The only validation is a sanity check that compares the two EC-reported values against each other: if (num_charger_ports < num_usbpd_ports || num_charger_ports > num_usbpd_ports + 1) return -EPROTO; It never checks either count against EC_USB_PD_MAX_PORTS, the size of the ports[] array. A malfunctioning, malicious or compromised EC that reports num_usbpd_ports == num_charger_ports == N for any N > 8 (for example both 255) passes this check, and the loop then writes N pointers into the 8-entry ports[] array embedded in the devm_kzalloc()'d charger_data, overflowing it by up to 255 - 8 = 247 entries (~1976 bytes): a slab out-of-bounds write. Reject a port count larger than the ports[] array can hold.
Metrics
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= f68b883e8fad23ed0ac4756d91594809d78678ed, < 0b5096f6804161b61451b1cec0e38678630be849; >= f68b883e8fad23ed0ac4756d91594809d78678ed, < c46c9f447415ca802afab51dea1eafc08ddff1c6; >= f68b883e8fad23ed0ac4756d91594809d78678ed, < a1905375dfc0b9612bbee52fc066e3a70c0d671d; >= f68b883e8fad23ed0ac4756d91594809d78678ed, < 2746d502b12b343384fb747bdef9cbcfbd7444a2; >= f68b883e8fad23ed0ac4756d91594809d78678ed, < fd29d08ee487f3bf50f2575aaa74f78a74b09b21; >= f68b883e8fad23ed0ac4756d91594809d78678ed, < 78be8b7403ff7638162438b664a07d19da76059e; >= f68b883e8fad23ed0ac4756d91594809d78678ed, < 3d1e01443b221081258ff34ea0cdd0431e4ff62e; >= f68b883e8fad23ed0ac4756d91594809d78678ed, < 48355ce49359740f52e94d3623f6fc557ce341f0 |
| Linux | Linux | 4.19 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-89471?
How severe is CVE-2026-89471?
How do I fix CVE-2026-89471?
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-89466In the Linux kernel, the following vulnerability has been re…7.7
- CVE-2026-89467In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89468In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89469In the Linux kernel, the following vulnerability has been re…8.4
- CVE-2026-8947Use-after-free in the DOM: Bindings (WebIDL) component. This…7.3
- CVE-2026-89470In the Linux kernel, the following vulnerability has been re…8.4
- CVE-2026-89472In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-89473In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89474In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89475In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89476In the Linux kernel, the following vulnerability has been re…7.5
- CVE-2026-89477In the Linux kernel, the following vulnerability has been re…7.5
Are you affected by CVE-2026-89471?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
