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

CVE-2026-23370: Linux Kernel Information Disclosure Flaw

CVE-2026-23370 is an information disclosure vulnerability in the Linux kernel's dell-wmi-sysman module that exposes plaintext passwords through hex dumps. This article covers technical details, impact, and mitigations.

Published: March 27, 2026

CVE-2026-23370 Overview

CVE-2026-23370 is an information disclosure vulnerability in the Linux kernel's Dell WMI Sysman driver (dell-wmi-sysman). The vulnerability exists in the set_new_password() function, which performs a hex dump of the entire buffer containing plaintext password data. This behavior inadvertently exposes sensitive credentials, including both current and new passwords, potentially allowing local attackers to harvest authentication credentials from system logs or debug output.

Critical Impact

Plaintext passwords including current and new credentials may be exposed through kernel debug output, enabling credential theft and unauthorized system access on Dell systems.

Affected Products

  • Linux kernel with Dell WMI Sysman driver (platform/x86: dell-wmi-sysman)
  • Dell systems utilizing WMI-based system management interfaces
  • Linux distributions running affected kernel versions on Dell hardware

Discovery Timeline

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

Technical Details for CVE-2026-23370

Vulnerability Analysis

This vulnerability falls under the Information Disclosure category, specifically affecting how the Dell WMI Sysman driver handles sensitive credential data during password change operations. The set_new_password() function in the dell-wmi-sysman driver was designed to facilitate BIOS and system password management through WMI (Windows Management Instrumentation) interfaces on Dell hardware running Linux.

The problematic behavior occurs when the function performs diagnostic hex dumps of data buffers that contain plaintext passwords. This debugging mechanism, while useful during development, creates a significant security risk in production environments. When a user or administrator changes their system password, both the current password and the new password are temporarily stored in a buffer that gets dumped in hexadecimal format.

Root Cause

The root cause is improper handling of sensitive data in the Dell WMI Sysman driver's password management routines. The set_new_password() function included debug logging that performed a complete hex dump of the password buffer without sanitizing or masking the sensitive credential data. This represents a violation of secure coding practices that mandate sensitive information such as passwords should never be written to logs, debug output, or any other persistent storage in plaintext or easily reversible formats.

Attack Vector

The attack vector for this vulnerability is local, requiring an attacker to have access to kernel log output, debug messages, or system logging facilities on an affected Dell system. An attacker with local access could monitor kernel messages via dmesg, system logs in /var/log/, or other logging facilities to capture the hex-dumped password data. Once captured, the hexadecimal data can be trivially converted back to the original plaintext passwords.

Exploitation scenarios include:

  • A malicious local user monitoring kernel debug output during password change operations
  • An attacker with access to system logs harvesting historically stored password dumps
  • Privilege escalation through captured administrative credentials

The vulnerability does not require any special privileges beyond read access to kernel logs or debug output, making it accessible to lower-privileged local attackers on multi-user systems.

Detection Methods for CVE-2026-23370

Indicators of Compromise

  • Unexpected hex dump entries in kernel logs (dmesg) related to dell-wmi-sysman operations
  • Suspicious access patterns to /var/log/kern.log or similar kernel log files
  • Evidence of password buffer content in system debugging output
  • Unusual user activity involving repeated access to kernel message buffers

Detection Strategies

  • Monitor access to kernel log files for unauthorized users attempting to read dmesg output
  • Implement audit logging on kernel log file access using auditd rules
  • Review system logs for hex dump patterns that may indicate password exposure
  • Deploy endpoint detection to identify credential harvesting behavior from log files

Monitoring Recommendations

  • Enable enhanced logging on Dell systems to track password change operations
  • Configure alerts for unusual kernel log access patterns
  • Implement log rotation and secure deletion to minimize exposure window
  • Use SentinelOne Singularity to monitor for suspicious local file access patterns targeting kernel logs

How to Mitigate CVE-2026-23370

Immediate Actions Required

  • Update the Linux kernel to a patched version that removes the hex dump from set_new_password()
  • Review kernel logs for any existing password exposure and rotate potentially compromised credentials
  • Restrict access to kernel debug output and system logs to authorized administrators only
  • Consider temporarily disabling Dell WMI Sysman functionality if password changes are not required

Patch Information

The Linux kernel maintainers have addressed this vulnerability by removing the hex dump functionality from the set_new_password() function. Multiple kernel commits have been released to fix this issue across different stable kernel branches:

  • Kernel Commit 0e6115c2f2fa
  • Kernel Commit 411ba3cd837f
  • Kernel Commit 5de34126fb2e
  • Kernel Commit d1a196e0a6dc
  • Kernel Commit d78e74adc5cf
  • Kernel Commit d9e785bd62d2

System administrators should apply the appropriate patch for their kernel version or upgrade to a kernel release containing the fix.

Workarounds

  • Restrict read access to /var/log/kern.log and similar kernel log files to root only
  • Disable the dell-wmi-sysman module if not required using modprobe -r dell-wmi-sysman
  • Implement strict auditd rules to monitor and alert on kernel log access
  • Clear existing kernel logs that may contain exposed password data after securing the system
bash
# Configuration example
# Restrict kernel log access permissions
chmod 600 /var/log/kern.log
chmod 600 /var/log/dmesg

# Disable dell-wmi-sysman module if not needed
echo "blacklist dell-wmi-sysman" >> /etc/modprobe.d/blacklist-dell.conf
modprobe -r dell-wmi-sysman

# Add audit rule to monitor kernel log access
auditctl -w /var/log/kern.log -p r -k kernel_log_access

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Commit Changes

  • Kernel Commit Changes

  • Kernel Commit Changes

  • Kernel Commit Changes

  • Kernel Commit Changes

  • Kernel Commit Changes
  • Related CVEs
  • CVE-2026-23303: Linux Kernel Information Disclosure Flaw

  • CVE-2026-23384: Linux Kernel Information Disclosure Flaw

  • CVE-2026-23335: Linux Kernel Information Disclosure Bug

  • CVE-2026-23289: Linux Kernel Information Disclosure Flaw
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