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

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

CVE-2024-26921 is a use-after-free vulnerability in the Linux Kernel's inet_defrag component that can cause socket release issues during packet reassembly. This article covers technical details, affected versions, and mitigation.

Published: January 28, 2026

CVE-2024-26921 Overview

CVE-2024-26921 is a vulnerability in the Linux kernel's IPv4 fragment reassembly mechanism (inet_defrag) that can lead to a denial of service condition. The flaw exists in the way the kernel handles socket (sk) references during IP packet defragmentation in the output path, potentially causing premature socket release while still in use by downstream network functions.

Critical Impact

Local attackers with low privileges can trigger a denial of service by exploiting improper socket reference handling during fragmented packet reassembly, leading to kernel crashes or system instability.

Affected Products

  • Linux Kernel (multiple versions)
  • Linux Kernel 6.9-rc1
  • Systems using netfilter, Open vSwitch, or ct_act.c modules for fragmented packet handling

Discovery Timeline

  • April 18, 2024 - CVE-2024-26921 published to NVD
  • November 3, 2025 - Last updated in NVD database

Technical Details for CVE-2024-26921

Vulnerability Analysis

The vulnerability occurs in the Linux kernel's IP defragmentation code path when handling fragmented packets in the transmit (TX) pipeline. Functions such as ip_local_out() pass skb->sk (socket buffer's socket reference) as a function argument. When a fragmented packet is reassembled via ip_defrag() before the function returns, the socket reference can be prematurely released through skb_orphan(), causing a use-after-free condition.

This issue specifically affects packet fragments processed through netfilter or similar modules like Open vSwitch (openvswitch) or connection tracking (ct_act.c). When ip_defrag() is called in the output path, it implicitly orphans the socket buffer, which is problematic because downstream components like the FQ (Fair Queue) packet scheduler depend on the socket reference remaining valid.

The root of the problem lies in the aliasing of ip_defrag_offset with the sk_buff->sk member, which causes the socket reference to be corrupted during defragmentation processing.

Root Cause

The root cause is improper socket reference management during IP fragment reassembly. The ip_defrag() function calls skb_orphan() unconditionally, which releases the socket reference too early. This is problematic when the packet is processed in the output path where downstream functions (such as packet schedulers and routing code) rely on skb->sk being valid and pointing to an inet socket.

Additionally, the ip_defrag_offset field is aliased with sk_buff->sk, meaning that storing the fragment offset overwrites the socket reference, leading to memory corruption.

Attack Vector

This vulnerability requires local access with low privileges to exploit. An attacker can trigger the vulnerability by:

  1. Crafting or manipulating network traffic that results in fragmented IP packets being processed through the TX pipeline
  2. Ensuring the packets traverse modules like netfilter, Open vSwitch, or connection tracking
  3. Timing the fragment reassembly to occur while socket references are still needed by downstream packet processing functions

The exploitation leads to socket memory accounting underflow (sk_wmem), potential use-after-free conditions, and ultimately kernel crashes or system instability.

The fix moves the socket orphaning operation to the last possible moment, relocates the offset into the FRAG_CB structure to prevent socket reference corruption, and properly handles socket reference stealing and write memory accounting during reassembly completion.

Detection Methods for CVE-2024-26921

Indicators of Compromise

  • Unexpected kernel panics or oops messages referencing ip_defrag, inet_frag, or socket-related functions
  • Write memory (sk_wmem) accounting errors or underflows in kernel logs
  • System instability when handling fragmented IP traffic through netfilter or Open vSwitch

Detection Strategies

  • Monitor kernel logs (dmesg, /var/log/kern.log) for crashes involving ip_defrag(), skb_orphan(), or socket-related null pointer dereferences
  • Deploy SentinelOne Singularity Platform to detect anomalous kernel behavior and potential exploitation attempts
  • Implement network monitoring to identify unusual patterns of fragmented traffic targeting vulnerable systems

Monitoring Recommendations

  • Enable kernel crash dump collection to capture diagnostic information for analysis
  • Monitor systems running Open vSwitch, netfilter with connection tracking, or other packet processing modules for unusual behavior
  • Use SentinelOne's behavioral AI to detect and respond to kernel-level anomalies in real-time

How to Mitigate CVE-2024-26921

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the fix for this vulnerability
  • Prioritize patching on systems that process significant amounts of fragmented IP traffic
  • Review and audit systems running Open vSwitch, netfilter, or connection tracking modules

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability. The fix moves the orphaning operation to the core at the last possible moment, relocates the fragment offset into FRAG_CB to prevent socket reference corruption, and properly handles socket reference management during reassembly.

Patches are available through the kernel git repository:

  • Kernel Patch Commit 18685451fc4e
  • Kernel Patch Commit 1b6de5e6575b
  • Kernel Patch Commit 4318608dc28e
  • Kernel Patch Commit 7d0567842b78

Debian users should refer to the Debian LTS Security Announcement for distribution-specific updates.

Workarounds

  • If immediate patching is not possible, consider limiting exposure by reducing fragmented traffic processing through affected modules
  • Monitor systems closely for signs of instability while awaiting patch deployment
  • Implement network segmentation to limit local access to potentially vulnerable systems
bash
# Check current kernel version
uname -r

# Verify if your distribution has released patches
# For Debian/Ubuntu:
apt-cache policy linux-image-$(uname -r)

# For RHEL/CentOS:
yum info kernel-$(uname -r)

# Apply available security updates
# Debian/Ubuntu:
sudo apt update && sudo apt upgrade

# RHEL/CentOS:
sudo yum update kernel

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

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.06%

  • 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
  • NVD-CWE-noinfo
  • Technical References
  • Debian LTS Announcement
  • Vendor Resources
  • Kernel Git Commit

  • Kernel Git Commit

  • Kernel Git Commit

  • Kernel Git Commit

  • Kernel Git Commit

  • Kernel Git Commit

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

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

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

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