AUGUST 15, 2026
Live Feed
Back to database
Case File

CVE-2026-74306

UNKNOWN · CVSS N/A

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

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's vfio/qat component, where a race condition in the `qat_vf_resume_write()` function allows two concurrent writers to bypass bounds checks, potentially leading to a buffer overflow. This could result in memory corruption or unintended data exposure, posing a risk to system stability and security. Organizations using Linux systems with the vfio/qat functionality should prioritize addressing this issue to mitigate potential exploitation risks.

CVE
CVE-2026-74306
Severity
UNKNOWN
CVSS
N/A
EPSS
N/A
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: vfio/qat: fix f_pos race in qat_vf_resume_write() qat_vf_resume_write() checks filp->f_pos before taking migf->lock, but copies into the migration-state buffer after taking the lock and re-reading the shared file position. Two concurrent writers could therefore pass the bounds check with the old offset, then have the second writer copy after the first advanced f_pos, writing past the end of the migration-state buffer. Take migf->lock before doing the boundary checks.