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

CVE-2026-35364: uutils coreutils Race Condition Flaw

CVE-2026-35364 is a Time-of-Check to Time-of-Use race condition in the uutils coreutils mv utility that lets attackers redirect file writes via symlink exploitation during cross-device moves. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: April 23, 2026

CVE-2026-35364 Overview

A Time-of-Check to Time-of-Use (TOCTOU) race condition vulnerability has been discovered in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation, creating a window of opportunity for exploitation. A local attacker with write access to the destination directory can exploit this timing window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source.

Critical Impact

Local attackers can exploit this race condition to overwrite arbitrary files on the system, potentially leading to privilege escalation or system compromise through targeted file overwrites.

Affected Products

  • uutils coreutils mv utility (cross-device operations)

Discovery Timeline

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

Technical Details for CVE-2026-35364

Vulnerability Analysis

This vulnerability is classified as CWE-367 (Time-of-Check Time-of-Use Race Condition). The flaw exists in how the mv utility handles cross-device move operations. When a file is moved across different filesystems, the operation cannot be performed as a simple rename system call. Instead, the utility must copy the file to the destination and then remove the source.

The vulnerable implementation first removes any existing file at the destination path, then performs the copy operation. This creates a critical timing window between the deletion of the destination and the creation of the new file. During this window, an attacker with write permissions to the destination directory can create a symbolic link pointing to a sensitive system file.

When the privileged mv operation subsequently writes the source file contents, it follows the attacker-controlled symlink and overwrites the target file. This can result in arbitrary file overwrites with attacker-influenced content, potentially compromising system integrity or enabling privilege escalation if critical system files are targeted.

Root Cause

The root cause is the non-atomic nature of the cross-device move operation. The implementation performs a delete-then-copy sequence without adequate safeguards against symlink injection during the timing window. The operation lacks the use of secure file handling APIs that would prevent following symlinks or ensure atomic operations at the destination path.

Attack Vector

The attack requires local access with write permissions to the destination directory. An attacker can monitor for cross-device move operations targeting a predictable destination path. By rapidly creating a symbolic link at the destination during the timing window between file deletion and recreation, the attacker can redirect the write operation to an arbitrary file on the system. The exploitation complexity is high due to the precise timing required, but successful exploitation can result in complete compromise of file integrity.

The attack flow involves:

  1. Monitoring for a privileged mv operation to a writable directory
  2. Winning the race condition by creating a symlink at the destination path after deletion but before the new file is written
  3. The privileged operation follows the symlink and writes content to the attacker-specified target file

Detection Methods for CVE-2026-35364

Indicators of Compromise

  • Unexpected symbolic links appearing in directories where cross-device move operations occur
  • Modified system files with timestamps correlating to mv operations
  • Audit logs showing rapid file deletion followed by symlink creation in the same path
  • Integrity check failures on critical system files

Detection Strategies

  • Monitor for symlink creation in directories commonly used as move destinations
  • Implement file integrity monitoring (FIM) on sensitive system files
  • Use audit frameworks to track mv operations performed with elevated privileges
  • Alert on rapid filesystem operations involving delete-symlink-write sequences

Monitoring Recommendations

  • Enable Linux audit subsystem to log file operations in sensitive directories
  • Deploy endpoint detection solutions capable of identifying TOCTOU exploitation patterns
  • Monitor process execution chains for suspicious timing of filesystem operations
  • Review logs for anomalous mv operations, particularly those crossing device boundaries

How to Mitigate CVE-2026-35364

Immediate Actions Required

  • Review usage of uutils coreutils mv in privileged contexts
  • Avoid cross-device move operations in directories writable by untrusted users
  • Implement additional access controls on destination directories for sensitive operations
  • Consider using atomic file operation alternatives where available

Patch Information

Monitor the GitHub Issue Report for official patches and updates from the uutils coreutils project. Update to a patched version once available from the maintainers.

Workarounds

  • Restrict write access to destination directories used by privileged move operations
  • Use cp followed by secure deletion instead of mv for cross-device operations in sensitive contexts
  • Implement directory ownership checks before performing privileged file operations
  • Consider mounting destination filesystems with the nosymfollow option where supported

Secure file operation practices should be implemented:

bash
# Ensure destination directory is not writable by untrusted users
chmod 755 /secure/destination
chown root:root /secure/destination

# Verify no symlinks exist at destination before operations
test -L /destination/path && echo "Symlink detected - aborting"

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

  • Vulnerability Details
  • TypeRace Condition

  • Vendor/TechUutils Coreutils

  • SeverityMEDIUM

  • CVSS Score6.3

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-367
  • Technical References
  • GitHub Issue Report
  • Related CVEs
  • CVE-2026-35374: uutils coreutils TOCTOU Vulnerability

  • CVE-2026-35362: uutils coreutils Race Condition Vulnerability

  • CVE-2026-35355: uutils coreutils Race Condition Flaw

  • CVE-2026-35360: uutils coreutils Race Condition Flaw
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