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-2026-23440

CVE-2026-23440: Linux Kernel Race Condition Vulnerability

CVE-2026-23440 is a race condition vulnerability in the Linux kernel's IPSec ESN update mechanism that causes anti-replay failures and traffic halts. This article covers technical details, affected systems, and mitigation.

Published: April 10, 2026

CVE-2026-23440 Overview

A race condition vulnerability has been identified in the Linux kernel's mlx5e network driver, specifically within the IPSec Extended Sequence Number (ESN) handling mechanism. The vulnerability occurs during IPSec full offload mode when the device reports an ESN wrap event to the driver. Due to improper synchronization in the event handling path, the driver can process the same ESN update event multiple times, leading to corruption of the ESN state and subsequent IPSec traffic disruption.

Critical Impact

Successful exploitation causes ESN high-order bits (esn_msb) to be incremented incorrectly, leading to anti-replay failures and a complete halt of IPSec traffic on affected systems.

Affected Products

  • Linux kernel with mlx5e network driver
  • Systems using Mellanox/NVIDIA ConnectX network adapters with IPSec full offload enabled
  • Enterprise Linux distributions using affected kernel versions

Discovery Timeline

  • April 3, 2026 - CVE CVE-2026-23440 published to NVD
  • April 7, 2026 - Last updated in NVD database

Technical Details for CVE-2026-23440

Vulnerability Analysis

The vulnerability exists in the IPSec ESN event handling code path of the mlx5e driver. In IPSec full offload mode, hardware reports ESN wrap events to the driver when the sequence number approaches its maximum value. The driver validates these events by querying the IPSec ASO (Advanced Software Offload) and checking that the esn_event_arm field is set to 0x0, indicating a legitimate event has occurred.

After validation, the driver calls mlx5_accel_esp_modify_xfrm() to update the kernel's xfrm state. However, this function temporarily releases and re-acquires the xfrm state lock, creating a race window. During this window, if the hardware sends additional events (for any reason), the driver may reprocess the same ESN update before the original handling completes.

This double-processing causes the ESN high-order bits to be incremented twice instead of once. The corrupted ESN state is then programmed into the hardware, causing anti-replay validation failures for legitimate IPSec packets.

Root Cause

The root cause is improper ordering of the event acknowledgment and state modification operations. The driver validates the ESN event and then proceeds to modify the xfrm state before re-arming the event context (setting esn_event_arm back to 0x1). The temporary release of the xfrm state lock during mlx5_accel_esp_modify_xfrm() allows the race condition to occur.

The fix reorders these operations: the driver now re-arms the ESN event immediately after validation and before calling mlx5_accel_esp_modify_xfrm(). Since the next legitimate ESN update only occurs after approximately 2^31 packets are received, there is no risk of missing an actual update event.

Attack Vector

This is a local race condition vulnerability that can be triggered under specific conditions:

The vulnerability manifests when IPSec full offload mode is enabled on Mellanox/NVIDIA ConnectX network adapters. The race window opens when the xfrm state lock is temporarily released during event handling. While the exact attack vector is classified as unknown, the vulnerability could potentially be exploited by an attacker who can control or influence network traffic timing to trigger hardware ESN events during the vulnerable window. The impact is a denial of service condition where all IPSec traffic ceases to function due to anti-replay failures.

Detection Methods for CVE-2026-23440

Indicators of Compromise

  • Unexpected IPSec anti-replay failures appearing in kernel logs
  • Sudden cessation of IPSec-protected network traffic
  • Log entries indicating ESN synchronization errors in mlx5e driver

Detection Strategies

  • Monitor kernel logs for mlx5e driver errors related to IPSec or ESN handling
  • Track IPSec SA (Security Association) statistics for unexpected anti-replay counter anomalies
  • Implement alerting on sudden drops in IPSec tunnel throughput or connectivity

Monitoring Recommendations

  • Enable detailed logging for the mlx5e network driver subsystem
  • Monitor system journals for xfrm state modification errors
  • Implement network monitoring to detect IPSec tunnel failures

How to Mitigate CVE-2026-23440

Immediate Actions Required

  • Update the Linux kernel to a patched version containing the fix
  • Review network infrastructure using Mellanox/NVIDIA ConnectX adapters with IPSec offload
  • Consider temporarily disabling IPSec hardware offload until patches are applied

Patch Information

The Linux kernel development team has released patches to address this vulnerability. The fix reorders the ESN event handling to re-arm the event context immediately after validation, closing the race window. Multiple kernel commits address this issue across different kernel branches:

  • Kernel Git Commit Update
  • Kernel Git Commit Fix
  • Kernel Git Commit Changes
  • Kernel Git Commit Improvements
  • Kernel Git Commit Enhancement

Workarounds

  • Disable IPSec hardware offload by using software-based IPSec processing until patching is possible
  • Configure kernel module parameters to disable mlx5e IPSec offload functionality
  • Implement network segmentation to reduce reliance on affected IPSec tunnels
bash
# Disable mlx5e IPSec offload (temporary workaround)
# Add to /etc/modprobe.d/mlx5.conf
options mlx5_core ipsec_offload=0

# Reload the module or reboot for changes to take effect
modprobe -r mlx5_core && modprobe mlx5_core

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

  • Vulnerability Details
  • TypeRace Condition

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Git Commit Fix

  • Kernel Git Commit Changes

  • Kernel Git Commit Improvements

  • Kernel Git Commit Enhancement
  • Related CVEs
  • CVE-2026-31456: Linux Kernel Race Condition Vulnerability

  • CVE-2026-31466: Linux Kernel Race Condition Vulnerability

  • CVE-2026-31455: Linux Kernel Race Condition Vulnerability

  • CVE-2026-31436: Linux Kernel Race Condition 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