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-36905

CVE-2024-36905: Linux Kernel TCP DOS Vulnerability

CVE-2024-36905 is a denial of service flaw in the Linux kernel TCP implementation that causes a divide-by-zero crash in TCP_SYN_RECV state handling. This article covers the technical details, affected versions, and mitigations.

Updated: January 22, 2026

CVE-2024-36905 Overview

A divide-by-zero vulnerability exists in the Linux kernel's TCP stack within the tcp_rcv_space_adjust() function. The flaw occurs during an improper state transition in TCP_SYN_RECV sockets when handling shutdown(SEND_SHUTDOWN) calls. This race condition allows a socket to transition from TCP_SYN_RECV directly to TCP_FIN_WAIT1 without properly initializing buffer space, resulting in a kernel crash due to division by zero.

Critical Impact

This vulnerability can be exploited to cause a kernel panic and system denial of service, particularly in systems handling cross-SYN TCP connections or when exposed to network fuzzing attacks.

Affected Products

  • Linux kernel versions prior to the security patches
  • Debian Linux (affected versions addressed in LTS announcements)
  • NetApp products utilizing affected Linux kernel versions
  • Red Hat Enterprise Linux (affected versions)
  • Amazon Linux (affected versions)

Discovery Timeline

  • May 30, 2024 - CVE-2024-36905 published to NVD
  • January 14, 2025 - Last updated in NVD database

Technical Details for CVE-2024-36905

Vulnerability Analysis

The vulnerability resides in how the Linux kernel's TCP implementation handles the shutdown() system call when a socket is in the TCP_SYN_RECV state. This state is specifically used for cross-SYN connections, which are relatively rare in normal network operations but commonly triggered by network fuzzers like syzkaller.

When a socket undergoes the following state transitions without calling tcp_init_transfer() (and consequently tcp_init_buffer_space()), the receive buffer space values remain uninitialized:

  1. TCP_CLOSE → TCP_SYN_SENT (via connect())
  2. TCP_SYN_SENT → TCP_SYN_RECV
  3. TCP_SYN_RECV → TCP_FIN_WAIT1 (via shutdown())

The tcp_rcv_space_adjust() function later performs division operations using these uninitialized values, specifically when processing received messages through tcp_recvmsg_locked(). With the divisor being zero, this triggers a divide error exception in the kernel.

Root Cause

The root cause is an improper state machine transition in tcp_shutdown(). The function allowed direct transition from TCP_SYN_RECV to TCP_FIN_WAIT1, bypassing the TCP_ESTABLISHED state where critical buffer initialization occurs. The fix defers the shutdown operation until the socket properly transitions to TCP_ESTABLISHED, ensuring tcp_init_buffer_space() is called before any receive buffer space calculations.

Attack Vector

An attacker can exploit this vulnerability by:

  1. Creating a socket and initiating a cross-SYN connection scenario
  2. Allowing the socket to reach TCP_SYN_RECV state
  3. Immediately calling shutdown() with SEND_SHUTDOWN before the connection fully establishes
  4. Triggering receive operations that invoke tcp_rcv_space_adjust()

The crash occurs at tcp_rcv_space_adjust+0x2df/0x890 in net/ipv4/tcp_input.c at line 767, where the division operation fails due to a zero divisor. The vulnerability does not require special privileges and can be triggered locally through normal socket operations.

Detection Methods for CVE-2024-36905

Indicators of Compromise

  • Kernel panic messages containing "divide error: 0000" with RIP pointing to tcp_rcv_space_adjust
  • System crash dumps showing call traces through tcp_recvmsg_locked, tcp_recvmsg, and socket receive functions
  • Unexpected system reboots correlated with heavy network activity or fuzzing operations
  • Kernel log entries showing PREEMPT SMP KASAN NOPTI divide error exceptions

Detection Strategies

  • Monitor kernel logs for divide error exceptions in the TCP stack, specifically in tcp_rcv_space_adjust()
  • Deploy kernel crash dump analysis to identify exploitation attempts targeting this vulnerability
  • Implement network monitoring for unusual cross-SYN connection patterns that may indicate exploitation attempts
  • Use kernel runtime verification tools to detect improper TCP state transitions

Monitoring Recommendations

  • Enable kernel crash dump collection with kdump or similar tools to capture evidence of exploitation
  • Configure system monitoring to alert on unexpected kernel panics or system reboots
  • Monitor for patterns of socket creation followed by rapid shutdown calls during SYN_RECV state
  • Review syskaller or fuzzer logs if running kernel testing infrastructure

How to Mitigate CVE-2024-36905

Immediate Actions Required

  • Apply the official Linux kernel patches immediately to all affected systems
  • Prioritize patching systems that handle high volumes of network traffic or are exposed to untrusted network input
  • Consider restricting local user access on critical systems until patches can be applied
  • Monitor systems for signs of exploitation while patch deployment is in progress

Patch Information

The vulnerability has been addressed through multiple kernel patches that modify tcp_shutdown() to prevent the TCP_SYN_RECV to TCP_FIN_WAIT1 transition. The fix ensures that when tcp_rcv_state_process() transitions a socket from TCP_SYN_RECV to TCP_ESTABLISHED, it checks sk->sk_shutdown to properly enter TCP_FIN_WAIT1 and send a FIN packet from a valid socket state. Additionally, tcp_send_fin() has been updated to use GFP_ATOMIC allocations since it can now be called from BH context.

Patches are available from multiple sources:

  • Linux Kernel Git Stable Commit 2552c9d9
  • Linux Kernel Git Stable Commit 34e41a03
  • Debian LTS Security Announcement
  • NetApp Security Advisory
  • Red Hat CVE Advisory
  • AWS Security Advisory

Workarounds

  • Limit local user access to systems where kernel upgrades cannot be immediately performed
  • Implement network segmentation to reduce exposure of vulnerable systems to untrusted network traffic
  • Monitor for and block suspicious network patterns that may indicate fuzzing or exploitation attempts
  • Consider disabling non-essential network services on critical systems until patching is complete
bash
# Check current kernel version for vulnerability assessment
uname -r

# Verify if patches have been applied (look for relevant commits)
grep -r "tcp_shutdown" /proc/kallsyms

# Update kernel on Debian/Ubuntu systems
apt update && apt upgrade linux-image-$(uname -r)

# Update kernel on RHEL/CentOS systems
yum update kernel

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

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.06%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Commit Changes

  • Kernel Commit Changes

  • Kernel Commit Changes

  • Kernel Commit Changes

  • Kernel Commit Changes

  • Kernel Commit Changes

  • Kernel Commit Changes

  • Kernel Commit Changes

  • Openwall OSS Security Post

  • Openwall OSS Security Post

  • Openwall OSS Security Post

  • Openwall OSS Security Post

  • Openwall OSS Security Post

  • Openwall OSS Security Post

  • Debian LTS Announcement

  • Debian LTS Announcement

  • NetApp Security Advisory

  • Red Hat CVE-2024-36905

  • AWS CVE-2024-36905

  • GitHub Issue Discussion

  • Openwall OSS Security Post
  • Related CVEs
  • CVE-2026-31465: Linux Kernel Writeback DoS Vulnerability

  • CVE-2026-31472: Linux Kernel IPTFS DoS Vulnerability

  • CVE-2026-31451: Linux Kernel ext4 DOS Vulnerability

  • CVE-2026-31448: Linux Kernel ext4 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