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

CVE-2023-28466: Linux Kernel Race Condition Vulnerability

CVE-2023-28466 is a race condition flaw in Linux Kernel's TLS implementation that can lead to use-after-free or NULL pointer dereference. This article covers the technical details, affected versions, and mitigation.

Published: February 4, 2026

CVE-2023-28466 Overview

CVE-2023-28466 is a race condition vulnerability in the Linux kernel's TLS (Transport Layer Security) implementation. The vulnerability exists in the do_tls_getsockopt function within net/tls/tls_main.c, where a missing lock_sock call creates a race condition that can lead to use-after-free or NULL pointer dereference conditions. This flaw affects Linux kernel versions through 6.2.6 and poses significant risk to systems relying on kernel-level TLS processing.

Critical Impact

Local attackers with low privileges can exploit this race condition to potentially achieve arbitrary code execution or cause denial of service through memory corruption.

Affected Products

  • Linux Kernel (through version 6.2.6)
  • NetApp H300S, H410C, H410S, H500S, H700S Storage Systems
  • Debian Linux 10.0

Discovery Timeline

  • 2023-03-16 - CVE CVE-2023-28466 published to NVD
  • 2025-05-05 - Last updated in NVD database

Technical Details for CVE-2023-28466

Vulnerability Analysis

This vulnerability stems from improper synchronization in the kernel's TLS socket option handling code. The do_tls_getsockopt function in net/tls/tls_main.c fails to acquire the socket lock before accessing socket-related data structures. In a multi-threaded environment, this missing synchronization primitive allows concurrent access to socket resources, creating a time-of-check time-of-use (TOCTOU) race condition.

When successfully exploited, the race condition can manifest in two ways: a use-after-free condition where memory is accessed after being freed by a concurrent operation, or a NULL pointer dereference when expected data structures are not properly initialized due to the race. Both conditions can lead to kernel memory corruption, potentially enabling privilege escalation or causing system crashes.

The vulnerability requires local access and specific timing conditions to exploit, but the potential for privilege escalation makes it a significant concern for multi-user systems and containerized environments where kernel isolation is critical.

Root Cause

The root cause is a missing lock_sock call in the do_tls_getsockopt function. Socket operations in the Linux kernel typically require holding the socket lock to prevent concurrent modifications to socket state. Without this lock, multiple threads can simultaneously access and modify socket-related data structures, leading to race conditions. The fix involves adding proper locking around the socket option retrieval code path to ensure atomicity of the operation.

Attack Vector

The attack requires local access to the system with the ability to create and manipulate TLS sockets. An attacker would need to trigger concurrent socket operations - specifically calling getsockopt() on a TLS socket while another thread performs operations that modify or free the socket's TLS context. The timing-sensitive nature of the exploit means that successful exploitation typically requires repeated attempts or precise control over thread scheduling.

The vulnerability is exploited through the following mechanism:

  1. An attacker creates a TLS-enabled socket
  2. Two or more threads are spawned targeting the same socket
  3. One thread initiates a getsockopt() call to retrieve TLS parameters
  4. Concurrently, another thread performs an operation that modifies or releases the TLS context
  5. Due to the missing lock, the getsockopt() operation may access freed memory or a NULL pointer

Detection Methods for CVE-2023-28466

Indicators of Compromise

  • Kernel panic or oops messages referencing do_tls_getsockopt or net/tls/tls_main.c in system logs
  • Unexpected system crashes or reboots, particularly on systems with active TLS socket usage
  • Kernel memory corruption warnings or use-after-free detection alerts from KASAN (Kernel Address Sanitizer)

Detection Strategies

  • Monitor kernel logs (dmesg, /var/log/kern.log) for TLS subsystem crashes or NULL pointer dereference errors
  • Deploy kernel-level intrusion detection to identify anomalous socket operation patterns
  • Use SentinelOne's kernel-level monitoring to detect exploitation attempts targeting TLS socket operations

Monitoring Recommendations

  • Enable KASAN (Kernel Address Sanitizer) on development and testing systems to detect use-after-free conditions
  • Configure audit rules to monitor processes making frequent concurrent socket operations
  • Implement SentinelOne Singularity Platform for real-time detection of kernel exploitation attempts

How to Mitigate CVE-2023-28466

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes commit 49c47cc21b5b7a3d8deb18fc57b0aa2ab1286962
  • For Debian 10 systems, apply security updates from the Debian LTS Announcement
  • NetApp customers should review the NetApp Security Advisory for firmware updates

Patch Information

The vulnerability has been addressed in the upstream Linux kernel through commit 49c47cc21b5b7a3d8deb18fc57b0aa2ab1286962. This patch adds the necessary lock_sock and release_sock calls around the socket option retrieval code to prevent race conditions. The fix is available in the official Linux kernel repository and has been backported to various distribution kernels.

For detailed patch information, refer to the Linux Kernel Commit.

Workarounds

  • Restrict local user access on affected systems to reduce the attack surface
  • Consider disabling kernel TLS (kTLS) if not required by applications, reverting to userspace TLS implementations
  • Implement container isolation and seccomp filters to limit socket system call access for untrusted workloads
bash
# Check current kernel version
uname -r

# Verify if kTLS module is loaded
lsmod | grep tls

# To disable kTLS (if not required by applications)
modprobe -r tls
echo "blacklist tls" >> /etc/modprobe.d/blacklist.conf

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

  • SeverityHIGH

  • CVSS Score7.0

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-476
  • Technical References
  • Debian LTS Announcement

  • NetApp Security Advisory
  • Vendor Resources
  • Linux Kernel Commit Notification
  • Related CVEs
  • CVE-2026-23440: Linux Kernel Race Condition Vulnerability

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

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

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