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

CVE-2026-23118: Linux Kernel Race Condition Vulnerability

CVE-2026-23118 is a race condition vulnerability in the Linux kernel's rxrpc component that causes data-race warnings and potential load/store tearing. This article covers the technical details, impact, and mitigation.

Published: February 20, 2026

CVE-2026-23118 Overview

A data-race vulnerability has been identified and resolved in the Linux kernel's rxrpc subsystem. The issue exists within the keepalive mechanism, specifically in the rxrpc_peer_keepalive_worker and rxrpc_send_data_packet functions where concurrent read and write operations to the ->last_tx_at field can occur without proper synchronization.

The vulnerability was detected by KCSAN (Kernel Concurrency Sanitizer) which identified potential data-race conditions when updating and reading the last transmission timestamp. Additionally, because ->last_tx_at is a 64-bit value, load/store tearing can occur on 32-bit architectures where atomic 64-bit operations may not be available.

Critical Impact

Race condition in Linux kernel rxrpc subsystem could lead to memory corruption or unexpected behavior on 32-bit systems due to load/store tearing of 64-bit timestamp values.

Affected Products

  • Linux Kernel (rxrpc subsystem)
  • Systems running 32-bit Linux architectures with rxrpc enabled
  • Linux systems utilizing AFS (Andrew File System) functionality

Discovery Timeline

  • 2026-02-14 - CVE CVE-2026-23118 published to NVD
  • 2026-02-18 - Last updated in NVD database

Technical Details for CVE-2026-23118

Vulnerability Analysis

This vulnerability is classified as a Race Condition affecting the Linux kernel's rxrpc networking subsystem. The issue occurs in the keepalive packet transmission logic where the ->last_tx_at timestamp is accessed concurrently by multiple kernel threads without proper synchronization primitives.

When rxrpc_send_data_packet executes, it updates the peer's last transmission timestamp with:
conn->peer->last_tx_at = ktime_get_seconds();

Concurrently, rxrpc_peer_keepalive_worker reads this value to determine if a keepalive packet should be sent:
keepalive_at = peer->last_tx_at + RXRPC_KEEPALIVE_TIME;

While the lockless access pattern is functionally acceptable since only an approximate transmission time is needed for keepalive decisions, the use of a 64-bit time64_t value creates a tearing hazard on 32-bit architectures. Load/store tearing occurs when a multi-word value is read or written in multiple non-atomic operations, allowing a concurrent thread to observe a partially updated value.

Root Cause

The root cause of this vulnerability stems from two interrelated issues:

  1. Missing Memory Barriers: The ->last_tx_at field was accessed without appropriate memory ordering annotations (such as READ_ONCE() and WRITE_ONCE()), which the kernel requires to inform both the compiler and CPU about intentional lockless access patterns.

  2. Data Type Sizing Issue: Using a 64-bit time64_t for ->last_tx_at on 32-bit architectures creates the possibility of load/store tearing, where one thread may read half of a value while another thread is in the process of writing.

Attack Vector

The attack vector for this vulnerability is local, requiring execution within the kernel context. Exploitation would involve:

  1. An attacker triggering concurrent rxrpc connection activity to induce race conditions between the keepalive worker and data packet transmission paths.

  2. On 32-bit systems, the tearing issue could potentially be exploited to cause incorrect timestamp calculations, affecting keepalive timing decisions.

  3. In a worst-case scenario, corrupted timestamp values could lead to unexpected keepalive behavior, potentially causing connection state inconsistencies.

The fix addresses these issues by changing ->last_tx_at to an unsigned int type and storing only the least significant word (LSW) of the time64_t value. This ensures atomic access on all architectures while still providing sufficient precision for keepalive timing decisions, as long as no more than 68 years elapses between transmissions.

Detection Methods for CVE-2026-23118

Indicators of Compromise

  • KCSAN (Kernel Concurrency Sanitizer) warnings indicating data-race between rxrpc_peer_keepalive_worker and rxrpc_send_data_packet
  • Unexpected rxrpc connection behavior or keepalive packet timing anomalies
  • Kernel log messages reporting race condition warnings in the rxrpc subsystem

Detection Strategies

  • Enable KCSAN in kernel builds to automatically detect data-race conditions in production or testing environments
  • Monitor kernel logs for rxrpc-related warnings or errors using dmesg | grep -i rxrpc
  • Review system logs for AFS connectivity issues that may indicate underlying rxrpc problems

Monitoring Recommendations

  • Implement continuous kernel log monitoring with alerting for rxrpc subsystem anomalies
  • Deploy kernel runtime verification tools capable of detecting race conditions
  • Monitor AFS client stability metrics if AFS is in use

How to Mitigate CVE-2026-23118

Immediate Actions Required

  • Update to a patched Linux kernel version that includes the rxrpc fix
  • If running 32-bit systems with rxrpc enabled, prioritize patching to eliminate load/store tearing risk
  • Review and audit any custom kernel modules interacting with the rxrpc subsystem

Patch Information

The Linux kernel developers have released patches to address this vulnerability. The fix modifies the ->last_tx_at field from a 64-bit time64_t to an unsigned int, storing only the LSW of the timestamp. This ensures atomic access on all architectures while maintaining functional accuracy for keepalive timing decisions.

Patch commits are available from the kernel git repository:

  • Kernel Git Commit 5d5fe8bcd331
  • Kernel Git Commit c08cf314191c
  • Kernel Git Commit f8cf1368e0a5

Workarounds

  • If immediate patching is not possible, consider disabling the rxrpc kernel module if AFS functionality is not required: modprobe -r rxrpc
  • On affected 32-bit systems, evaluate migration to 64-bit kernels where atomic 64-bit operations are natively supported
  • Implement network-level monitoring for rxrpc traffic to detect anomalous connection behavior

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 Change

  • Kernel Git Commit Change

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