CVE-2026-68279
Last modified
CVE-2026-68279 is a vulnerability of currently unknown severity. In the Linux kernel, the following vulnerability has been resolved: drm/dp/mst: fix OOB reads in remote DPCD/I2C sideband reply parsers drm_dp_sideband_parse_remote_dpcd_read() reads num_bytes from the raw message and then unconditionally does: memcpy(bytes, &raw->msg[idx], num_bytes); without checking that idx + num_bytes <= raw->curlen. raw->msg[] is 256 bytes; if a malicious or misbehaving MST hub sets num_bytes larger than the remaining payload, the memcpy reads past the received data into whatever follows in raw->msg[]. drm_dp_sideband_parse_remote_i2c_read_ack() has the same flaw (noted with a /* TODO check */ comment since the code was introduced). Fix both functions by using a single combined check (idx + num_bytes > curlen) before each memcpy.
Description
In the Linux kernel, the following vulnerability has been resolved: drm/dp/mst: fix OOB reads in remote DPCD/I2C sideband reply parsers drm_dp_sideband_parse_remote_dpcd_read() reads num_bytes from the raw message and then unconditionally does: memcpy(bytes, &raw->msg[idx], num_bytes); without checking that idx + num_bytes <= raw->curlen. raw->msg[] is 256 bytes; if a malicious or misbehaving MST hub sets num_bytes larger than the remaining payload, the memcpy reads past the received data into whatever follows in raw->msg[]. drm_dp_sideband_parse_remote_i2c_read_ack() has the same flaw (noted with a /* TODO check */ comment since the code was introduced). Fix both functions by using a single combined check (idx + num_bytes > curlen) before each memcpy. Since num_bytes is u8, it is always >= 0, so this strictly subsumes the simpler idx > curlen form and no separate step is needed. [added missing fixes tag]
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= ad7f8a1f9ced7f049f9b66d588723f243a7034cd, < 22d9f7fc1aaabaf73d5f30e8b0c9aa814ecd6ed2; >= ad7f8a1f9ced7f049f9b66d588723f243a7034cd, < 04d953f50d61e542e94a5977822cc53735f8c0ce; >= ad7f8a1f9ced7f049f9b66d588723f243a7034cd, < 533d9e2bede4aeefdc2a0561d7071cfede95958f; >= ad7f8a1f9ced7f049f9b66d588723f243a7034cd, < e6ef5455b06cb4e5d181aabcd723791587c79f12; >= ad7f8a1f9ced7f049f9b66d588723f243a7034cd, < 1a8f537f5a1eeac941f262fe73078d6b08ba83c0 |
| Linux | Linux | 3.17 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-68279?
How severe is CVE-2026-68279?
How do I fix CVE-2026-68279?
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-68273In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68274In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68275In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68276In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68277In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68278In the Linux kernel, the following vulnerability has been re…
- CVE-2026-6828The Fluent Forms – Customizable Contact Forms, Survey, Quiz,…6.4
- CVE-2026-68280In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68281In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68282In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68283In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68284In the Linux kernel, the following vulnerability has been re…
Are you affected by CVE-2026-68279?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
