CVE-2026-93067
Last modified
CVE-2026-93067 is a vulnerability of currently unknown severity. In the Linux kernel, the following vulnerability has been resolved: drm/bridge: tc358767: clamp the reported AUX read size to the request tc_aux_transfer() clamps an AUX read to the payload limit: size_t size = min_t(size_t, DP_AUX_MAX_PAYLOAD_BYTES - 1, msg->size); After the transfer it replaces size with the byte count the controller reports in AUX_BYTES: if (size) size = FIELD_GET(AUX_BYTES, auxstatus); AUX_BYTES is GENMASK(15, 8), so it can be up to 255. Nothing clamps it back to the request.
Description
In the Linux kernel, the following vulnerability has been resolved: drm/bridge: tc358767: clamp the reported AUX read size to the request tc_aux_transfer() clamps an AUX read to the payload limit: size_t size = min_t(size_t, DP_AUX_MAX_PAYLOAD_BYTES - 1, msg->size); After the transfer it replaces size with the byte count the controller reports in AUX_BYTES: if (size) size = FIELD_GET(AUX_BYTES, auxstatus); AUX_BYTES is GENMASK(15, 8), so it can be up to 255. Nothing clamps it back to the request. tc_aux_read_data() reads that many bytes into the 16-byte auxrdata stack buffer, then copies them into the caller buffer. A reported count of 255 makes the read run to 256 bytes and overruns both. The controller should never report more than it was asked to transfer, so this is defense in depth rather than a live hole. The reported count is only lightly trusted, and the check is cheap. Clamp it back to the request, the same way ti-sn65dsi86 does in commit aca58eac52b8 ("drm/bridge: ti-sn65dsi86: Never store more than msg->size bytes in AUX xfer").
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 12dfe7c4d9c53442efcb4113cff505f60d654906, < ebf00c51c9ac9188e2806a2b842418805ee879be; >= 12dfe7c4d9c53442efcb4113cff505f60d654906, < 424b762cc26d512e3e7421e57e41b4b55be2400b; >= 12dfe7c4d9c53442efcb4113cff505f60d654906, < dd6274706bec30d005bff0587a4262d01dc2775a; >= 12dfe7c4d9c53442efcb4113cff505f60d654906, < 982caa744fce79d18f2920382aaeb0da821a6e73; >= 12dfe7c4d9c53442efcb4113cff505f60d654906, < 33c0b072e31dee98a754d9bd01800359dfeb9e8f; >= 12dfe7c4d9c53442efcb4113cff505f60d654906, < 57c567e0e8aa76f6e3e8f39d7f40c20bc37e76af; >= 12dfe7c4d9c53442efcb4113cff505f60d654906, < 9ff718df547372d70ca20ad8e66a3fb1300936b2; >= 12dfe7c4d9c53442efcb4113cff505f60d654906, < ec6444a00c49e6c2b5e9a507272a28126677f9ee |
| Linux | Linux | 5.4 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-93067?
How severe is CVE-2026-93067?
How do I fix CVE-2026-93067?
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-93061In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93062In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93063In the Linux kernel, the following vulnerability has been re…8.4
- CVE-2026-93064In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93065In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93066In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93068In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93069In the Linux kernel, the following vulnerability has been re…
- CVE-2026-9307A sensitive information disclosure security issue exists wit…6.3
- CVE-2026-93070In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-93071In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93072In the Linux kernel, the following vulnerability has been re…
Are you affected by CVE-2026-93067?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
