A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-2024-26800

CVE-2024-26800: Linux Kernel Use-After-Free Vulnerability

CVE-2024-26800 is a use-after-free vulnerability in the Linux Kernel TLS implementation that occurs during failed backlog decryption. This article covers the technical details, affected versions, and mitigation steps.

Updated: May 15, 2026

CVE-2024-26800 Overview

CVE-2024-26800 is a use-after-free vulnerability [CWE-416] in the Linux kernel's Transport Layer Security (TLS) subsystem. The flaw resides in the tls_decrypt_sg error path when handling failed backlog decryption requests. When crypto_aead_decrypt returns -EBUSY, the kernel waits for async decryption to complete. If decryption fails with -EBADMSG, the error path attempts to release pages that the async callback tls_decrypt_done has already freed.

The vulnerability affects Linux kernel versions including the 6.8 release candidates (rc1 through rc6) and earlier stable branches. A local attacker can leverage this flaw to corrupt kernel memory and potentially escalate privileges.

Critical Impact

Local attackers can trigger memory corruption in the kernel TLS subsystem, leading to potential privilege escalation, denial of service, or arbitrary code execution in kernel context.

Affected Products

  • Linux Kernel 6.8-rc1 through 6.8-rc6
  • Linux Kernel stable branches prior to commits 13114dc5, 1ac9fb84, 81be8535, and f2b85a4c
  • Systems with kernel TLS (kTLS) enabled and using async crypto backends

Discovery Timeline

  • 2024-04-04 - CVE-2024-26800 published to NVD
  • 2025-12-11 - Last updated in NVD database

Technical Details for CVE-2024-26800

Vulnerability Analysis

The vulnerability stems from incorrect handling of the -EBUSY return code in tls_do_decryption. The kernel TLS implementation supports asynchronous decryption through the crypto API. When a request is queued in the backlog, crypto_aead_decrypt returns -EBUSY and the function waits for all pending async decryptions to complete.

If any of the queued decryptions fail, tls_do_decryption returns -EBADMSG. The caller tls_decrypt_sg then jumps to its error path and attempts to release the scatter-gather pages associated with the request. These pages were already freed by tls_decrypt_done, the async completion callback, creating a use-after-free condition.

Root Cause

The root cause is conflation of two distinct async behaviors. Only the -EINPROGRESS return code represents a true asynchronous operation where memory ownership transfers to the callback. The -EBUSY case involves waiting synchronously after queuing, but the callback still runs and releases memory. Without a flag distinguishing these cases, the error path double-frees the pages.

Attack Vector

Exploitation requires local access with the ability to open TLS sockets and trigger backlogged crypto operations under load. An attacker manipulates the crypto backlog state to force -EBUSY returns, then induces a decryption failure to trigger the error path. The resulting use-after-free corrupts kernel page allocator metadata and can be shaped into privilege escalation primitives.

The fix introduces an ->async_done flag to notify tls_decrypt_sg that the callback has already released memory, preventing the double-free on the error path. The corrected logic also signals tls_sw_recvmsg that data is available for immediate copy in the -EBUSY case.

Detection Methods for CVE-2024-26800

Indicators of Compromise

  • Kernel oops or panic messages referencing tls_decrypt_sg, tls_decrypt_done, or tls_do_decryption in dmesg output
  • KASAN reports flagging use-after-free in net/tls/tls_sw.c page handling code
  • Unexpected process termination on TLS-enabled sockets with async crypto backends
  • Page allocator corruption warnings (BUG: Bad page state) on systems using kTLS

Detection Strategies

  • Enable kernel address sanitizer (KASAN) builds in test environments to catch the use-after-free at runtime
  • Audit running kernel versions against patched commits 13114dc5, 1ac9fb84, 81be8535, and f2b85a4c
  • Monitor for processes invoking setsockopt with TLS_TX/TLS_RX options on kernels without the fix
  • Correlate crash dumps and kernel logs across endpoints to identify clusters of TLS-related faults

Monitoring Recommendations

  • Collect and centralize dmesg and /var/log/kern.log entries referencing TLS subsystem functions
  • Track loaded crypto modules (tcrypt, cryptd) on production hosts where kTLS is enabled
  • Alert on repeated kernel warnings from net/tls/ source paths
  • Inventory hosts running affected 6.8-rc kernels and stable branches still on vulnerable revisions

How to Mitigate CVE-2024-26800

Immediate Actions Required

  • Apply the upstream kernel patches identified by commits 13114dc5543069f7b97991e3b79937b6da05f5b0, 1ac9fb84bc7ecd4bc6428118301d9d864d2a58d1, 81be85353b0f5a7b660635634b655329b429eefe, and f2b85a4cc763841843de693bbd7308fe9a2c4c89
  • Update to a distribution kernel package that backports the TLS use-after-free fix
  • Restrict local access on multi-tenant systems until patches are deployed
  • Audit applications using kernel TLS offload to confirm patched kernel versions

Patch Information

The Linux kernel maintainers have merged the fix across stable branches. See the upstream commits: Patch 13114dc5, Patch 1ac9fb84, Patch 81be8535, and Patch f2b85a4c. The fix introduces an ->async_done flag to disambiguate between true async (-EINPROGRESS) and backlogged-and-waited (-EBUSY) crypto operations.

Workarounds

  • Disable kernel TLS by unloading the tls module where the feature is not required: modprobe -r tls
  • Avoid configuring async crypto backends for TLS sockets on unpatched kernels
  • Limit kTLS use to trusted local users and contained workloads until patching completes
bash
# Verify kernel version and check for TLS module exposure
uname -r
lsmod | grep -E '^tls'
# Optional: prevent automatic loading of the tls module
echo 'blacklist tls' | sudo tee /etc/modprobe.d/disable-tls.conf
sudo update-initramfs -u

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

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechLinux Kernel

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-416
  • Vendor Resources
  • Kernel Git Commit Change

  • Kernel Git Commit Change

  • Kernel Git Commit Change

  • Kernel Git Commit Change
  • Related CVEs
  • CVE-2026-46241: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-46233: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-46227: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-46222: Linux Kernel Use-After-Free Vulnerability
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