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-2022-4269

CVE-2022-4269: Linux Kernel Traffic Control DoS Flaw

CVE-2022-4269 is a denial of service flaw in Linux Kernel Traffic Control that allows unprivileged users to trigger CPU soft lockup via TC action mirred. This article covers technical details, affected versions, and mitigations.

Published: February 17, 2026

CVE-2022-4269 Overview

A flaw was found in the Linux kernel Traffic Control (TC) subsystem that allows a local unprivileged user to trigger a CPU soft lockup condition. The vulnerability occurs when using a specific networking configuration that redirects egress packets to ingress using the TC action "mirred." When the transport protocol in use (TCP or SCTP) performs a retransmission under these conditions, an ABBA deadlock can occur, resulting in a denial of service condition.

Critical Impact

Local unprivileged users can cause complete system unresponsiveness through CPU soft lockup, impacting system availability and potentially requiring a hard reboot to recover.

Affected Products

  • Linux Kernel (versions from 4.1-rc1 and later)
  • linux linux_kernel
  • Debian-based distributions using affected kernel versions

Discovery Timeline

  • December 5, 2022 - CVE CVE-2022-4269 published to NVD
  • April 14, 2025 - Last updated in NVD database

Technical Details for CVE-2022-4269

Vulnerability Analysis

This vulnerability stems from an ABBA deadlock condition (CWE-833: Deadlock) in the Linux kernel's Traffic Control subsystem. The issue manifests when network traffic is configured to use the "mirred" TC action, which redirects egress packets back to ingress. This creates a circular packet flow that, under specific circumstances involving TCP or SCTP retransmissions, leads to a deadlock scenario.

The deadlock occurs because two locks are acquired in reverse order by different code paths. When a packet is redirected from egress to ingress while a retransmission is occurring, the system attempts to acquire locks in conflicting orders across different execution contexts, causing a classic ABBA deadlock pattern. This results in a CPU soft lockup that renders the affected system unresponsive.

Root Cause

The root cause is an improper lock ordering in the Traffic Control subsystem when handling packets that are redirected from egress to ingress via the mirred action. The vulnerability is classified as CWE-833 (Deadlock), indicating that the system can enter a state where two or more threads are blocked forever, each waiting for resources held by the other. The specific trigger requires the transport layer (TCP or SCTP) to perform retransmission while packets are being redirected through the mirred action.

Attack Vector

The attack vector is local, requiring the attacker to have local access to the system. An unprivileged user can exploit this vulnerability by:

  1. Configuring TC rules that redirect egress traffic to ingress using the mirred action
  2. Generating network traffic that triggers TCP or SCTP retransmissions under this configuration
  3. The combination of these conditions causes the kernel to enter a deadlock state, resulting in CPU soft lockup

The exploitation does not require elevated privileges, making it accessible to any local user with the ability to configure traffic control rules or generate network traffic on interfaces with such configurations already in place.

Detection Methods for CVE-2022-4269

Indicators of Compromise

  • Kernel log messages indicating CPU soft lockup conditions (BUG: soft lockup - CPU#X stuck for Xs!)
  • System unresponsiveness or hung processes related to network operations
  • Presence of TC rules using the mirred action redirecting egress to ingress (tc filter show and tc action show)

Detection Strategies

  • Monitor kernel logs for soft lockup warnings using tools like dmesg or journalctl
  • Audit Traffic Control configurations for mirred action rules that redirect egress to ingress
  • Deploy kernel-level monitoring to detect prolonged lock contention in networking subsystems
  • Use SentinelOne's real-time kernel monitoring capabilities to identify anomalous lock behavior

Monitoring Recommendations

  • Implement continuous monitoring of kernel log messages for soft lockup indicators
  • Set up alerts for unusual network configuration changes, particularly TC rule modifications
  • Monitor system load and CPU utilization for signs of lockup conditions
  • Review network traffic patterns for anomalous retransmission behavior on interfaces with mirred configurations

How to Mitigate CVE-2022-4269

Immediate Actions Required

  • Update the Linux kernel to a patched version that addresses the deadlock condition
  • Review and modify TC configurations to avoid redirecting egress packets to ingress using mirred action
  • Restrict access to Traffic Control configuration utilities for unprivileged users
  • Monitor affected systems for signs of exploitation while awaiting patch deployment

Patch Information

Patches have been released addressing this vulnerability. Administrators should consult their distribution's security advisories for specific patch information:

  • Debian Security Advisory DSA-5480
  • Debian LTS Announcement
  • NetApp Security Advisory

The fix involves correcting the lock ordering in the TC subsystem to prevent the ABBA deadlock scenario. Technical details of the patch discussion are available in the Kernel Mailing List Discussion.

Workarounds

  • Remove or modify TC rules that use the mirred action to redirect egress traffic to ingress
  • Restrict local user access to TC configuration commands using appropriate permission controls
  • Consider implementing network namespaces to isolate potentially vulnerable configurations
  • Apply kernel live patching solutions if available while planning for a full kernel update
bash
# Check for mirred rules redirecting egress to ingress
tc filter show dev <interface> egress | grep mirred
tc action show action mirred

# Remove problematic mirred rules if found (example)
tc filter del dev <interface> egress

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLinux Kernel

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.03%

  • 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
  • CWE-833
  • Technical References
  • Debian LTS Announcement

  • Kernel Mailing List Discussion

  • NetApp Security Advisory

  • Debian Security Advisory DSA-5480
  • Related CVEs
  • CVE-2026-31739: Linux Kernel Tegra Crypto DoS Vulnerability

  • CVE-2026-43054: Linux Kernel tcm_loop DOS Vulnerability

  • CVE-2026-31736: Linux Kernel MTK PPE DoS Vulnerability

  • CVE-2026-31727: Linux Kernel USB Gadget 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