Description
In the Linux kernel, the following vulnerability has been resolved:

KVM: arm64: Don't leak PFN when kvm_translate_vncr() races MMU notifier

In the case that kvm_translate_vncr() races with an MMU notifier the
early return does not release a reference on the faulted in PFN. Add
the necessary call to kvm_release_faultin_page() for the unused PFN.
Published: 2026-07-25
Score: 4.7 Medium
EPSS: < 1% Very Low
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

In the KVM module, a race between kvm_translate_vncr() and an MMU notifier can cause the early return path to bypass releasing a reference to a faulted‑in page frame number (PFN). The lingering reference keeps the PFN alive, effectively leaking the physical address of guest memory to the host kernel. This defect is an unreleased resource error (CWE-772) and a race condition (CWE-362) and leads to information disclosure. The CVE description states that inserting a call to kvm_release_faultin_page() resolves the issue by ensuring the PFN reference is released.

Affected Systems

All arm64 Linux kernel versions that implement KVM and do not yet contain the commits c93681ae or 9f76b039 are affected. This includes any Linux distribution running an arm64 kernel with KVM enabled until the kernel is updated to a release that incorporates the fix.

Risk and Exploitability

The CVSS score of 4.7 indicates moderate severity. The EPSS score is < 1 % and the vulnerability is not listed in CISA KEV, suggesting a low probability of exploitation. The likely attack vector is a race condition that an attacker would need to trigger from within the host environment, potentially requiring precise timing or fault injection. While the technical feasibility exists, the combination of a low EPSS and lack of a known public exploit points to a relatively low exploitation risk for a typical deployment.

Generated by OpenCVE AI on August 13, 2026 at 17:58 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Upgrade the kernel to a version that includes the commits c93681ae and 9f76b039, which add the missing kvm_release_faultin_page call and prevent the PFN leak.
  • Reboot the system after upgrading so the new code is active and any lingering faulted‑in PFNs are purged.
  • Continuously monitor kernel logs for KVM page fault activity; investigate any repeated or unexplained faults as potential attempts to trigger the race condition.

Generated by OpenCVE AI on August 13, 2026 at 17:58 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Thu, 13 Aug 2026 15:45:00 +0000

Type Values Removed Values Added
Weaknesses CWE-362
Metrics cvssV3_1

{'score': 5.5, 'vector': 'CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H'}

cvssV3_1

{'score': 4.7, 'vector': 'CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H'}


Wed, 05 Aug 2026 01:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-200

Thu, 30 Jul 2026 00:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-772
References
Metrics threat_severity

None

cvssV3_1

{'score': 5.5, 'vector': 'CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H'}

threat_severity

Low


Sun, 26 Jul 2026 03:00:00 +0000

Type Values Removed Values Added
Weaknesses CWE-200

Sat, 25 Jul 2026 09:30:00 +0000

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: KVM: arm64: Don't leak PFN when kvm_translate_vncr() races MMU notifier In the case that kvm_translate_vncr() races with an MMU notifier the early return does not release a reference on the faulted in PFN. Add the necessary call to kvm_release_faultin_page() for the unused PFN.
Title KVM: arm64: Don't leak PFN when kvm_translate_vncr() races MMU notifier
First Time appeared Linux
Linux linux Kernel
CPEs cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
Vendors & Products Linux
Linux linux Kernel
References

Subscriptions

Linux Linux Kernel
cve-icon MITRE

Status: PUBLISHED

Assigner: Linux

Published:

Updated: 2026-07-25T08:49:25.011Z

Reserved: 2026-07-19T15:36:31.777Z

Link: CVE-2026-64282

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Analyzed

Published: 2026-07-25T10:17:08.787

Modified: 2026-08-13T15:38:57.510

Link: CVE-2026-64282

cve-icon Redhat

Severity : Low

Publid Date: 2026-07-25T00:00:00Z

Links: CVE-2026-64282 - Bugzilla

cve-icon OpenCVE Enrichment

Updated: 2026-08-13T18:00:04Z

Weaknesses
  • CWE-362

    Concurrent Execution using Shared Resource with Improper Synchronization ('Race Condition')

  • CWE-772

    Missing Release of Resource after Effective Lifetime