AUGUST 16, 2026
Live Feed
Back to database
Case File

CVE-2026-68229

HIGH · CVSS 7.1 EPSS 0.16%

Source: NVD + CISA KEV + EPSS · Published 2026-08-10 · Last synced 2026-08-16

CyberRota Analysis

AI-Generated

The vulnerability in the Linux kernel's Cedrus driver affects the handling of H.264 reference list entries, which could lead to out-of-bounds reads when processing malformed or unsupported data. This issue primarily impacts systems utilizing the Cedrus driver for video decoding, potentially compromising system stability and security. Organizations using affected Linux distributions with video processing capabilities should prioritize patching to mitigate risks associated with this vulnerability.

CVE
CVE-2026-68229
Severity
HIGH
CVSS
7.1
EPSS
0.16%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: media: cedrus: skip invalid H.264 reference list entries Cedrus consumes H.264 ref_pic_list0/ref_pic_list1 entries from the stateless slice control and later uses their indices to look up decode->dpb[] in _cedrus_write_ref_list(). Rejecting such controls in cedrus_try_ctrl() would break existing userspace, since stateless H.264 reference lists may legitimately carry out-of-range indices for missing references. Instead, guard the actual DPB lookup in Cedrus and skip entries whose indices do not fit the fixed V4L2_H264_NUM_DPB_ENTRIES array. This keeps the fix local to the driver use site and avoids out-of-bounds reads from malformed or unsupported reference list entries.