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

CVE-2026-43356: Linux Kernel Buffer Overflow Vulnerability

CVE-2026-43356 is a buffer overflow vulnerability in the Linux Kernel that causes NULL pointer dereference in the adis_init function. This article covers the technical details, affected versions, impact, and mitigation.

Published: May 18, 2026

CVE-2026-43356 Overview

CVE-2026-43356 is a NULL pointer dereference vulnerability in the Linux kernel's Industrial I/O (IIO) Inertial Measurement Unit (IMU) Analog Devices Inertial Sensor (ADIS) driver. The flaw resides in the adis_init() function, which dereferences adis->ops to check individual function pointers without first verifying that adis->ops itself is non-NULL. Drivers such as adis16480, adis16490, and adis16545 do not assign custom ops and rely on adis_init() to populate defaults, triggering a kernel crash during probe. Successful triggering causes a denial of service through kernel oops.

Critical Impact

A local low-privileged user loading or probing affected ADIS IMU drivers can trigger a kernel NULL pointer dereference, leading to denial of service through a kernel crash [CWE-476].

Affected Products

  • Linux Kernel 7.0-rc1
  • Linux Kernel 7.0-rc2
  • Linux Kernel 7.0-rc3

Discovery Timeline

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

Technical Details for CVE-2026-43356

Vulnerability Analysis

The vulnerability exists in the adis_init() function within drivers/iio/imu/adis.c. The function attempts to validate caller-supplied operations by accessing adis->ops->write, adis->ops->read, and adis->ops->reset. The check assumes adis->ops is a valid pointer, but the calling driver may leave it unset.

Several ADIS-family drivers, including adis16480, adis16490, and adis16545, do not provide a custom ops structure. They depend on adis_init() substituting default operations. Because struct adis is zero-initialized through devm_iio_device_alloc(), the ops pointer is NULL when adis_init() runs.

Dereferencing the NULL pointer produces a kernel oops with the call trace adis_init+0xc0/0x118 invoked from adis16480_probe+0xe0/0x670. The result is a kernel-side denial of service affecting availability of the system using the driver.

Root Cause

The root cause is missing NULL validation on a structure pointer before member access. The defensive logic intended to fall back to default operations executes the fallback path only after dereferencing adis->ops, inverting the required order of checks [CWE-476].

Attack Vector

Exploitation requires local access and the ability to load or probe an affected ADIS IIO driver. The condition triggers automatically during device probe on systems with the affected hardware, or when a privileged user triggers driver loading. The impact is limited to availability — confidentiality and integrity are not affected.

No synthetic exploitation code is provided. Refer to the upstream commits in the vendor advisory references for the exact code path.

Detection Methods for CVE-2026-43356

Indicators of Compromise

  • Kernel oops messages referencing adis_init+0xc0/0x118 in dmesg or /var/log/kern.log.
  • Call traces showing adis16480_probe, adis16490_probe, or adis16545_probe immediately preceding the fault.
  • Unexpected device probe failures or boot-time kernel panics on systems using Analog Devices ADIS IMU hardware.

Detection Strategies

  • Inventory Linux hosts running kernel versions 7.0-rc1 through 7.0-rc3 and identify any using the iio_imu_adis module family.
  • Monitor kernel ring buffer output for NULL pointer dereference at virtual address 0000000000000000 paired with the adis_init symbol.
  • Correlate driver load events with subsequent kernel fault signatures in centralized logging.

Monitoring Recommendations

  • Forward kmsg and journald kernel facility entries to a centralized SIEM for fault-signature alerting.
  • Track modprobe and insmod events for adis* modules and flag those followed by kernel oops messages.
  • Maintain crash dump collection (kdump) on systems running affected release-candidate kernels to capture forensic state if a panic occurs.

How to Mitigate CVE-2026-43356

Immediate Actions Required

  • Upgrade the Linux kernel to a stable release containing the upstream fix referenced in the kernel.org commits.
  • Avoid deploying release-candidate kernels (7.0-rc1 through 7.0-rc3) on production systems using Analog Devices ADIS IMU hardware.
  • Blacklist the affected adis* modules on systems that do not require them until patches are applied.

Patch Information

The fix adds a NULL check on adis->ops before dereferencing the structure, allowing the function to fall through to default operation assignment when no custom ops are supplied. The patch is available in the following upstream commits: Kernel commit 1a48f94c, Kernel commit 9990cd4f, and Kernel commit ba19dd36.

Workarounds

  • Prevent automatic loading of the affected drivers by adding blacklist adis16480, blacklist adis16490, and blacklist adis16545 to /etc/modprobe.d/.
  • Restrict module loading privileges by setting kernel.modules_disabled=1 after boot on systems that do not require runtime module loading.
  • Roll back to a stable kernel branch unaffected by the regression until the patch lands in your distribution.
bash
# Blacklist affected ADIS IMU modules until patched kernel is deployed
echo "blacklist adis16480" | sudo tee /etc/modprobe.d/cve-2026-43356.conf
echo "blacklist adis16490" | sudo tee -a /etc/modprobe.d/cve-2026-43356.conf
echo "blacklist adis16545" | sudo tee -a /etc/modprobe.d/cve-2026-43356.conf
sudo update-initramfs -u

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

  • 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
  • CWE-476
  • Vendor Resources
  • Kernel Git Commit Changes

  • Kernel Git Commit Changes

  • Kernel Git Commit Changes
  • Related CVEs
  • CVE-2026-43330: Linux Kernel Buffer Overflow Vulnerability

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

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

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