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-2026-23044

CVE-2026-23044: Linux Kernel Privilege Escalation Flaw

CVE-2026-23044 is a privilege escalation vulnerability in the Linux kernel's hibernate functionality that causes crashes when freeing invalid crypto compressors. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: February 6, 2026

CVE-2026-23044 Overview

A vulnerability has been discovered in the Linux kernel's power management hibernate functionality that causes a kernel crash when freeing an invalid crypto compressor. When crypto_alloc_acomp() fails, it returns an ERR_PTR value rather than NULL. The cleanup code in save_compressed_image() and load_compressed_image() unconditionally calls crypto_free_acomp() without checking for ERR_PTR, causing crypto_acomp_tfm() to dereference an invalid pointer and crash the kernel.

Critical Impact

This vulnerability can be triggered when the compression algorithm is unavailable (e.g., when CONFIG_CRYPTO_LZO is not enabled), leading to kernel crashes and system denial of service during hibernate operations.

Affected Products

  • Linux kernel (versions with affected hibernate crypto compression code)

Discovery Timeline

  • February 4, 2026 - CVE CVE-2026-23044 published to NVD
  • February 4, 2026 - Last updated in NVD database

Technical Details for CVE-2026-23044

Vulnerability Analysis

This vulnerability is classified as a Null Pointer Dereference in the Linux kernel's power management subsystem. The root issue lies in improper error handling within the hibernate image compression code path. The kernel's crypto API function crypto_alloc_acomp() follows a standard Linux kernel error handling convention where failures return ERR_PTR values (encoded error codes cast to pointers) rather than NULL. However, the cleanup routines in the hibernate code path fail to account for this convention.

When the compression algorithm is unavailable—such as when CONFIG_CRYPTO_LZO is not compiled into the kernel—the allocation function fails and returns an error pointer. Subsequently, when the cleanup code executes crypto_free_acomp(), the function crypto_acomp_tfm() attempts to dereference this invalid pointer, resulting in a kernel panic.

Root Cause

The root cause is a failure to validate error pointer values before calling cleanup functions in the hibernate crypto compression code. The functions save_compressed_image() and load_compressed_image() unconditionally invoke crypto_free_acomp() on the acomp handle without first checking if the handle contains an ERR_PTR value. This violates the standard Linux kernel error handling pattern where IS_ERR_OR_NULL() should be used to check pointers that may contain error values before dereferencing or freeing them.

Attack Vector

The vulnerability can be triggered locally when:

  1. A system attempts to hibernate (suspend to disk)
  2. The configured compression algorithm is unavailable (not compiled or module not loaded)
  3. The crypto_alloc_acomp() function fails and returns an ERR_PTR
  4. The cleanup code path executes and attempts to free the invalid pointer

This results in a kernel crash, causing denial of service. The attack requires local access and the ability to trigger hibernate operations, or could be triggered inadvertently through normal system operation on misconfigured systems.

The fix adds IS_ERR_OR_NULL() checks before calling crypto_free_acomp() and acomp_request_free(), following the same pattern already used for the kthread_stop() check in the same code path.

Detection Methods for CVE-2026-23044

Indicators of Compromise

  • Kernel panic or crash logs referencing crypto_acomp_tfm() or crypto_free_acomp()
  • System crashes occurring during hibernate or suspend-to-disk operations
  • Kernel oops messages in /var/log/kern.log or dmesg output related to PM hibernate functions
  • Unexpected system reboots when attempting to hibernate

Detection Strategies

  • Monitor kernel logs for panic messages mentioning save_compressed_image() or load_compressed_image() functions
  • Check for kernel configuration mismatches where hibernate compression is enabled but the underlying crypto algorithm is not available
  • Implement monitoring for CONFIG_CRYPTO_LZO or other compression algorithm availability when hibernate features are enabled
  • Use kernel crash dump analysis tools to identify NULL pointer dereference patterns in the hibernate code path

Monitoring Recommendations

  • Configure kernel crash dump (kdump) collection to capture debugging information when crashes occur
  • Set up automated alerts for kernel panic events related to power management subsystems
  • Review system configuration to ensure required crypto modules are loaded before hibernate operations
  • Monitor for failed hibernate attempts in system logs

How to Mitigate CVE-2026-23044

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the IS_ERR_OR_NULL() checks
  • Ensure the required compression algorithm module (e.g., CONFIG_CRYPTO_LZO) is compiled and loaded before using hibernate
  • Consider disabling hibernate functionality on affected systems until patches are applied
  • Review kernel configuration to ensure compression algorithm dependencies are satisfied

Patch Information

The vulnerability has been addressed in the Linux kernel stable branches. The fix adds IS_ERR_OR_NULL() checks before calling crypto_free_acomp() and acomp_request_free() in the hibernate image handling code.

Patch commits are available at:

  • Kernel Git Commit 7966cf0ebe32
  • Kernel Git Commit b7a883b0135d

Workarounds

  • Ensure the required crypto compression module is loaded before hibernate operations by adding it to /etc/modules or module autoload configuration
  • Disable hibernate functionality if the compression algorithm cannot be made available: systemctl mask hibernate.target
  • Verify kernel configuration includes CONFIG_CRYPTO_LZO=y or CONFIG_CRYPTO_LZO=m (with module loaded) when using LZO compression for hibernate
  • Consider using alternative power management methods (suspend-to-RAM) until the kernel can be updated
bash
# Verify LZO crypto module is available and loaded
lsmod | grep lzo
# Load the module if available
modprobe lzo_compress
# Disable hibernate if workaround needed
systemctl mask hibernate.target

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 Git Commit Update

  • Kernel Git Commit Update
  • Related CVEs
  • CVE-2026-31413: Linux Kernel BPF Privilege Escalation

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

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

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