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-2023-52881

CVE-2023-52881: Linux Kernel TCP DoS Vulnerability

CVE-2023-52881 is a denial of service flaw in the Linux Kernel TCP stack that allows acceptance of ACKs for bytes never sent. This post covers the technical details, affected versions, security impact, and mitigation steps.

Published: February 4, 2026

CVE-2023-52881 Overview

CVE-2023-52881 is a vulnerability in the Linux kernel's TCP stack that allows the acceptance of ACK packets acknowledging bytes that were never actually sent by the server. This flaw exists in the ACK sequence validation logic, which follows RFC 5961 Section 5.2 guidelines but fails to account for spoofed flows where an attacker could craft malicious ACK packets with sequence numbers outside the legitimate transmission window.

The vulnerability stems from how the kernel validates incoming ACK values. When window scaling is enabled (particularly with large scale factors like 14), the acceptable ACK range can extend to over 1 billion sequence numbers (65535 * 2^14 = 1073725440). This allows an attacker to send ACK packets with carefully calculated sequence numbers that wrap around the 32-bit sequence space, tricking the kernel into accepting acknowledgments for data it never transmitted.

Critical Impact

Attackers can exploit TCP ACK sequence validation weaknesses to potentially disrupt established TCP connections or inject malicious data into TCP streams on affected Linux systems.

Affected Products

  • Linux Kernel (multiple versions from 4.2 onwards)
  • Linux Kernel 6.7-rc1 through 6.7-rc4
  • Various Linux distributions using affected kernel versions

Discovery Timeline

  • 2024-05-29 - CVE CVE-2023-52881 published to NVD
  • 2025-09-27 - Last updated in NVD database

Technical Details for CVE-2023-52881

Vulnerability Analysis

The vulnerability exists in the Linux kernel's TCP implementation where ACK validation does not sufficiently verify that acknowledged bytes were actually transmitted. According to RFC 5961 Section 5.2, ACK values are considered acceptable within the range ((SND.UNA - MAX.SND.WND) <= SEG.ACK <= SND.NXT). While this range is intended to provide flexibility for legitimate network conditions, it creates a security gap for newly established or potentially spoofed connections.

When a TCP connection uses window scaling (common in modern networks for high-bandwidth connections), the maximum send window (MAX.SND.WND) can become extremely large. With a window scale factor of 14, the window can extend to approximately 1 GB of sequence space. This means the kernel will accept ACK packets with sequence numbers spanning a vast range, including values that acknowledge data the server never sent.

The attack exploits 32-bit sequence number wraparound. An attacker can calculate a malicious ACK number by subtracting a large value from the server's initial sequence number and adding 2^32 to wrap around. For example, with an initial sequence of 1 and using 1 - 1073725300 + 2^32 = 3221241997, the attacker crafts an ACK that falls within the acceptable range but acknowledges phantom data.

Root Cause

The root cause lies in the kernel's adherence to RFC 5961 guidelines without additional validation for new connection flows. The existing ACK check accepts any value in the range ((SND.UNA - MAX.SND.WND) <= SEG.ACK <= SND.NXT), which is overly permissive for flows where tp->bytes_acked (tracking actual bytes acknowledged) has not yet accumulated significant data. The fix introduces a more stringent check that refuses to accept ACKs for bytes that were demonstrably never sent, by validating against the bytes_acked counter introduced in Linux 4.2.

Attack Vector

The attack requires local access to a system with an established TCP connection or the ability to send crafted TCP packets to a target system. The attacker must:

  1. Identify or establish a TCP connection with a server running a vulnerable kernel
  2. Observe or predict the server's initial sequence number (ISN)
  3. Calculate a malicious ACK number that falls within the acceptable range but acknowledges unsent bytes by exploiting sequence number wraparound
  4. Send crafted TCP packets with the malicious ACK value along with optional payload data

After the kernel fix, such malicious frames are dropped and a challenge ACK is sent instead. The packetdrill test included in the patch demonstrates this attack scenario, showing how a carefully crafted ACK with value 3221241997 (derived from sequence wraparound) would be accepted by vulnerable kernels but rejected by patched systems.

Detection Methods for CVE-2023-52881

Indicators of Compromise

  • Unusual TCP ACK packets with sequence numbers that appear to acknowledge more data than was transmitted
  • TCP connections exhibiting unexpected resets or state corruption
  • Network traffic showing ACK packets with sequence numbers near wraparound boundaries (values close to 2^32)

Detection Strategies

  • Monitor for TCP challenge ACKs being generated, which may indicate attempted exploitation after patching
  • Implement network intrusion detection rules to flag ACK packets with suspicious sequence number relationships
  • Audit kernel versions across infrastructure to identify systems running vulnerable kernel versions prior to the fix

Monitoring Recommendations

  • Enable TCP stack debugging on critical systems to log ACK validation failures
  • Deploy network monitoring to correlate TCP connection anomalies with potential exploitation attempts
  • Review system logs for unexpected TCP connection terminations or state inconsistencies

How to Mitigate CVE-2023-52881

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the ACK validation fix
  • Prioritize patching on internet-facing systems and systems handling sensitive TCP connections
  • Review network firewall rules to limit exposure of vulnerable systems while patches are applied

Patch Information

The Linux kernel maintainers have released patches across multiple stable branches. The fix introduces more stringent ACK sequence validation that rejects acknowledgments for bytes never sent by validating against tp->bytes_acked. Security patches are available through the following kernel git commits:

  • Kernel Git Commit 008b807f
  • Kernel Git Commit 0d4e0afd
  • Kernel Git Commit 2087d53a
  • Kernel Git Commit 3d501dd3
  • Kernel Git Commit 458f07ff
  • Kernel Git Commit 69eae75c
  • Kernel Git Commit 7ffff0cc
  • Kernel Git Commit b17a886e

Workarounds

  • Implement network-level filtering to block suspicious TCP packets with anomalous ACK sequences where feasible
  • Consider reducing TCP window scale factors on critical systems to limit the exploitable sequence range (may impact performance)
  • Deploy intrusion prevention systems (IPS) with signatures for TCP ACK sequence anomalies as a compensating control
bash
# Check current kernel version for vulnerability assessment
uname -r

# Verify if running a patched kernel by checking commit history
# Look for the ACK validation fix in TCP stack
zcat /proc/config.gz 2>/dev/null | grep -i TCP || cat /boot/config-$(uname -r) | grep -i TCP

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLinux

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.01%

  • 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
  • Vendor Resources
  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update
  • Related CVEs
  • CVE-2026-23300: Linux Kernel IPv6 Nexthop DOS Vulnerability

  • CVE-2025-71108: Linux Kernel UCSI DOS Vulnerability

  • CVE-2025-68771: Linux Kernel OCFS2 DOS Vulnerability

  • CVE-2025-68768: 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