The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2025-65264

CVE-2025-65264: CPUID CPU-Z Information Disclosure Flaw

CVE-2025-65264 is an information disclosure vulnerability in CPUID CPU-Z that allows attackers to access sensitive system information. This article covers technical details, affected versions, impact, and mitigation.

Updated: May 15, 2026

CVE-2025-65264 Overview

CVE-2025-65264 is an information disclosure vulnerability in the kernel driver shipped with CPUID CPU-Z version 2.17 and earlier on Windows. The driver fails to validate user-supplied values passed through its IOCTL (Input/Output Control) interface. A local attacker with low privileges can craft IOCTL requests to read sensitive kernel memory contents. The flaw is tracked under CWE-20: Improper Input Validation.

Critical Impact

A local, low-privileged attacker can disclose sensitive kernel-mode information through crafted IOCTL requests to the CPU-Z driver, enabling reconnaissance for follow-on privilege escalation.

Affected Products

  • CPUID CPU-Z for Windows, version 2.17
  • CPUID CPU-Z for Windows, all earlier 2.x versions
  • The bundled cpuz kernel driver component

Discovery Timeline

  • 2026-01-27 - CVE-2025-65264 published to NVD
  • 2026-02-06 - Last updated in NVD database

Technical Details for CVE-2025-65264

Vulnerability Analysis

The CPU-Z kernel driver exposes an IOCTL interface that user-mode processes can call to query hardware information. The driver accepts parameters from user space without validating their content or bounds. An attacker opens a handle to the driver device object and issues a crafted DeviceIoControl request. The driver then reads memory addresses dictated by attacker-supplied input and returns the contents to the caller.

Because the driver runs in kernel context, the returned data can include kernel pointers, structure contents, and other privileged information. This breaks the user/kernel trust boundary that Windows enforces. The flaw is limited to confidentiality, with no direct write primitive disclosed in the advisory.

Root Cause

The root cause is improper input validation [CWE-20] in the driver's IOCTL dispatch routine. Parameters that should be checked against expected ranges, alignment, and permitted address spaces are passed directly to internal read routines. The driver does not verify that user-supplied addresses or indices fall within a safe range before dereferencing them.

Attack Vector

Exploitation requires local access and an authenticated session on the target Windows host. The attacker must hold permissions sufficient to open the driver's device interface, which is typically accessible to standard users once CPU-Z has been run. No user interaction is required beyond running the attacker's binary. Remote exploitation is not possible because the IOCTL surface is not network-exposed.

A proof-of-concept demonstrating the issue is published in the CVE-2025-65264 PoC repository. Refer to the CPUID CPU-Z product page for vendor information.

Detection Methods for CVE-2025-65264

Indicators of Compromise

  • Presence of the vulnerable cpuz kernel driver file on disk with a version corresponding to CPU-Z 2.17 or earlier.
  • Unexpected processes opening handles to the CPU-Z device object outside of the legitimate cpuz.exe user interface.
  • DeviceIoControl calls to the CPU-Z driver originating from non-standard locations such as user temp directories.

Detection Strategies

  • Inventory installed drivers across the fleet and flag hosts running CPU-Z 2.17 or older.
  • Hunt for non-CPU-Z processes issuing IOCTLs to the CPU-Z device, which suggests driver abuse.
  • Correlate driver load events (Windows Event ID 7045 and Sysmon Event ID 6) with process telemetry to identify unauthorized loading of the CPU-Z driver as a Bring-Your-Own-Vulnerable-Driver (BYOVD) primitive.

Monitoring Recommendations

  • Enable kernel driver load auditing and forward events to a central SIEM for analysis.
  • Monitor for handle creation against \\.\cpuz* device paths from unsigned or unexpected binaries.
  • Track installation of CPU-Z outside of approved software deployment channels and on systems where hardware diagnostics are not required.

How to Mitigate CVE-2025-65264

Immediate Actions Required

  • Identify all endpoints running CPU-Z 2.17 or earlier and prioritize them for remediation.
  • Remove CPU-Z from systems where hardware diagnostics are not an operational requirement.
  • Restrict standard-user execution of CPU-Z through application control policies until a fixed version is deployed.

Patch Information

At the time of publication, the NVD entry for CVE-2025-65264 does not list a vendor advisory or fixed release. Administrators should monitor the CPUID CPU-Z download page for a version higher than 2.17 that addresses the IOCTL validation flaw. Apply the updated build to all affected hosts once available and verify the on-disk driver version after installation.

Workarounds

  • Uninstall CPU-Z on systems that do not require it and remove the residual cpuz driver from %SystemRoot%\System32\drivers\.
  • Block load of the vulnerable driver using Microsoft's recommended driver blocklist or Windows Defender Application Control (WDAC) policies.
  • Limit local logon rights and enforce least privilege so that untrusted users cannot execute arbitrary binaries that load the driver.

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechCpuid Cpu Z

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-20
  • Technical References
  • GitHub PoC Repository

  • CPUID Software Overview
  • Latest CVEs
  • CVE-2026-46333: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-2586: Eclipse Glassfish RCE Vulnerability

  • CVE-2026-2587: Eclipse Glassfish RCE Vulnerability

  • CVE-2026-45255: FreeBSD bsdinstall/bsdconfig RCE Flaw
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English