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-2026-35351

CVE-2026-35351: uutils coreutils Information Disclosure

CVE-2026-35351 is an information disclosure flaw in uutils coreutils mv utility where file ownership is not preserved during cross-filesystem moves. This article covers the technical details, affected versions, and solutions.

Published: April 23, 2026

CVE-2026-35351 Overview

The mv utility in uutils coreutils contains an improper preservation of permissions vulnerability (CWE-281) that affects file ownership during cross-filesystem move operations. When moving files between different filesystem boundaries, the utility falls back to a copy-and-delete routine that creates the destination file using the caller's UID/GID rather than preserving the source file's metadata. This flaw can disrupt backup and migration workflows, causing files moved by privileged users (such as root) to unexpectedly become root-owned, potentially leading to information disclosure or restricted access for intended file owners.

Critical Impact

Files moved across filesystem boundaries by privileged users may have their ownership unexpectedly changed, breaking access control and potentially exposing sensitive data or denying access to legitimate owners.

Affected Products

  • uutils coreutils (affected versions not specified)

Discovery Timeline

  • 2026-04-22 - CVE CVE-2026-35351 published to NVD
  • 2026-04-22 - Last updated in NVD database

Technical Details for CVE-2026-35351

Vulnerability Analysis

This vulnerability is classified under CWE-281 (Improper Preservation of Permissions), which occurs when software fails to maintain the original security attributes of files or resources during operations. The flaw specifically manifests in the mv utility's fallback behavior when it cannot perform an atomic rename operation.

When a file is moved within the same filesystem, Unix-like systems use the rename() system call, which atomically updates directory entries while preserving all file metadata including ownership. However, when moving files across different filesystem boundaries (such as from an ext4 partition to an NFS mount), an atomic rename is not possible. In this scenario, the mv utility must fall back to a copy-and-delete approach.

The vulnerability arises because the uutils coreutils implementation of this fallback routine creates the destination file with the effective UID/GID of the calling process rather than explicitly setting the ownership to match the source file's original metadata. This means that when a privileged user (such as root) moves files belonging to another user across filesystem boundaries, those files become root-owned at the destination.

Root Cause

The root cause lies in the copy-and-delete fallback implementation within the uutils coreutils mv utility. The code fails to explicitly call chown() or equivalent functions to restore the original file ownership after copying the file content to the new location. Standard file creation inherits ownership from the process credentials, which differs from the expected behavior of preserving the source file's ownership attributes during a move operation.

Attack Vector

This vulnerability requires local access and high privileges to exploit. An attacker with privileged access (or a system administrator performing routine operations) could inadvertently trigger the vulnerability during:

  1. Backup Operations: Moving user files to backup storage mounted on a different filesystem
  2. System Migrations: Relocating user home directories or application data across storage volumes
  3. Storage Reorganization: Moving files between partitions during disk space management

The exploitation scenario involves executing a mv command as root to relocate files across filesystem boundaries. The resulting ownership change could lock out legitimate users from their own files or expose previously protected files to unauthorized access if the new ownership grants broader permissions than intended.

For technical details on the vulnerability mechanism, refer to the GitHub Issue Discussion.

Detection Methods for CVE-2026-35351

Indicators of Compromise

  • Files with unexpected root ownership in directories that should contain user-owned files
  • Access denied errors for users attempting to access their own files after migration or backup operations
  • Audit logs showing ownership changes coinciding with cross-filesystem move operations
  • User complaints about inability to access files following administrative file relocations

Detection Strategies

  • Monitor file ownership changes using filesystem auditing tools such as auditd with rules targeting chown and file creation events
  • Implement periodic scans comparing actual file ownership against expected ownership baselines
  • Review system logs for mv operations performed by privileged users that span different mount points
  • Use file integrity monitoring (FIM) solutions to track unauthorized ownership modifications

Monitoring Recommendations

  • Enable detailed filesystem auditing for cross-mount file operations
  • Configure alerts for ownership changes on sensitive directories and files
  • Implement automated checks comparing source and destination file metadata during backup verification
  • Monitor for privilege escalation patterns where files unexpectedly become accessible to different users

How to Mitigate CVE-2026-35351

Immediate Actions Required

  • Verify uutils coreutils version in use and check for available updates from the project maintainers
  • Avoid using mv for cross-filesystem operations until a patch is available; use cp -a followed by explicit verification and deletion instead
  • Audit recently moved files across filesystem boundaries to identify and correct ownership issues
  • Implement wrapper scripts that verify and restore ownership after move operations

Patch Information

Refer to the GitHub Issue Discussion for the latest information on patches and fixes from the uutils coreutils project maintainers. Users should monitor this issue for updates regarding corrected versions.

Workarounds

  • Use cp -a (archive mode) to copy files with preserved attributes, then manually verify and remove source files
  • Implement a shell script wrapper that captures source ownership metadata, performs the move, and then applies chown to restore original ownership
  • For automated backup systems, configure post-copy ownership verification and correction routines
  • Consider using GNU coreutils mv as an alternative until the uutils implementation is patched
bash
# Workaround: Safe cross-filesystem move preserving ownership
# Capture original ownership
OWNER=$(stat -c '%u:%g' "$SOURCE_FILE")
# Copy with archive mode to preserve attributes where possible
cp -a "$SOURCE_FILE" "$DEST_PATH"
# Explicitly restore ownership (requires appropriate privileges)
chown "$OWNER" "$DEST_PATH/$SOURCE_FILE"
# Verify ownership before removing source
if [ "$(stat -c '%u:%g' "$DEST_PATH/$SOURCE_FILE")" = "$OWNER" ]; then
    rm "$SOURCE_FILE"
else
    echo "Warning: Ownership verification failed"
fi

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechCoreutils

  • SeverityMEDIUM

  • CVSS Score4.2

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:U/C:L/I:L/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-281
  • Technical References
  • GitHub Issue Discussion
  • Related CVEs
  • CVE-2026-35343: uutils coreutils Information Disclosure

  • CVE-2026-35344: uutils dd Information Disclosure Flaw

  • CVE-2026-35371: uutils coreutils Information Disclosure

  • CVE-2026-35347: uutils coreutils Information Disclosure
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