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
    • 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-2021-23133

CVE-2021-23133: Linux Kernel Privilege Escalation Flaw

CVE-2021-23133 is a race condition privilege escalation vulnerability in Linux kernel SCTP sockets that allows attackers to gain root access. This article covers the technical details, affected versions, and mitigation.

Published: February 25, 2026

CVE-2021-23133 Overview

A race condition vulnerability exists in the Linux kernel's SCTP (Stream Control Transmission Protocol) socket implementation, specifically in the net/sctp/socket.c file. This vulnerability affects Linux kernel versions before 5.12-rc8 and can lead to kernel privilege escalation from the context of a network service or an unprivileged process.

The flaw occurs when sctp_destroy_sock is called without holding the sock_net(sk)->sctp.addr_wq_lock lock, resulting in an element being removed from the auto_asconf_splist list without proper synchronization. This race condition can be exploited by an attacker with network service privileges to escalate to root, or directly from an unprivileged user context if a BPF_CGROUP_INET_SOCK_CREATE cgroup is attached that denies creation of certain SCTP sockets.

Critical Impact

Successful exploitation allows local attackers to escalate privileges to root, potentially gaining complete control over the affected system through kernel-level access.

Affected Products

  • Linux Kernel (versions before 5.12-rc8)
  • Fedora 32, 33, and 34
  • Debian Linux 9.0
  • NetApp Cloud Backup
  • NetApp SolidFire & HCI Management Node
  • Broadcom Brocade Fabric Operating System
  • NetApp H-Series Storage Systems (H300S, H500S, H700S, H300E, H500E, H700E, H410S, H410C)
  • NetApp SolidFire Baseboard Management Controller

Discovery Timeline

  • April 22, 2021 - CVE-2021-23133 published to NVD
  • November 21, 2024 - Last updated in NVD database

Technical Details for CVE-2021-23133

Vulnerability Analysis

This vulnerability is classified as CWE-362 (Race Condition), a type of concurrency flaw where the system's behavior depends on the timing of uncontrollable events. In this case, the race condition exists in the SCTP socket destruction path within the Linux kernel.

The vulnerability allows an attacker to exploit a Time-of-Check-Time-of-Use (TOCTOU) scenario in the kernel's SCTP subsystem. When SCTP sockets are destroyed, the kernel should hold the appropriate lock (addr_wq_lock) to ensure thread-safe removal of elements from the auto_asconf_splist linked list. However, due to missing lock acquisition, concurrent operations on this list can lead to memory corruption, use-after-free conditions, or other undefined behavior that can be leveraged for privilege escalation.

Root Cause

The root cause is improper synchronization in the sctp_destroy_sock function. When destroying an SCTP socket, the function fails to acquire the sock_net(sk)->sctp.addr_wq_lock before removing the socket from the auto_asconf_splist list. This missing lock allows concurrent access to the list, creating a race window that can be exploited.

The SCTP socket's automatic address configuration (auto_asconf) feature maintains a list of sockets that should receive updates when network addresses change. Without proper locking during socket destruction, the list structure can become corrupted when multiple threads attempt to modify it simultaneously.

Attack Vector

The attack requires local access to the system and leverages the following conditions:

  1. Network Service Context: An attacker with access to a network service running with elevated privileges can trigger the race condition to escalate to root privileges.

  2. Unprivileged User with BPF: Alternatively, if a BPF_CGROUP_INET_SOCK_CREATE program is attached that denies creation of certain SCTP sockets, an unprivileged user can directly exploit this vulnerability. The BPF program's denial creates a specific code path that exposes the race condition.

The attacker must carefully time the socket creation and destruction operations to win the race and corrupt kernel memory structures. This typically requires multiple attempts but is reliably achievable on multi-core systems.

Detection Methods for CVE-2021-23133

Indicators of Compromise

  • Unusual SCTP socket activity with rapid creation and destruction patterns
  • Kernel panic or crash logs referencing sctp_destroy_sock or auto_asconf_splist
  • Unexpected privilege escalation events from network services or unprivileged processes
  • Signs of BPF programs being loaded that interact with SCTP socket creation

Detection Strategies

  • Monitor for kernel oops or panics involving SCTP subsystem functions in /var/log/kern.log or dmesg output
  • Implement auditd rules to track SCTP socket operations and privilege changes
  • Deploy kernel integrity monitoring to detect unauthorized kernel memory modifications
  • Use SentinelOne's behavioral AI to identify suspicious privilege escalation patterns from network services

Monitoring Recommendations

  • Enable SCTP-related kernel tracepoints for detailed socket lifecycle monitoring
  • Configure alerting for processes that suddenly gain root privileges
  • Monitor for unusual patterns of socket system calls, particularly rapid socket() and close() sequences for SCTP
  • Track BPF program loading and attachment, especially those targeting INET socket creation

How to Mitigate CVE-2021-23133

Immediate Actions Required

  • Update the Linux kernel to version 5.12-rc8 or later immediately
  • Apply vendor-specific patches from distribution maintainers (Debian, Fedora, etc.)
  • Restrict access to SCTP socket creation using seccomp filters or AppArmor/SELinux policies
  • Limit BPF program loading capabilities to trusted administrators only
  • Audit and monitor systems for signs of exploitation attempts

Patch Information

The vulnerability has been addressed in the official Linux kernel through commit b166a20b07382b8bc1dcee2a448715c9c2c81b5b. This fix ensures proper lock acquisition in sctp_destroy_sock before manipulating the auto_asconf_splist list.

Distribution-specific patches are available:

  • Debian LTS Security Advisory
  • Fedora Package Announcements
  • NetApp Security Advisory ntap-20210611-0008

Workarounds

  • Disable SCTP protocol entirely if not required: modprobe -r sctp and blacklist the module
  • Use kernel lockdown mode to prevent loading of potentially vulnerable modules
  • Implement strict cgroup controls to limit socket creation capabilities
  • Deploy network segmentation to limit exposure of systems that require SCTP functionality
bash
# Disable SCTP module if not required
echo "blacklist sctp" >> /etc/modprobe.d/blacklist-sctp.conf
modprobe -r sctp

# Verify SCTP is disabled
lsmod | grep sctp

# Check current kernel version
uname -r

# For systems requiring SCTP, apply kernel updates
# Debian/Ubuntu
apt update && apt upgrade linux-image-$(uname -r)

# RHEL/CentOS/Fedora
dnf update kernel

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechLinux Kernel

  • SeverityHIGH

  • CVSS Score7.0

  • EPSS Probability0.09%

  • 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-362
  • Technical References
  • Fedora Package Announcement

  • Fedora Package Announcement

  • Fedora Package Announcement

  • NetApp Security Advisory ntap-20210611-0008
  • Vendor Resources
  • Openwall OSS Security Post 1

  • Openwall OSS Security Post 2

  • Openwall OSS Security Post 3

  • Openwall OSS Security Post 4

  • Linux Kernel Commit b166a20

  • Debian LTS Advisory June 2021

  • Debian LTS Advisory June 2021

  • Openwall OSS Security Post 2
  • Related CVEs
  • CVE-2026-23417: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-23402: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-23401: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-23409: Linux Kernel Privilege Escalation Flaw
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