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

CVE-2024-0646: Linux Kernel Privilege Escalation Flaw

CVE-2024-0646 is a privilege escalation vulnerability in the Linux Kernel's Transport Layer Security that allows local attackers to crash systems or gain elevated privileges. This article covers technical details, impact, and fixes.

Updated: January 22, 2026

CVE-2024-0646 Overview

CVE-2024-0646 is an out-of-bounds memory write vulnerability discovered in the Linux kernel's Transport Layer Security (kTLS) functionality. The flaw exists in how the kernel handles the splice() system call when a kTLS socket is used as the destination. A local attacker with low privileges can exploit this vulnerability to cause a system crash or potentially escalate their privileges on the affected system.

Critical Impact

Local privilege escalation vulnerability in Linux kernel kTLS implementation allows authenticated attackers to gain elevated system access or cause denial of service.

Affected Products

  • Linux Kernel (multiple versions up to 6.7-rc4)
  • Red Hat Enterprise Linux 8.0
  • Red Hat Enterprise Linux 9.0

Discovery Timeline

  • 2024-01-17 - CVE-2024-0646 published to NVD
  • 2024-11-25 - Last updated in NVD database

Technical Details for CVE-2024-0646

Vulnerability Analysis

This vulnerability is classified as CWE-787 (Out-of-bounds Write), a memory corruption issue that occurs within the kernel's TLS implementation. The kTLS (kernel TLS) subsystem is designed to offload TLS encryption and decryption operations from user space to the kernel for improved performance. When processing data through the splice() system call with a kTLS socket configured as the destination, the kernel fails to properly validate buffer boundaries, resulting in memory being written outside of allocated regions.

The vulnerability requires local access to the system, meaning an attacker must already have authenticated access or the ability to execute code on the target machine. However, the low attack complexity and lack of required user interaction make this a practical attack vector for privilege escalation scenarios.

Root Cause

The root cause lies in improper bounds checking within the kTLS splice handling code path. When the splice() function is called with a kTLS socket as the destination, the kernel does not adequately verify that the data being transferred fits within the allocated kernel buffer space. This oversight allows data to be written beyond the intended memory boundaries, corrupting adjacent kernel memory structures.

The fix, committed to the Linux kernel git repository as commit c5a595000e267, addresses this issue by implementing proper boundary validation before performing the memory write operation.

Attack Vector

The attack vector is local, requiring the attacker to have existing access to the target system. Exploitation involves:

  1. Creating a kTLS socket with appropriate TLS configuration
  2. Setting up a splice() operation with the kTLS socket as the destination
  3. Crafting input data designed to trigger the out-of-bounds write condition
  4. Leveraging the memory corruption to overwrite sensitive kernel structures

This can result in kernel panic (denial of service) or, with careful exploitation, privilege escalation to root. The vulnerability affects systems where kTLS is enabled and accessible to unprivileged users.

Detection Methods for CVE-2024-0646

Indicators of Compromise

  • Unexpected system crashes or kernel panics involving TLS or networking subsystems
  • Unusual splice() system calls targeting kTLS sockets from non-privileged processes
  • Kernel log entries indicating memory corruption or use-after-free conditions in TLS-related code paths
  • Processes unexpectedly gaining elevated privileges

Detection Strategies

  • Monitor for kernel oops or panic messages referencing kTLS or splice operations in /var/log/kern.log or dmesg output
  • Implement auditd rules to track splice() system calls involving socket file descriptors
  • Deploy kernel exploit detection tools that can identify abnormal memory access patterns
  • Use SentinelOne's behavioral AI engine to detect privilege escalation attempts following suspicious kernel interactions

Monitoring Recommendations

  • Enable kernel auditing for socket-related system calls using auditctl
  • Configure centralized logging to capture kernel messages across all Linux systems
  • Implement real-time alerting on kernel panic events and unexpected system reboots
  • Regularly review audit logs for patterns consistent with local privilege escalation attempts

How to Mitigate CVE-2024-0646

Immediate Actions Required

  • Update Linux kernel to patched versions as specified in vendor advisories
  • Apply Red Hat Enterprise Linux security updates (RHSA-2024:0723, RHSA-2024:0724, RHSA-2024:0725, and related advisories)
  • If immediate patching is not possible, consider disabling kTLS functionality as a temporary workaround
  • Restrict local access to systems to trusted users only until patches can be applied

Patch Information

The vulnerability has been addressed in the upstream Linux kernel via commit c5a595000e267. Multiple Linux distributions have released security updates:

  • Red Hat Enterprise Linux: Multiple security advisories available including RHSA-2024:0723, RHSA-2024:0850, RHSA-2024:1248, and others
  • Debian: LTS security update released (see Debian LTS Announcement June 2024)

For detailed tracking, refer to Red Hat Bugzilla #2253908 and the upstream kernel commit.

Workarounds

  • Disable kTLS by unloading the tls kernel module: modprobe -r tls
  • Blacklist the TLS module to prevent automatic loading by adding blacklist tls to /etc/modprobe.d/blacklist.conf
  • Implement strict access controls to limit which users can create TLS sockets
  • Use container isolation to restrict access to kernel features from untrusted workloads
bash
# Disable kTLS module as temporary workaround
modprobe -r tls

# Prevent automatic loading of kTLS module
echo "blacklist tls" >> /etc/modprobe.d/blacklist-ktls.conf

# Verify module is not loaded
lsmod | grep tls

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

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.02%

  • 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-787
  • Technical References
  • Red Hat Security Advisory RHSA-2024:0723

  • Red Hat Security Advisory RHSA-2024:0724

  • Red Hat Security Advisory RHSA-2024:0725

  • Red Hat Security Advisory RHSA-2024:0850

  • Red Hat Security Advisory RHSA-2024:0851

  • Red Hat Security Advisory RHSA-2024:0876

  • Red Hat Security Advisory RHSA-2024:0881

  • Red Hat Security Advisory RHSA-2024:0897

  • Red Hat Security Advisory RHSA-2024:1248

  • Red Hat Security Advisory RHSA-2024:1250

  • Red Hat Security Advisory RHSA-2024:1251

  • Red Hat Security Advisory RHSA-2024:1253

  • Red Hat Security Advisory RHSA-2024:1268

  • Red Hat Security Advisory RHSA-2024:1269

  • Red Hat Security Advisory RHSA-2024:1278

  • Red Hat Security Advisory RHSA-2024:1306

  • Red Hat Security Advisory RHSA-2024:1367

  • Red Hat Security Advisory RHSA-2024:1368

  • Red Hat Security Advisory RHSA-2024:1377

  • Red Hat Security Advisory RHSA-2024:1382

  • Red Hat Security Advisory RHSA-2024:1404

  • Red Hat Security Advisory RHSA-2024:2094

  • Red Hat CVE Details CVE-2024-0646

  • Debian LTS Announcement June 2024
  • Vendor Resources
  • Red Hat Bug Report #2253908

  • Linux Kernel Git Commit c5a5950
  • 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