Answer in brief
CVE-2026-68184 records a Unknown severity vulnerability in cdrom: fix stack out-of-bounds read in CDROMVOLCTRL. The current sources do not mark it as known exploited. The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
Analysis pending evidence review
HOL Guard separates source facts from reviewed analysis. See the methodology.
A CVSS score is not reported in the current record. The current sources do not mark it as known exploited. Treat this as a source-backed prioritization signal, not a statement about your environment.
Analysis status
Analysis pending evidence review
Factual feed record only; HOL analysis is not approved for indexing. Read the methodology.
The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 <7344c84e32413e5c8832f74b8a612b0194e5c051 || >=1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 <35b68e24c5a69fa4545f46f05f6c849223034cb6 || >=1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 <d43c5c0c935522deae7339e0c2399365f3bf0016 || >=1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 <f3e2715a150066f09aa82c30fa983fb184ad6dd5 || >=1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 <b27e195d4db8dea263050bdbeb11881b2999c9c6 | 7344c84e32413e5c8832f74b8a612b0194e5c051, 35b68e24c5a69fa4545f46f05f6c849223034cb6, d43c5c0c935522deae7339e0c2399365f3bf0016, f3e2715a150066f09aa82c30fa983fb184ad6dd5, b27e195d4db8dea263050bdbeb11881b2999c9c6 |
| Linux/Linuxgeneric | 2.6.12 | Not reported |
Published upstream
Aug 10, 2026
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 10, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Aug 10, 2026
In the Linux kernel, the following vulnerability has been resolved: cdrom: fix stack out-of-bounds read in CDROMVOLCTRL mmc_ioctl_cdrom_volume() first reads the audio control mode page into a 32-byte stack buffer with cgc->buflen set to 24. If the device reports a block descriptor, the function increases cgc->buflen to include that descriptor and reads the page again. For CDROMVOLCTRL, the function then builds a MODE SELECT parameter list by moving cgc->buffer forward by offset - 8 bytes. This drops the block descriptor from the outgoing payload and leaves a new 8-byte mode parameter header in front of the audio control page. However, cgc->buflen is left unchanged. With a standard 8-byte block descriptor, cgc->buffer points at buffer + 8 but cgc->buflen remains 32. cdrom_mode_select() therefore asks the low level packet path to write 32 bytes from that adjusted pointer, reading 8 bytes past the end of the 32-byte stack buffer. This is not hit by CDROMVOLREAD, and CDROMVOLCTRL only triggers it on drives that return a non-zero block descriptor length, which helps explain why it has gone unnoticed. The overread is also sent to the device as extra MODE SELECT payload, so it may not produce an obvious local failure. Reduce cgc->buflen by the same amount as the buffer pointer adjustment so the MODE SELECT transfer covers only the intended parameter list.
Quoted source text, attributed separately from HOL analysis.
Answer in brief
CVE-2026-68184 records a Unknown severity vulnerability in cdrom: fix stack out-of-bounds read in CDROMVOLCTRL. The current sources do not mark it as known exploited. The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
Analysis pending evidence review
HOL Guard separates source facts from reviewed analysis. See the methodology.
A CVSS score is not reported in the current record. The current sources do not mark it as known exploited. Treat this as a source-backed prioritization signal, not a statement about your environment.
Analysis status
Analysis pending evidence review
Factual feed record only; HOL analysis is not approved for indexing. Read the methodology.
The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 <7344c84e32413e5c8832f74b8a612b0194e5c051 || >=1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 <35b68e24c5a69fa4545f46f05f6c849223034cb6 || >=1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 <d43c5c0c935522deae7339e0c2399365f3bf0016 || >=1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 <f3e2715a150066f09aa82c30fa983fb184ad6dd5 || >=1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 <b27e195d4db8dea263050bdbeb11881b2999c9c6 | 7344c84e32413e5c8832f74b8a612b0194e5c051, 35b68e24c5a69fa4545f46f05f6c849223034cb6, d43c5c0c935522deae7339e0c2399365f3bf0016, f3e2715a150066f09aa82c30fa983fb184ad6dd5, b27e195d4db8dea263050bdbeb11881b2999c9c6 |
| Linux/Linuxgeneric | 2.6.12 | Not reported |
Published upstream
Aug 10, 2026
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 10, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Aug 10, 2026
In the Linux kernel, the following vulnerability has been resolved: cdrom: fix stack out-of-bounds read in CDROMVOLCTRL mmc_ioctl_cdrom_volume() first reads the audio control mode page into a 32-byte stack buffer with cgc->buflen set to 24. If the device reports a block descriptor, the function increases cgc->buflen to include that descriptor and reads the page again. For CDROMVOLCTRL, the function then builds a MODE SELECT parameter list by moving cgc->buffer forward by offset - 8 bytes. This drops the block descriptor from the outgoing payload and leaves a new 8-byte mode parameter header in front of the audio control page. However, cgc->buflen is left unchanged. With a standard 8-byte block descriptor, cgc->buffer points at buffer + 8 but cgc->buflen remains 32. cdrom_mode_select() therefore asks the low level packet path to write 32 bytes from that adjusted pointer, reading 8 bytes past the end of the 32-byte stack buffer. This is not hit by CDROMVOLREAD, and CDROMVOLCTRL only triggers it on drives that return a non-zero block descriptor length, which helps explain why it has gone unnoticed. The overread is also sent to the device as extra MODE SELECT payload, so it may not produce an obvious local failure. Reduce cgc->buflen by the same amount as the buffer pointer adjustment so the MODE SELECT transfer covers only the intended parameter list.
Quoted source text, attributed separately from HOL analysis.