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-2025-47276

CVE-2025-47276: Actualizer Weak Password Hashing Issue

CVE-2025-47276 is a weak password hashing vulnerability in Actualizer that uses SHA512 instead of secure algorithms like Argon2i, affecting Debian OS builds. This article covers technical details, affected versions, and remediation.

Published: May 4, 2026

CVE-2025-47276 Overview

CVE-2025-47276 affects Actualizer, a single shell script solution that lets developers and embedded engineers build Debian operating systems. Versions prior to 1.2.0 use OpenSSL's -passwd function, which generates SHA-512 password hashes instead of a modern memory-hard algorithm such as yescrypt or argon2i. Every Debian OS image produced by an affected Actualizer build inherits these weaker hashes for the root and alpha accounts. An attacker who obtains /etc/shadow from a deployed system can crack the hashes faster than against Debian's default yescrypt-protected accounts.

Critical Impact

Deployed Debian images contain weakly hashed credentials for root and alpha, enabling offline password cracking if /etc/shadow is exposed.

Affected Products

  • Actualizer versions prior to 1.2.0
  • Debian operating system images built using affected Actualizer releases
  • root and alpha user accounts on deployed systems

Discovery Timeline

  • 2025-05-13 - CVE-2025-47276 published to NVD
  • 2026-04-15 - Last updated in NVD database

Technical Details for CVE-2025-47276

Vulnerability Analysis

Actualizer automates Debian image creation through a shell script. During provisioning, it sets the initial passwords for the root and alpha accounts by calling OpenSSL's -passwd subcommand. OpenSSL's passwd utility supports only legacy algorithms, and Actualizer selected SHA-512 ($6$). SHA-512 is a fast, general-purpose hash without memory hardness or tunable cost suitable for password storage. Modern Debian releases default to yescrypt ($y$) in /etc/shadow, which is significantly more resistant to GPU and ASIC-accelerated cracking. The categorization aligns with [CWE-328: Use of Weak Hash].

Root Cause

The defect is a cryptographic algorithm choice rather than a code execution flaw. OpenSSL's passwd command intentionally lacks support for memory-hard schemes, as documented in the upstream OpenSSL discussion. By delegating password hashing to OpenSSL, Actualizer bypassed Debian's PAM-driven yescrypt configuration and stored credentials with a faster-to-crack hash.

Attack Vector

Exploitation requires an attacker to obtain the shadow file from a deployed image, for example through a separate file disclosure issue, backup theft, lost device, or post-compromise lateral movement. Once obtained, the SHA-512 hashes are cracked offline using tools such as hashcat (mode 1800) or john, recovering plaintext passwords that may be reused across the fleet. The vulnerability does not grant initial access on its own but degrades the confidentiality of stored credentials.

bash
# Patch reference: APP_VERSION bump in Shell/debian-minbase-install.sh
-APP_VERSION="1.1.0"
+APP_VERSION="1.2.0"
# Source: https://github.com/ChewKeanHo/Actualizer/commit/32c9cc232c856f078f8269fba80ce7562bbff86b
# The 1.2.0 release replaces OpenSSL -passwd with Debian's yescrypt-backed
# password setting path so new accounts are stored as $y$ rather than $6$.

Detection Methods for CVE-2025-47276

Indicators of Compromise

  • Entries in /etc/shadow for root or alpha beginning with $6$ on systems built by Actualizer.
  • Image build logs referencing Actualizer APP_VERSION1.1.0 or earlier.
  • Unexpected successful SSH or console authentications to root or alpha from external networks.

Detection Strategies

  • Audit /etc/shadow across the Debian fleet and flag accounts where the hash prefix is $6$ instead of $y$.
  • Inventory build pipelines for invocations of openssl passwd and Actualizer scripts predating 1.2.0.
  • Correlate authentication telemetry with accounts known to have been provisioned by affected Actualizer versions.

Monitoring Recommendations

  • Alert on shadow file reads by non-root processes and on backup jobs that export /etc/shadow outside trusted storage.
  • Monitor for repeated authentication failures against root and alpha indicating credential-cracking attempts.
  • Track CI/CD job outputs to ensure rebuilt images use Actualizer 1.2.0 or later.

How to Mitigate CVE-2025-47276

Immediate Actions Required

  • Upgrade Actualizer to version 1.2.0 and rebuild any in-flight Debian images.
  • On already deployed systems, manually reset the root and alpha passwords so Debian's yescrypt hasher replaces the SHA-512 entries.
  • Rotate any credentials that may have been reused across images derived from affected Actualizer builds.

Patch Information

The fix is delivered in Actualizer 1.2.0, which removes the OpenSSL -passwd invocation in Shell/debian-minbase-install.sh so account creation uses Debian's native yescrypt-backed hasher. See the GitHub Release Version 1.2.0, the GitHub Security Advisory GHSA-v626-chv9-v9qr, and the GitHub Commit Details for the patch contents.

Workarounds

  • Reset both root and alpha passwords on existing deployments using passwd so the new hash is written by yescrypt.
  • Restrict access to /etc/shadow and image artifacts containing it until accounts are migrated.
  • Disable direct root SSH login and enforce key-based authentication on the alpha account.
bash
# Force re-hashing of root and alpha credentials with Debian's yescrypt
sudo passwd root
sudo passwd alpha

# Verify new hashes use the $y$ (yescrypt) prefix instead of $6$ (SHA-512)
sudo awk -F: '$1=="root" || $1=="alpha" {print $1, substr($2,1,3)}' /etc/shadow

# Confirm PAM is configured to use yescrypt for future password changes
grep -E '^password.*pam_unix' /etc/pam.d/common-password

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechActualizer

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.24%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-328
  • Technical References
  • OWASP Password Storage Cheat Sheet

  • GitHub Commit Details

  • GitHub Issue Tracker

  • GitHub Release Version 1.2.0

  • GitHub Security Advisory

  • GitHub OpenSSL Issue

  • Reddit Debian Discussion
  • Latest CVEs
  • CVE-2025-52479: HTTP.jl & URIs.jl CRLF Injection Flaw

  • CVE-2026-31740: Linux Kernel Race Condition Vulnerability

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

  • CVE-2026-31744: Linux Kernel NULL Pointer 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