A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-43476

CVE-2026-43476: Linux Kernel Buffer Overflow Vulnerability

CVE-2026-43476 is a buffer overflow flaw in the Linux kernel's IIO chemical sensor driver that affects memory buffer handling. This article covers technical details, affected versions, impact, and mitigation.

Published: May 17, 2026

CVE-2026-43476 Overview

CVE-2026-43476 is a Linux kernel vulnerability in the Industrial I/O (IIO) chemical sensor driver sps30_i2c. The flaw resides in the sps30_i2c_read_meas() function, where sizeof(num) evaluates to sizeof(size_t) (8 bytes on 64-bit systems) instead of the intended __be32 element size (4 bytes). This buffer size miscalculation causes the driver to read or process more data than allocated for the measurement buffer, producing incorrect sensor readings and potential out-of-bounds memory access. The fix replaces the incorrect expression with sizeof(*meas) to correctly match the buffer element type.

Critical Impact

Incorrect buffer sizing in the sps30 particulate matter sensor driver can cause out-of-bounds memory reads and incorrect sensor measurements on systems exposing this I2C device.

Affected Products

  • Linux kernel versions containing the iio/chemical/sps30_i2c driver prior to the patched commits
  • Distributions shipping vulnerable stable kernel branches referenced in the upstream fix series
  • Embedded and IoT systems using the Sensirion SPS30 particulate matter sensor over I2C

Discovery Timeline

  • 2026-05-13 - CVE-2026-43476 published to NVD
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-43476

Vulnerability Analysis

The vulnerability is a boundary condition error in the sps30_i2c_read_meas() function of the Linux kernel IIO chemical sensor subsystem. The driver retrieves measurement data from the Sensirion SPS30 sensor over the I2C bus and decodes the response into an array of big-endian 32-bit integers (__be32). The buffer length calculation used the wrong reference type, leading to a size computation that does not match the actual element width on 64-bit architectures.

On 64-bit systems, sizeof(num) resolves to 8 bytes because num is declared as size_t. The intended element size of __be32 is 4 bytes. This mismatch causes loops or memory operations driven by the size value to overshoot the buffer's true element width, resulting in misaligned reads and incorrect interpretation of sensor data.

Root Cause

The root cause is the use of sizeof(num) where num is a size_t variable rather than the target buffer element. The intent was to express the size of one __be32 element within the measurement buffer. The corrected code uses sizeof(*meas), which dereferences the buffer pointer and yields the element type's actual size. This pattern aligns with idiomatic kernel coding for size calculations tied to the buffer being processed.

Attack Vector

Exploitation requires access to a system with the sps30_i2c driver loaded and an attached or emulated SPS30 sensor on the I2C bus. The defect is primarily reachable by local processes interacting with the IIO sysfs or character device interfaces, or by malformed sensor responses on the I2C link. Network attack vectors are not applicable. The practical impact centers on data integrity of sensor measurements and possible out-of-bounds memory access within the kernel address space.

No verified public exploit code is available for this issue. The vulnerability is documented through upstream kernel commits referenced in the Linux Kernel Commit 165f12b4 and related stable backports.

Detection Methods for CVE-2026-43476

Indicators of Compromise

  • Anomalous or implausible particulate matter readings reported by IIO sysfs entries for the SPS30 device
  • Kernel log entries referencing sps30_i2c with measurement decoding errors or unexpected values
  • Crashes or KASAN reports implicating sps30_i2c_read_meas() on systems with the affected driver loaded

Detection Strategies

  • Inventory running kernel versions across endpoints and IoT assets and compare against the patched stable releases referenced in the upstream commits
  • Enable Kernel Address Sanitizer (KASAN) in test environments to surface out-of-bounds accesses in the IIO chemical sensor path
  • Audit loaded kernel modules with lsmod | grep sps30 to identify systems exposing the vulnerable driver

Monitoring Recommendations

  • Centralize kernel logs (dmesg, journalctl -k) and alert on warnings or oopses originating from IIO chemical drivers
  • Track kernel package versions through configuration management and flag hosts running pre-patch builds
  • Monitor changes to /sys/bus/iio/devices/ entries associated with the SPS30 sensor for unexpected readings or driver re-initialization

How to Mitigate CVE-2026-43476

Immediate Actions Required

  • Apply the upstream kernel patch series that replaces sizeof(num) with sizeof(*meas) in sps30_i2c_read_meas()
  • Update to a stable Linux kernel build that includes the referenced fix commits from kernel.org
  • Restrict local access to the IIO interface on hosts that cannot be patched immediately

Patch Information

The fix has been merged across multiple stable branches. Review and apply the upstream commits: Linux Kernel Commit 08881d82, Linux Kernel Commit 165f12b4, Linux Kernel Commit 216345f9, Linux Kernel Commit 2a4d111a, Linux Kernel Commit 90e978ac, Linux Kernel Commit 9aff2e9c, and Linux Kernel Commit dcdf1e92.

Workarounds

  • Unload the sps30_i2c module on systems that do not require SPS30 sensor functionality using modprobe -r sps30_i2c
  • Blacklist the driver in /etc/modprobe.d/ to prevent automatic loading until the kernel is patched
  • Restrict permissions on the corresponding /sys/bus/iio/devices/ paths to limit unprivileged interaction with the sensor
bash
# Blacklist the vulnerable driver until the kernel is patched
echo "blacklist sps30_i2c" | sudo tee /etc/modprobe.d/blacklist-sps30.conf
sudo modprobe -r sps30_i2c

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Linux Kernel Commit 08881d82

  • Linux Kernel Commit 165f12b4

  • Linux Kernel Commit 216345f9

  • Linux Kernel Commit 2a4d111a

  • Linux Kernel Commit 90e978ac

  • Linux Kernel Commit 9aff2e9c

  • Linux Kernel Commit dcdf1e92
  • Related CVEs
  • CVE-2026-46263: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-46260: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-46258: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-46237: Linux Kernel Buffer Overflow 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