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

CVE-2026-43492: Linux Kernel MPI Integer Underflow DoS

CVE-2026-43492 is a denial of service vulnerability in the Linux kernel's MPI library caused by an integer underflow in mpi_read_raw_from_sgl(). This post covers the technical details, affected versions, and mitigation.

Published: May 21, 2026

CVE-2026-43492 Overview

CVE-2026-43492 is an integer underflow vulnerability in the Linux kernel's Multi-Precision Integer (MPI) cryptographic helper mpi_read_raw_from_sgl() located in lib/crypto/mpi. The flaw occurs when the function subtracts a leading-zero counter (lzeros) from the unsigned nbytes parameter while iterating over a scatterlist. When the scatterlist contains more zero bytes than nbytes, the subtraction wraps around, producing a massive unsigned value that drives the kernel into an effectively infinite loop. Reachable from userland through the KEYCTL_PKEY_ENCRYPT keyctl operation, the bug allows an unprivileged local user to trigger a denial of service through soft lockups.

Critical Impact

An unprivileged local user can invoke keyctl(KEYCTL_PKEY_ENCRYPT) with crafted parameters to spin the kernel indefinitely, producing soft lockup splats and a system-wide denial of service.

Affected Products

  • Linux kernel versions containing commit 2d4d1eea540b ("lib/mpi: Add mpi sgl helpers") that also include commit 63ba4d67594a ("KEYS: asymmetric: Use new crypto interface without scatterlists")
  • Linux distributions shipping vulnerable stable and longterm kernel branches prior to the upstream fix
  • Systems with the asymmetric keys subsystem and RSA support enabled in the kernel configuration

Discovery Timeline

  • 2026-05-19 - CVE-2026-43492 published to the National Vulnerability Database (NVD)
  • 2026-05-19 - Last updated in NVD database

Technical Details for CVE-2026-43492

Vulnerability Analysis

The defect lives in mpi_read_raw_from_sgl(), a helper in lib/crypto/mpi that converts a scatter-gather list into a multi-precision integer. The function walks the scatterlist counting leading zero bytes (lzeros) and then subtracts that count from the caller-supplied nbytes length. The subtraction is performed on an unsigned type.

When the scatterlist holds more bytes than nbytes and the first nbytes + 1 bytes are all zero, the loop counts more zeroes than nbytes. The subtraction nbytes - lzeros then underflows to a value near SIZE_MAX. Subsequent allocation and copy logic uses this huge value, and the kernel becomes stuck processing the bogus length, producing soft lockup warnings.

Root Cause

The root cause is missing bounds enforcement between the scatterlist length and the nbytes argument. The original commit 2d4d1eea540b ("lib/mpi: Add mpi sgl helpers") assumed all callers would pass a scatterlist whose length matched nbytes. Commit 63ba4d67594a ("KEYS: asymmetric: Use new crypto interface without scatterlists") broke that assumption by routing requests through crypto_akcipher_sync_prep(), which constructs an oversized all-zero scatterlist when out_len > in_len. This is a classic integer underflow [CWE-191] caused by trusting an externally influenced count in unsigned arithmetic.

Attack Vector

A local unprivileged process invokes the keyctl(KEYCTL_PKEY_ENCRYPT) system call against an asymmetric key, supplying an out_len larger than in_len and filling the input buffer with zero bytes. The call chain sys_keyctl() → keyctl_pkey_e_d_s() → asymmetric_key_eds_op() → software_key_eds_op() → crypto_akcipher_sync_encrypt() → crypto_akcipher_sync_prep() → crypto_akcipher_encrypt() → rsa_enc() → mpi_read_raw_from_sgl() reaches the vulnerable subtraction. The kernel then loops on the underflowed length, hanging the CPU and emitting soft lockup splats. No special privileges or capabilities are required beyond access to the keyctl interface.

No verified public proof-of-concept code is available. The reproduction recipe is documented in the upstream commit message and consists of issuing a KEYCTL_PKEY_ENCRYPT request against any RSA key with a zeroed oversized input buffer.

Detection Methods for CVE-2026-43492

Indicators of Compromise

  • Repeated kernel soft lockup or watchdog: BUG: soft lockup - CPU#N stuck messages in dmesg or /var/log/messages with stack traces referencing mpi_read_raw_from_sgl, rsa_enc, or crypto_akcipher_sync_prep.
  • Unresponsive CPU cores with one or more kernel threads pinned at 100% utilization while servicing a keyctl syscall from an unprivileged process.
  • Unexpected invocations of keyctl(KEYCTL_PKEY_ENCRYPT) from non-administrative users or workloads that do not normally exercise asymmetric key operations.

Detection Strategies

  • Audit keyctl syscalls using auditd rules on syscall=keyctl and alert when operation number 29 (KEYCTL_PKEY_ENCRYPT) is issued by unexpected UIDs.
  • Correlate kernel ring buffer soft lockup events with the calling process via perf or eBPF tracing on crypto_akcipher_encrypt and mpi_read_raw_from_sgl.
  • Track kernel build versions across the fleet and flag hosts running kernels that contain 63ba4d67594a but lack the fix commits.

Monitoring Recommendations

  • Forward dmesg and /var/log/kern.log to a centralized log pipeline and create alerts for soft lockup and RCU stall patterns referencing crypto symbols.
  • Monitor per-CPU utilization and run queue length for sustained saturation by kernel threads, a common symptom of this denial of service.
  • Track Linux kernel package versions through configuration management and verify that vulnerable builds are replaced with patched stable releases.

How to Mitigate CVE-2026-43492

Immediate Actions Required

  • Apply the upstream Linux kernel fixes referenced in commits 26d3a97, 2aa77a18, 30e513e7, 8637dfb4, and 8c2f1288 from kernel.org as soon as your distribution ships them.
  • Update to the latest stable kernel point release from your Linux distribution vendor and reboot affected hosts.
  • Inventory hosts that expose the keyctl asymmetric key interface to untrusted local users, including multi-tenant servers, container hosts, and shared developer systems.

Patch Information

The fix adds a bounds check so that lzeros cannot exceed nbytes, preventing the underflow. The patch is distributed across the following kernel.org stable commits: Kernel Git Commit 26d3a97, Kernel Git Commit 2aa77a18, Kernel Git Commit 30e513e7, Kernel Git Commit 8637dfb4, and Kernel Git Commit 8c2f1288. Consult your distribution's security advisories for the corresponding packaged kernel releases.

Workarounds

  • Restrict access to the keyctl asymmetric key operations using seccomp filters that block SYS_keyctl for untrusted workloads and containers.
  • Apply SELinux or AppArmor policies that deny the keyctl capability to non-administrative service accounts where asymmetric key usage is not required.
  • Where feasible, disable kernel configuration options CONFIG_ASYMMETRIC_KEY_TYPE and CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE on systems that do not require user-facing asymmetric key operations.
bash
# Verify the running kernel version and check for the fix
uname -r

# Example: block keyctl syscall in a seccomp-protected container (Docker)
docker run --security-opt seccomp=/etc/docker/seccomp-no-keyctl.json myimage

# Example auditd rule to log KEYCTL_PKEY_ENCRYPT invocations
echo '-a always,exit -F arch=b64 -S keyctl -F a0=29 -k keyctl_pkey_encrypt' \
  | sudo tee -a /etc/audit/rules.d/keyctl.rules
sudo augenrules --load

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 26d3a97

  • Kernel Git Commit 2aa77a18

  • Kernel Git Commit 30e513e7

  • Kernel Git Commit 8637dfb4

  • Kernel Git Commit 8c2f1288
  • Related CVEs
  • CVE-2026-43491: Linux Kernel QRTR NS DoS Vulnerability

  • 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