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

CVE-2026-43357: Linux Kernel Privilege Escalation Flaw

CVE-2026-43357 is a privilege escalation vulnerability in the Linux Kernel's MPU3050 gyro driver that allows improper power management handling. This post covers technical details, affected versions, and mitigation steps.

Published: May 18, 2026

CVE-2026-43357 Overview

CVE-2026-43357 is a Linux kernel vulnerability in the iio: gyro: mpu3050-core driver. The driver fails to check the return value of pm_runtime_get_sync(), allowing access to hardware that may have failed to resume. The device usage count is also unconditionally incremented, which can corrupt power management state and lead to instability. The fix replaces the call with pm_runtime_resume_and_get(), which propagates errors correctly and avoids incrementing the usage count on failure. The preenable path also adds pm_runtime_put_autosuspend() on set_8khz_samplerate() failure, since postdisable does not run when preenable fails.

Critical Impact

A local, low-privileged user interacting with the MPU3050 gyroscope driver can trigger driver misbehavior or kernel-level denial of service through unchecked PM runtime resume failures.

Affected Products

  • Linux Kernel (multiple stable branches prior to the fix)
  • Linux Kernel 7.0-rc1
  • Linux Kernel 7.0-rc2 and 7.0-rc3

Discovery Timeline

  • 2026-05-08 - CVE-2026-43357 published to NVD
  • 2026-05-15 - Last updated in NVD database

Technical Details for CVE-2026-43357

Vulnerability Analysis

The defect resides in the Industrial I/O (IIO) subsystem driver mpu3050-core, which manages the InvenSense MPU-3050 gyroscope. The driver invokes pm_runtime_get_sync() to resume the device but never inspects the return value. When runtime resume fails, the hardware remains unready while the driver proceeds to perform register accesses against it.

A further side effect is that pm_runtime_get_sync() increments the device usage counter regardless of resume success. The counter therefore drifts upward on every failed resume, leaving the device pinned in an inconsistent power state. This can prevent autosuspend from ever taking effect and produces cascading PM reference imbalances.

The preenable callback compounds the issue. If set_8khz_samplerate() fails after a successful resume, the driver returns without releasing the runtime PM reference, because postdisable only executes when preenable succeeds. The result is a leaked reference per failed buffer enable.

Root Cause

The root cause is improper error handling around runtime power management [CWE-NVD-noinfo]. Specifically, the driver assumes pm_runtime_get_sync() always succeeds and treats its semantics as if usage-count increment were conditional on success. Neither assumption holds, and the absence of a paired pm_runtime_put*() on the early-exit error path completes the leak.

Attack Vector

Exploitation requires local access with permission to open the IIO character device exposed by the mpu3050 driver, typically /dev/iio:deviceN or sysfs buffer enable nodes. An attacker repeatedly triggers buffer enable and disable operations or induces transient runtime resume failures to corrupt PM reference counts. The outcome is high-availability impact through kernel resource exhaustion or device lockout, with no confidentiality or integrity exposure.

The vulnerability is described in prose only; no public proof-of-concept exploit is available. Refer to the upstream commits linked in the Kernel Git Commit 7a3dec5 for the authoritative patch details.

Detection Methods for CVE-2026-43357

Indicators of Compromise

  • Kernel log entries from the mpu3050 driver indicating sample-rate configuration failures or repeated buffer enable errors.
  • Runtime PM usage counters for the MPU-3050 device that never decrement to zero, observable through /sys/devices/.../power/runtime_usage.
  • Unexplained device unavailability or stalled I/O against /dev/iio:deviceN nodes bound to the MPU-3050.

Detection Strategies

  • Inventory kernel versions across Linux endpoints and flag hosts running unpatched stable branches identified in the NVD CPE list.
  • Monitor dmesg for mpu3050 driver errors paired with PM resume failures.
  • Audit IIO subsystem usage on systems that expose gyroscope hardware, including embedded and mobile-class Linux devices.

Monitoring Recommendations

  • Collect kernel ring-buffer telemetry and forward it to a centralized analytics pipeline for correlation with package versions.
  • Track runtime PM statistics on devices using the MPU-3050 to detect reference-count drift over time.
  • Alert on repeated user-space failures opening or enabling IIO buffers tied to the affected driver.

How to Mitigate CVE-2026-43357

Immediate Actions Required

  • Apply the upstream stable kernel patches referenced below to all affected Linux systems.
  • Restrict access to IIO device nodes so that only trusted user-space services can open /dev/iio:device* paths.
  • Where the MPU-3050 driver is not required, unload the mpu3050 module or disable it in the kernel configuration.

Patch Information

The issue is fixed by replacing pm_runtime_get_sync() with pm_runtime_resume_and_get() and adding pm_runtime_put_autosuspend() in the preenable error path. Patches are available in the following upstream commits: Kernel Git Commit 2a86a39, Kernel Git Commit 35f54e7, Kernel Git Commit 42685cf, Kernel Git Commit 66c0d1d, Kernel Git Commit 7a3dec5, Kernel Git Commit 8544c48, Kernel Git Commit 935f57d, and Kernel Git Commit acc3949a.

Workarounds

  • Blacklist the mpu3050 kernel module on systems that do not require gyroscope telemetry.
  • Apply strict file-system permissions and udev rules to limit access to IIO device nodes to specific service accounts.
  • Reduce the frequency of buffer enable and disable cycles in user-space applications until patched kernels are deployed.
bash
# Blacklist the affected driver until kernel patches are applied
echo "blacklist mpu3050" | sudo tee /etc/modprobe.d/blacklist-mpu3050.conf
sudo modprobe -r mpu3050 || true

# Restrict access to IIO device nodes via udev
cat <<'EOF' | sudo tee /etc/udev/rules.d/90-iio-restrict.rules
KERNEL=="iio:device*", MODE="0600", OWNER="root", GROUP="root"
EOF
sudo udevadm control --reload && sudo udevadm trigger

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

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.01%

  • 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
  • NVD-CWE-noinfo
  • Vendor Resources
  • Kernel Git Commit 2a86a39

  • Kernel Git Commit 35f54e7

  • Kernel Git Commit 42685cf

  • Kernel Git Commit 66c0d1d

  • Kernel Git Commit 7a3dec5

  • Kernel Git Commit 8544c48

  • Kernel Git Commit 935f57d

  • Kernel Git Commit acc3949a
  • Related CVEs
  • CVE-2026-46333: Linux Kernel Privilege Escalation Flaw

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

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

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