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
    • 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-23323

CVE-2026-23323: Linux Kernel Buffer Overflow Vulnerability

CVE-2026-23323 is a buffer overflow vulnerability in the Linux kernel's Apple Silicon SMC hwmon driver that causes out-of-bounds memory access. This article covers technical details, affected versions, impact, and mitigation.

Published: March 27, 2026

CVE-2026-23323 Overview

A vulnerability has been resolved in the Linux kernel affecting the macsmc-hwmon driver for Apple Silicon System Management Controller (SMC) hardware monitoring. The driver contained critical bugs in its sensor population logic and float conversion routines that could lead to out-of-bounds memory access, data corruption, and incorrect values being written to the SMC.

Critical Impact

Local attackers with access to the hwmon interface could trigger out-of-bounds memory access or data corruption, potentially affecting system stability and hardware control on Apple Silicon devices.

Affected Products

  • Linux Kernel with macsmc-hwmon driver enabled
  • Apple Silicon Mac systems running affected kernel versions
  • Systems utilizing hwmon temperature and voltage sensor interfaces

Discovery Timeline

  • 2026-03-25 - CVE CVE-2026-23323 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-23323

Vulnerability Analysis

The macsmc-hwmon driver, responsible for hardware monitoring on Apple Silicon Macs, contained multiple implementation flaws that created potential memory safety issues. The primary vulnerability exists in the voltage sensor population loop, which used an incorrect prefix string ("volt-" instead of "voltage-") when identifying sensors. More critically, the code incorrectly assigned voltage sensors to the temperature sensor array (hwmon->temp.sensors) rather than the proper voltage sensor array (hwmon->volt.sensors).

This array confusion creates a condition where out-of-bounds memory access or data corruption can occur when both temperature and voltage sensors are present on the system. The incorrect array indexing could cause sensors to be written beyond allocated buffer boundaries or overwrite adjacent memory structures.

Additionally, the macsmc_hwmon_write_f32() function contained flawed exponent logic for handling floating-point values greater than or equal to 2^24. The function also lacked proper masking for the mantissa portion of the floating-point representation, which could result in incorrect values being written to the SMC hardware.

Root Cause

The root cause is a coding error in the sensor enumeration logic where voltage sensors were mistakenly assigned to the temperature sensor array. Combined with insufficient input validation in the float conversion routine, this created conditions for memory corruption and incorrect hardware control values.

Attack Vector

An attacker with local access to the hwmon interface could potentially exploit these flaws by:

  1. Triggering sensor enumeration that causes voltage sensors to corrupt the temperature sensor array
  2. Manipulating values written through the flawed float conversion routine to write incorrect data to the SMC
  3. Leveraging the out-of-bounds access to corrupt adjacent kernel memory structures

The vulnerability requires local access and the macsmc-hwmon driver to be loaded, limiting the attack surface to Apple Silicon systems with affected kernel versions.

Detection Methods for CVE-2026-23323

Indicators of Compromise

  • Unexpected kernel warnings or errors related to hwmon sensor registration on Apple Silicon systems
  • Anomalous behavior in fan control or temperature reporting on affected Macs
  • Kernel log entries indicating FIELD_PREP overflow errors in the macsmc module

Detection Strategies

  • Monitor kernel logs for warnings or errors mentioning macsmc-hwmon, macsmc_hwmon_write_f32, or sensor registration failures
  • Implement kernel module integrity monitoring to detect unauthorized modifications to hwmon drivers
  • Review system stability reports for crashes or unexpected behavior related to hardware monitoring subsystems

Monitoring Recommendations

  • Enable detailed kernel logging for the hwmon subsystem on Apple Silicon deployments
  • Deploy endpoint detection solutions capable of monitoring kernel module behavior and memory access patterns
  • Establish baseline behavior for SMC interactions to identify anomalous write operations

How to Mitigate CVE-2026-23323

Immediate Actions Required

  • Update to a patched Linux kernel version containing the fix for CVE-2026-23323
  • Review deployed Apple Silicon systems running Linux to identify vulnerable kernel versions
  • Consider temporarily disabling manual fan control features until patching is complete
  • Monitor affected systems for stability issues that may indicate exploitation attempts

Patch Information

The vulnerability has been resolved in the Linux kernel through commits that fix the sensor array assignment logic and correct the float conversion routines. The fix ensures voltage sensors are properly assigned to hwmon->volt.sensors and corrects the exponent and mantissa handling in macsmc_hwmon_write_f32(). Additionally, the function is declared as __always_inline to resolve the FIELD_PREP overflow issue.

Patches are available through the following kernel git commits:

  • Kernel Git Commit 5dd69b86
  • Kernel Git Commit 625ef35b

Workarounds

  • Disable the macsmc-hwmon module on affected systems if the functionality is not required: modprobe -r macsmc-hwmon
  • Restrict access to the hwmon sysfs interface by adjusting file permissions to limit exposure to local users
  • Avoid using manual fan control features until the kernel is updated to a patched version

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
  • Kernel Git Commit Report

  • Kernel Git Commit Report
  • Related CVEs
  • CVE-2026-23397: Linux Kernel Buffer Overflow Vulnerability

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

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

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