CVE-2026-93190
Last modified
CVE-2026-93190 is a high-severity vulnerability rated 8.4/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: platform/chrome: cros_ec_typec: Reject out-of-bounds PD cap count cros_typec_register_partner_pdos() copies the partner PDOs from the EC TYPEC_STATUS response into the fixed caps_desc.pdo[PDO_MAX_OBJECTS] array. memcpy(caps_desc.pdo, resp->source_cap_pdos, sizeof(u32) * resp->source_cap_count); ... memcpy(caps_desc.pdo, resp->sink_cap_pdos, sizeof(u32) * resp->sink_cap_count); PDO_MAX_OBJECTS is 7. source_cap_count and sink_cap_count are u8 fields from the EC.
Description
In the Linux kernel, the following vulnerability has been resolved: platform/chrome: cros_ec_typec: Reject out-of-bounds PD cap count cros_typec_register_partner_pdos() copies the partner PDOs from the EC TYPEC_STATUS response into the fixed caps_desc.pdo[PDO_MAX_OBJECTS] array. memcpy(caps_desc.pdo, resp->source_cap_pdos, sizeof(u32) * resp->source_cap_count); ... memcpy(caps_desc.pdo, resp->sink_cap_pdos, sizeof(u32) * resp->sink_cap_count); PDO_MAX_OBJECTS is 7. source_cap_count and sink_cap_count are u8 fields from the EC. The only check is that they are not both zero. If either is larger than 7, the memcpy writes past the end of the array on the stack. A count of 255 overflows it by about 1 KB. The EC source arrays are only seven entries wide. A larger count reads past them too. The ChromeOS EC firmware caps these counts today, so a compliant setup does not hit this. The kernel should still validate these values rather than trust them. Validate the counts in cros_typec_register_partner_pdos() next to the memcpy. Skip the PDO registration if either count is above PDO_MAX_OBJECTS. The rest of cros_typec_handle_status() still runs so events are handled and cleared.
Metrics
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 348a2e8c93d3ca622cf1b293cd2f597c9db74d9d, < 7617b210a2200b76d8f171819390468c7d189c80; >= 348a2e8c93d3ca622cf1b293cd2f597c9db74d9d, < 4e37371cb4e3b8ff564d7760029236a7bd614562; >= 348a2e8c93d3ca622cf1b293cd2f597c9db74d9d, < 2a7a4e45a3aa4f4ef7013eb64649f6184b76a293; >= 348a2e8c93d3ca622cf1b293cd2f597c9db74d9d, < e4728288473a5024a8bdba7d43f346719606fea0; >= 348a2e8c93d3ca622cf1b293cd2f597c9db74d9d, < 54d6b0ee9b8ba434089b11843effc111dc2e6ead; >= 348a2e8c93d3ca622cf1b293cd2f597c9db74d9d, < a0a8cd9fc9c48b95095bcec4b146f7a99486f58e |
| Linux | Linux | 6.1 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-93190?
How severe is CVE-2026-93190?
How do I fix CVE-2026-93190?
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-93185In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93186In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93187In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93188In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93189In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-9319IBM WebSphere Application Server 9.0, and 8.5 is vulnerable …9
- CVE-2026-93191In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93192In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-93193In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93194In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93195In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93196In the Linux kernel, the following vulnerability has been re…8.4
Are you affected by CVE-2026-93190?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
