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

CVE-2026-43491: Linux Kernel QRTR NS DoS Vulnerability

CVE-2026-43491 is a denial of service vulnerability in the Linux kernel QRTR namespace that allows memory exhaustion via flooding. This post explains its technical details, affected versions, impact, and mitigation steps.

Published: May 21, 2026

CVE-2026-43491 Overview

CVE-2026-43491 is a Linux kernel vulnerability in the Qualcomm IPC Router (QRTR) name service. The flaw resides in net/qrtr/ns.c, which previously performed no bound checking on the number of servers a single node could register. A malicious client can flood NEW_SERVER control messages and exhaust kernel memory. The upstream fix limits server registrations to 256 per node and rate-limits error messages in the qrtr_ns_worker() failure path.

Critical Impact

A local attacker with access to the QRTR socket interface can trigger kernel memory exhaustion, leading to denial of service on affected Linux systems.

Affected Products

  • Linux kernel versions containing the QRTR name service implementation prior to the fix commits
  • Systems using Qualcomm IPC Router networking (commonly Qualcomm-based platforms)
  • Distributions shipping vulnerable stable kernel branches

Discovery Timeline

  • 2026-05-19 - CVE-2026-43491 published to NVD
  • 2026-05-19 - Last updated in NVD database

Technical Details for CVE-2026-43491

Vulnerability Analysis

The QRTR subsystem implements a name service that tracks servers registered by nodes on the Qualcomm IPC Router network. When a client sends a NEW_SERVER control message, the name service allocates a server entry and links it to the originating node. The pre-patch implementation did not constrain how many distinct server entries a single node could accumulate.

An attacker who can transmit QRTR control messages can repeatedly issue NEW_SERVER requests with varying port identifiers. Each request causes a fresh kernel allocation. Sustained flooding drives the kernel toward out-of-memory conditions and can stall the qrtr_ns_worker() workqueue with repeated error logging.

The fix introduces a hard cap of 256 server registrations per node. Re-registration against an existing port is permitted because the entry is replaced rather than added. Error messages emitted by qrtr_ns_worker() are now rate-limited to prevent log amplification.

Root Cause

The root cause is missing input validation on resource allocation, classifiable as a resource exhaustion flaw. The name service trusted client-supplied registration counts without enforcing per-node quotas. This allowed unbounded growth of the internal server list and associated kernel allocations.

Attack Vector

Exploitation requires the ability to send QRTR control messages to the kernel name service. On systems exposing QRTR sockets to unprivileged users or to remote nodes over the IPC router fabric, a malicious process can iterate through port numbers and emit NEW_SERVER messages in a tight loop. No authentication or capability check is performed beyond standard socket access. The vulnerability manifests in the server registration handler in net/qrtr/ns.c. See the upstream commits referenced below for the precise code changes.

Detection Methods for CVE-2026-43491

Indicators of Compromise

  • Rapid growth in kernel slab allocations attributable to QRTR data structures
  • High volume of QRTR NEW_SERVER control messages originating from a single process or node
  • Repeated error messages emitted by qrtr_ns_worker() in kernel logs prior to the rate-limiting patch
  • Out-of-memory killer activity on systems with active QRTR workloads

Detection Strategies

  • Monitor /proc/slabinfo and kernel memory counters for abnormal QRTR-related growth
  • Audit processes opening AF_QIPCRTR sockets and correlate with NEW_SERVER message volume
  • Alert on kernel log floods containing qrtr_ns_worker error strings
  • Track per-node server counts where QRTR introspection tooling is available

Monitoring Recommendations

  • Forward kernel logs to a centralized analytics platform and build alerts on QRTR error patterns
  • Establish baselines for QRTR control message rates on Qualcomm-based fleets
  • Track kernel version inventory to identify hosts still running unpatched stable branches

How to Mitigate CVE-2026-43491

Immediate Actions Required

  • Apply the stable kernel updates containing the QRTR name service patch from your distribution vendor
  • Restrict access to AF_QIPCRTR sockets to trusted processes through namespace isolation or seccomp policy
  • Identify and audit all systems that load the qrtr and qrtr-ns kernel modules
  • Monitor kernel memory and log volume on Qualcomm-based platforms until patching is complete

Patch Information

The fix is committed upstream in the Linux stable tree. Relevant commits include Kernel Git Commit 35fb4a0, Kernel Git Commit 3efaad5, Kernel Git Commit 868202a, Kernel Git Commit d5ee2ff, and Kernel Git Commit e6f6cd5. The patch caps server registrations at 256 per node and rate-limits worker error messages.

Workarounds

  • Unload the qrtr kernel module on systems that do not require Qualcomm IPC Router functionality
  • Apply seccomp filters or LSM policy to block AF_QIPCRTR socket creation for untrusted workloads
  • Reduce QRTR exposure by isolating Qualcomm-based devices on dedicated network segments
bash
# Configuration example: block QRTR socket family for untrusted services
# Verify whether qrtr is loaded
lsmod | grep qrtr

# Prevent automatic loading where not required
echo 'blacklist qrtr' | sudo tee /etc/modprobe.d/blacklist-qrtr.conf
echo 'blacklist qrtr-ns' | sudo tee -a /etc/modprobe.d/blacklist-qrtr.conf

# Confirm kernel version after patching
uname -r

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

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Git Commit 3efaad5

  • Kernel Git Commit 868202a

  • Kernel Git Commit d5ee2ff

  • Kernel Git Commit e6f6cd5
  • Related CVEs
  • CVE-2026-43492: Linux Kernel MPI Integer Underflow DoS

  • CVE-2026-43329: Linux Kernel Netfilter DoS Vulnerability

  • CVE-2026-43331: Linux Kernel DOS Vulnerability

  • CVE-2026-43338: Linux Kernel DOS Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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