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-2024-26584

CVE-2024-26584: Linux Kernel TLS Crypto DoS Vulnerability

CVE-2024-26584 is a denial of service vulnerability in Linux Kernel's TLS implementation affecting crypto request backlogging. This post covers the technical details, affected kernel versions, security impact, and mitigation steps.

Updated: January 22, 2026

CVE-2024-26584 Overview

CVE-2024-26584 is a vulnerability in the Linux kernel's TLS (Transport Layer Security) subsystem related to improper handling of crypto request backlogging. When the CRYPTO_TFM_REQ_MAY_BACKLOG flag is set on requests to the crypto API, the crypto_aead_{encrypt,decrypt} functions can return -EBUSY instead of -EINPROGRESS under valid conditions. This occurs when the cryptd queue for AESNI becomes full, which can be easily triggered with an artificially low cryptd.cryptd_max_cpu_qlen setting. The vulnerability can lead to denial of service conditions on affected systems.

Critical Impact

Local attackers with user-level privileges can trigger denial of service conditions by exploiting improper error handling in the kernel TLS crypto subsystem, potentially disrupting encrypted network communications.

Affected Products

  • Linux Kernel (multiple versions)
  • Fedora Linux (various releases)
  • Linux-based distributions using affected kernel versions

Discovery Timeline

  • 2024-02-21 - CVE-2024-26584 published to NVD
  • 2025-11-04 - Last updated in NVD database

Technical Details for CVE-2024-26584

Vulnerability Analysis

The vulnerability exists in the Linux kernel's TLS implementation within the networking subsystem (net: tls). The core issue stems from the kernel's handling of asynchronous cryptographic operations when using hardware-accelerated encryption through AESNI (Advanced Encryption Standard New Instructions).

When the kernel TLS subsystem sets the CRYPTO_TFM_REQ_MAY_BACKLOG flag on cryptographic requests, it indicates that requests can be queued if the crypto engine is busy. However, the original implementation did not properly handle the -EBUSY return code that occurs when the cryptd queue is full. In this scenario, requests are enqueued to the backlog and still processed, but the async callback is invoked twice: first with err == -EINPROGRESS (which should be ignored), then with err == 0 indicating completion.

This vulnerability is classified under CWE-755 (Improper Handling of Exceptional Conditions), as the kernel failed to properly handle the backlogging state of cryptographic operations.

Root Cause

The root cause is the incomplete error handling for the -EBUSY return value from crypto_aead_encrypt() and crypto_aead_decrypt() functions. The TLS subsystem's error handling paths were not designed to account for the dual callback invocation pattern that occurs during backlogged request processing. The fix converts the EBUSY return code to EINPROGRESS using the new tls_*crypt_async_wait() helpers, avoiding modifications to all existing error handling paths.

Attack Vector

The attack requires local access to the system. An attacker with low-level user privileges can exploit this vulnerability by manipulating the cryptd queue depth through the cryptd.cryptd_max_cpu_qlen kernel parameter or by generating a high volume of TLS cryptographic operations to fill the queue. When the queue becomes full and backlogging occurs, the improper error handling can lead to system instability or denial of service affecting TLS-encrypted network communications.

The vulnerability can be triggered when:

  1. The cryptd queue for AESNI reaches its maximum capacity
  2. New TLS encrypt/decrypt requests are submitted
  3. The kernel returns -EBUSY which is not properly handled
  4. The dual callback invocation pattern causes unexpected behavior

Detection Methods for CVE-2024-26584

Indicators of Compromise

  • Unexpected TLS connection failures or timeouts on affected Linux systems
  • Kernel log messages indicating crypto subsystem errors with -EBUSY return codes
  • System instability during high-volume TLS operations
  • Elevated cryptd queue utilization visible through kernel debugging interfaces

Detection Strategies

  • Monitor kernel logs (dmesg) for TLS-related error messages mentioning crypto backlog issues
  • Implement alerting on abnormal network connection failures related to TLS encryption
  • Track system performance metrics for unusual CPU utilization in crypto worker threads
  • Deploy kernel-level monitoring to detect attempts to manipulate cryptd.cryptd_max_cpu_qlen

Monitoring Recommendations

  • Enable audit logging for kernel parameter modifications affecting the crypto subsystem
  • Monitor network connection establishment failures that may indicate TLS processing issues
  • Implement SentinelOne endpoint protection to detect suspicious local activity patterns
  • Configure alerting for repeated TLS handshake failures that may indicate exploitation attempts

How to Mitigate CVE-2024-26584

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the fix
  • Review and apply available kernel patches from the official Linux kernel repositories
  • Monitor Fedora security advisories for distribution-specific updates
  • Consider temporarily reducing TLS workload on critical systems until patches are applied

Patch Information

The Linux kernel development team has released patches to address this vulnerability. The fix utilizes new tls_*crypt_async_wait() helper functions to properly handle the -EBUSY return code by converting it to -EINPROGRESS, maintaining compatibility with existing error handling paths.

Patches are available through the following kernel commits:

  • Kernel Commit 13eca403
  • Kernel Commit 8590541473
  • Kernel Commit ab6397f072
  • Kernel Commit cd1bbca03f

Fedora users should monitor the Fedora Package Announcement for distribution-specific updates.

Workarounds

  • Increase the cryptd.cryptd_max_cpu_qlen parameter to reduce the likelihood of queue saturation
  • Limit TLS connection rates on heavily loaded systems to prevent queue overflow conditions
  • Consider disabling kernel TLS offload (CONFIG_TLS_DEVICE=n) if not strictly required
  • Implement network-level rate limiting to reduce crypto workload during high-traffic periods
bash
# Temporary workaround: Increase cryptd queue length
echo 1000 > /sys/module/cryptd/parameters/cryptd_max_cpu_qlen

# Verify current setting
cat /sys/module/cryptd/parameters/cryptd_max_cpu_qlen

# Monitor for crypto backlog issues in kernel logs
dmesg | grep -i "crypto\|tls\|backlog"

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLinux Kernel

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-755
  • Technical References
  • Linux Kernel Commit Update

  • Fedora Package Announcement
  • Vendor Resources
  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update
  • Related CVEs
  • CVE-2026-23446: Linux Kernel aqc111 Driver DoS Vulnerability

  • CVE-2026-23451: Linux Kernel Bonding Driver DoS Flaw

  • CVE-2026-23460: Linux Kernel ROSE Protocol DoS Vulnerability

  • CVE-2026-23459: Linux Kernel DOS Vulnerability
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