Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-57849

CVE-2025-57849: Fuse Container Privilege Escalation Flaw

CVE-2025-57849 is a privilege escalation vulnerability in Fuse container images allowing attackers to gain root access by modifying /etc/passwd. This article covers technical details, affected versions, and mitigations.

Published: March 20, 2026

CVE-2025-57849 Overview

A container privilege escalation vulnerability has been identified in certain Fuse images. This security flaw originates from improper file permission configuration during the container build process, where the /etc/passwd file is created with group-writable permissions. Under specific conditions, an attacker who gains command execution capabilities within an affected container—even as a non-root user—can exploit their membership in the root group to modify the /etc/passwd file. This manipulation could enable the attacker to add a new user account with arbitrary UID values, including UID 0, ultimately achieving full root privileges within the container environment.

Critical Impact

Attackers with limited container access can escalate to full root privileges by exploiting insecure file permissions on /etc/passwd, potentially leading to complete container compromise and lateral movement opportunities.

Affected Products

  • Fuse container images with group-writable /etc/passwd file permissions
  • Container environments where non-root users are members of the root group
  • Red Hat Fuse-based container deployments

Discovery Timeline

  • 2026-03-13 - CVE-2025-57849 published to NVD
  • 2026-03-16 - Last updated in NVD database

Technical Details for CVE-2025-57849

Vulnerability Analysis

This privilege escalation vulnerability (CWE-276: Incorrect Default Permissions) exploits a fundamental misconfiguration in how the /etc/passwd file permissions are set during the container image build process. The vulnerability requires local access to the container and elevated privileges to exploit effectively, but the conditions for exploitation can exist in multi-tenant container environments or where container breakout is a concern.

The attack exploits a race between the expected security model (where /etc/passwd should be read-only for non-root users) and the actual file permissions that allow group write access. When a user is part of the root group (GID 0), they inherit write permissions to the /etc/passwd file, enabling unauthorized account creation.

The security impact is significant because successful exploitation grants complete control over the container's user authentication mechanism, allowing attackers to create backdoor accounts, escalate privileges, and potentially use the compromised container as a pivot point for further attacks within the container orchestration environment.

Root Cause

The root cause of this vulnerability is an insecure default permission configuration (CWE-276) applied to the /etc/passwd file during the Fuse container image build process. Instead of the standard permission mode of 644 (read-write for owner, read-only for group and others), the file is created with group-writable permissions (664 or similar). This configuration oversight allows any process running with root group membership to modify the authentication database.

Attack Vector

The attack requires local access to the container and follows this exploitation path:

  1. Initial Access: Attacker gains command execution within the affected container, even as a non-root user
  2. Group Membership Check: Attacker verifies membership in the root group (GID 0)
  3. Permission Verification: Attacker confirms /etc/passwd has group-writable permissions
  4. Account Injection: Attacker appends a new user entry with UID 0 to /etc/passwd
  5. Privilege Escalation: Attacker switches to the newly created root-equivalent account

The exploitation mechanism involves appending a crafted line to /etc/passwd that creates a user with UID 0. Once this entry exists, the attacker can use su or other authentication mechanisms to assume root identity within the container.

For detailed technical analysis, refer to the Red Hat CVE-2025-57849 Advisory and Red Hat Bugzilla #2391100.

Detection Methods for CVE-2025-57849

Indicators of Compromise

  • Unexpected new user entries in /etc/passwd files, particularly those with UID 0
  • User accounts with non-standard usernames appearing in container authentication logs
  • Modification timestamps on /etc/passwd that don't correspond to authorized configuration changes
  • Process execution by users that didn't exist in the original container image

Detection Strategies

  • Implement file integrity monitoring (FIM) on /etc/passwd within container environments to detect unauthorized modifications
  • Configure container runtime security tools to alert on privilege escalation attempts and unexpected root process spawning
  • Deploy SentinelOne Singularity for real-time detection of privilege escalation behaviors and suspicious file modifications in containerized workloads
  • Audit container images during CI/CD pipelines to identify insecure file permissions before deployment

Monitoring Recommendations

  • Enable audit logging for all file modifications to /etc/passwd and /etc/shadow within containers
  • Monitor for su or sudo commands executed by users not present in the original container image
  • Track changes to user and group membership configurations across container deployments
  • Implement runtime security monitoring to detect privilege escalation patterns characteristic of this attack

How to Mitigate CVE-2025-57849

Immediate Actions Required

  • Audit all Fuse-based container images for insecure /etc/passwd permissions using ls -la /etc/passwd
  • Rebuild affected container images with corrected file permissions (chmod 644 /etc/passwd)
  • Review container user configurations to minimize root group membership for application accounts
  • Implement read-only filesystem mounts for sensitive system files where operationally feasible

Patch Information

Organizations should consult the Red Hat CVE-2025-57849 Advisory for official patch information and updated container images. Monitor the Red Hat Bugzilla #2391100 tracking issue for remediation guidance and updated image releases.

Workarounds

  • Correct the file permissions manually in running containers using chmod 644 /etc/passwd (temporary measure)
  • Remove unnecessary users from the root group within container configurations
  • Mount /etc/passwd as read-only using container runtime options where application requirements permit
  • Implement security contexts that drop group-write capabilities for sensitive system files
bash
# Configuration example
# Verify and correct /etc/passwd permissions in container images
# Check current permissions
ls -la /etc/passwd

# Correct insecure permissions
chmod 644 /etc/passwd

# Verify correction applied
stat -c '%a %U:%G %n' /etc/passwd
# Expected output: 644 root:root /etc/passwd

# For Dockerfile remediation, add this layer:
# RUN chmod 644 /etc/passwd

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechFuse

  • SeverityMEDIUM

  • CVSS Score6.4

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-276
  • Technical References
  • Red Hat CVE-2025-57849 Advisory

  • Red Hat Bugzilla #2391100
  • Latest CVEs
  • CVE-2025-52793: Esselink.nu Settings CSRF Vulnerability

  • CVE-2025-52772: Virtual Moderator CSRF Vulnerability

  • CVE-2025-48279: WC MyParcel Belgium XSS Vulnerability

  • CVE-2025-39381: KiotViet Sync CSRF 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