Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-2026-23352

CVE-2026-23352: Linux Kernel Privilege Escalation Flaw

CVE-2026-23352 is a privilege escalation vulnerability in the Linux kernel affecting EFI boot services memory management. This flaw causes memory leaks during deferred page initialization. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: March 27, 2026

CVE-2026-23352 Overview

A memory management vulnerability has been identified in the Linux kernel's x86 EFI (Extensible Firmware Interface) subsystem. The vulnerability exists in the efi_free_boot_services() function, which improperly frees memory occupied by EFI_BOOT_SERVICES_CODE and EFI_BOOT_SERVICES_DATA regions using memblock_free_late(). This leads to significant memory leaks, particularly on systems with CONFIG_DEFERRED_STRUCT_PAGE_INIT=y enabled.

Critical Impact

This vulnerability causes memory leaks of approximately 140MB on systems with limited RAM (e.g., EC2 t3a.nano instances with 512MB), significantly impacting system performance and stability on memory-constrained environments.

Affected Products

  • Linux kernel (x86 architecture with EFI boot support)
  • Systems with CONFIG_DEFERRED_STRUCT_PAGE_INIT=y configuration
  • Cloud instances and embedded systems with limited RAM

Discovery Timeline

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

Technical Details for CVE-2026-23352

Vulnerability Analysis

The vulnerability stems from improper memory deallocation practices in the Linux kernel's EFI boot services handling. The efi_free_boot_services() function uses memblock_free_late() to free boot services memory, but this approach has two fundamental problems.

First, memblock_free_late() is designed for memory allocated with memblock_alloc(), while the EFI boot services memory is reserved using memblock_reserve() and should be freed with free_reserved_area() instead.

Second, and more critically, when deferred struct page initialization is enabled (CONFIG_DEFERRED_STRUCT_PAGE_INIT=y), the efi_free_boot_services() function is called before the deferred memory map initialization completes. This timing issue means that when memblock_free_late() calls memblock_free_pages(), any pages residing in still-uninitialized memory map regions are silently skipped rather than properly freed.

Benjamin Herrenschmidt reported this issue after observing approximately 140MB of RAM being leaked on Amazon EC2 t3a.nano instances, which is particularly significant given these instances only have 512MB of total RAM.

Root Cause

The root cause is twofold: incorrect API usage for freeing reserved memory regions and a race condition between EFI boot services memory cleanup and deferred memory map initialization. The memblock_free_late() function skips uninitialized pages, and using free_reserved_area() at this early stage would also be problematic because __free_page() accesses the buddy of the freed page, which might also reside in uninitialized memory map regions.

Attack Vector

This is a kernel-level memory management bug rather than a remotely exploitable security vulnerability. The impact is primarily availability-related, causing significant memory waste on affected systems. The vulnerability is triggered automatically during the boot process on systems with EFI boot and deferred struct page initialization enabled.

While not directly exploitable for code execution, the memory leak could be leveraged as part of a resource exhaustion attack chain, particularly on memory-constrained cloud instances or embedded systems where the ~140MB leak represents a significant portion of available system memory.

Detection Methods for CVE-2026-23352

Indicators of Compromise

  • Unexplained memory usage reduction of approximately 140MB on EFI-booted Linux systems
  • Discrepancy between expected and available RAM reported by system tools
  • Boot-time memory allocation warnings in kernel logs related to EFI regions

Detection Strategies

  • Monitor available memory at boot time and compare against expected values based on hardware specifications
  • Check kernel configuration for CONFIG_DEFERRED_STRUCT_PAGE_INIT=y on affected systems
  • Review dmesg output for EFI memory map entries and compare against actual freed memory

Monitoring Recommendations

  • Implement baseline monitoring for available RAM on cloud instances, particularly memory-constrained configurations
  • Configure alerts for significant deviations from expected memory availability post-boot
  • Track EFI memory regions through /sys/firmware/efi/ entries and correlate with system memory reports

How to Mitigate CVE-2026-23352

Immediate Actions Required

  • Apply the kernel patches that split efi_free_boot_services() into efi_unmap_boot_services() and a deferred efi_free_boot_services()
  • On memory-constrained systems, consider disabling CONFIG_DEFERRED_STRUCT_PAGE_INIT as a temporary workaround until patching is possible
  • Prioritize patching on cloud instances and systems with 1GB or less of RAM where the leak has proportionally greater impact

Patch Information

The fix involves splitting the efi_free_boot_services() function into two parts. The new efi_unmap_boot_services() function collects the memory ranges that should be freed into an array, while efi_free_boot_services() is deferred to run after deferred struct page initialization completes. This ensures proper memory deallocation without synchronization issues.

Multiple kernel commits address this vulnerability:

  • Kernel Commit 22768831
  • Kernel Commit 399da820
  • Kernel Commit 4a2cb90c
  • Kernel Commit 6a25e252
  • Kernel Commit 7dcf5942
  • Kernel Commit a4b0bf6a
  • Kernel Commit f9e9cc32

Workarounds

  • Disable deferred struct page initialization by rebuilding the kernel without CONFIG_DEFERRED_STRUCT_PAGE_INIT
  • For cloud deployments, consider using instance types with additional RAM headroom until patches can be applied
  • On systems where patching is delayed, monitor for memory exhaustion conditions and implement automated restarts if memory falls below critical thresholds
bash
# Check if your kernel has deferred struct page init enabled
zcat /proc/config.gz | grep CONFIG_DEFERRED_STRUCT_PAGE_INIT

# Verify current EFI memory map status
dmesg | grep -i "efi:" | head -20

# Monitor available memory for potential leak impact
free -m && cat /proc/meminfo | grep -E "(MemTotal|MemFree|MemAvailable)"

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 22768831

  • Kernel Commit 399da820

  • Kernel Commit 4a2cb90c

  • Kernel Commit 6a25e252

  • Kernel Commit 7dcf5942

  • Kernel Commit a4b0bf6a

  • Kernel Commit f9e9cc32
  • Related CVEs
  • CVE-2026-31430: Linux Kernel Privilege Escalation Flaw

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

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

  • CVE-2026-31459: 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