AUGUST 23, 2026
Live Feed
Back to database
Case File

CVE-2026-68081

UNKNOWN · CVSS N/A EPSS 0.15%

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

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's KVM (Kernel-based Virtual Machine) functionality, specifically in handling nested virtual machine operations. If a nested VM-Enter fails due to an invalid guest state, the system may improperly manage vmcs12 pages, leading to potential memory leaks of pinned pages or mappings. Organizations utilizing KVM for virtualization should prioritize addressing this issue to mitigate risks associated with memory management and potential data exposure.

CVE
CVE-2026-68081
Severity
UNKNOWN
CVSS
N/A
EPSS
0.15%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: KVM: nVMX: Put vmcs12 pages if nested VM-Enter fails due to invalid guest state Put all vmcs12 pages if KVM synthesizes a nested VM-Exit due to invalid guest while emulating VMLAUNCH or VMRESUME. The invalid guest state path doesn't use nested_vmx_vmexit() as that API is intended to be used if and only if L2 is active, and the open coded equivalent neglects to put the vmcs12 pages. Failure to put the vmcs12 pages leaks any pinned pages (and/or mappings) if L1 retries VMLAUNCH/VMRESUME. Note, the !from_vmenter scenario doesn't suffer the same problem, as vmx_get_nested_state_pages() only gets/pins/maps the vmcs12 pages if L2 is active, i.e. if a "full" VM-Exit is guaranteed before KVM will retry getting vmcs12 pages.