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
    • 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-2026-23332

CVE-2026-23332: Linux Kernel Privilege Escalation Flaw

CVE-2026-23332 is a privilege escalation vulnerability in the Linux kernel's intel_pstate driver that causes system crashes when disabling turbo on limited CPU configurations. This article covers technical details, impact, and fixes.

Published: March 27, 2026

CVE-2026-23332 Overview

A null pointer dereference vulnerability has been identified in the Linux kernel's intel_pstate cpufreq driver. The vulnerability occurs when attempting to disable turbo mode on systems booted with restricted CPU configurations using kernel command line arguments such as nosmt or maxcpus. When a user writes to /sys/devices/system/cpu/intel_pstate/no_turbo, the system crashes due to improper handling of offline CPU data structures.

Critical Impact

Local denial of service condition allowing authenticated users to crash the kernel through sysfs interface manipulation on systems with restricted CPU topologies.

Affected Products

  • Linux Kernel (intel_pstate cpufreq driver)
  • Systems using Intel P-State CPU frequency scaling
  • Systems booted with nosmt or maxcpus kernel parameters

Discovery Timeline

  • 2026-03-25 - CVE CVE-2026-23332 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-23332

Vulnerability Analysis

The vulnerability resides in the store_no_turbo() function within the Intel P-State cpufreq driver. When iterating over possible CPUs using for_each_possible_cpu(), the code fails to account for CPUs that are not online. For offline CPUs, the all_cpu_data[] array contains NULL pointers. The issue was introduced in commit 973207ae3d7c ("cpufreq: intel_pstate: Rearrange max frequency updates handling code"), which modified the code path to dereference all_cpu_data[] for all possible CPUs rather than only online CPUs.

The crash manifests as a page fault with supervisor read access in kernel mode, indicating an attempt to access a not-present page due to the NULL pointer dereference.

Root Cause

The root cause is a missing validation check for CPU online status before dereferencing the all_cpu_data[] array. The for_each_possible_cpu() iterator returns all CPUs that could theoretically exist on the system, including those that are currently offline or were never brought online due to boot-time restrictions like nosmt or maxcpus parameters. The code assumes all returned CPUs have valid data structures allocated, which is not the case for offline CPUs.

Attack Vector

The vulnerability requires local access to the system with sufficient privileges to write to the sysfs interface at /sys/devices/system/cpu/intel_pstate/no_turbo. The attack scenario involves:

  1. System is booted with CPU-limiting kernel parameters (nosmt or maxcpus)
  2. Attacker or privileged user executes: echo 1 > /sys/devices/system/cpu/intel_pstate/no_turbo
  3. The kernel iterates over all possible CPUs including offline ones
  4. Accessing all_cpu_data[] for an offline CPU returns NULL
  5. Dereferencing the NULL pointer causes a kernel panic

The fix modifies intel_pstate_update_max_freq() to accept a CPU number parameter and validates that all_cpu_data[] contains a valid cpufreq policy before dereferencing.

Detection Methods for CVE-2026-23332

Indicators of Compromise

  • Unexpected kernel panics or system crashes with RIP pointing to store_no_turbo function
  • Oops messages in kernel logs containing "not-present page" errors with PGD 0 P4D 0
  • System crash logs showing supervisor read access in kernel mode page faults
  • Crash dumps with call traces involving intel_pstate driver functions

Detection Strategies

  • Monitor system logs for kernel oops messages referencing store_no_turbo or intel_pstate functions
  • Implement auditd rules to track write operations to /sys/devices/system/cpu/intel_pstate/no_turbo
  • Deploy kernel crash dump analysis to identify null pointer dereference patterns in cpufreq subsystem
  • Check if systems are booted with nosmt or maxcpus parameters which expose the vulnerability

Monitoring Recommendations

  • Configure kdump/kexec for kernel crash collection to capture forensic data
  • Set up automated alerting for kernel panic events on affected systems
  • Monitor sysfs write operations to intel_pstate control files via audit subsystem
  • Review system boot parameters to identify vulnerable configurations

How to Mitigate CVE-2026-23332

Immediate Actions Required

  • Apply the kernel patches from the upstream Linux kernel commits
  • Restrict access to /sys/devices/system/cpu/intel_pstate/no_turbo using file permissions
  • Consider temporarily disabling write access to intel_pstate sysfs controls on affected systems
  • Evaluate boot parameter requirements and consider removing nosmt or maxcpus if not strictly necessary

Patch Information

Patches have been released to the Linux kernel stable tree. The fix modifies the intel_pstate_update_max_freq() function to properly validate CPU data before dereferencing. The following commits address this vulnerability:

  • Kernel Commit Update
  • Kernel Commit Fix
  • Kernel Commit Enhancement

System administrators should update to the latest stable kernel version that includes these patches.

Workarounds

  • Restrict write permissions on /sys/devices/system/cpu/intel_pstate/no_turbo to prevent unauthorized access
  • If turbo disable functionality is not required, leave the default setting unchanged
  • Consider using alternative CPU frequency governors that do not exhibit this vulnerability
  • Remove nosmt or maxcpus boot parameters if the restricted CPU configuration is not essential
bash
# Restrict access to the vulnerable sysfs file
chmod 400 /sys/devices/system/cpu/intel_pstate/no_turbo

# Alternatively, use a udev rule to set permissions persistently
echo 'KERNEL=="intel_pstate", ATTR{no_turbo}="", MODE="0400"' > /etc/udev/rules.d/99-intel-pstate.rules

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Commit Update

  • Kernel Commit Fix

  • Kernel Commit Enhancement
  • Related CVEs
  • CVE-2026-31411: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-23438: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-23439: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-23437: Linux Kernel Privilege Escalation Flaw
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now 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