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

CVE-2026-35363: uutils Coreutils Path Traversal Flaw

CVE-2026-35363 is a path traversal vulnerability in uutils coreutils that bypasses safeguards, allowing rm -rf ./ to delete directory contents silently. This article covers technical details, affected versions, and mitigation.

Published: April 23, 2026

CVE-2026-35363 Overview

A path traversal vulnerability exists in the rm utility of uutils coreutils that allows the bypass of safeguard mechanisms intended to protect the current directory. While the utility correctly refuses to delete . or .., it fails to recognize equivalent paths with trailing slashes, such as ./ or .///. An accidental or malicious execution of rm -rf ./ results in the silent recursive deletion of all contents within the current directory. The command further obscures the data loss by reporting a misleading "Invalid input" error, which may cause users to miss the critical window for data recovery.

Critical Impact

Silent recursive deletion of current directory contents with misleading error messages, potentially causing significant data loss before users recognize the issue.

Affected Products

  • uutils coreutils (versions with vulnerable rm implementation)

Discovery Timeline

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

Technical Details for CVE-2026-35363

Vulnerability Analysis

This vulnerability is classified as CWE-22 (Improper Limitation of a Pathname to a Restricted Directory), commonly known as Path Traversal. The core issue lies in insufficient path normalization within the rm utility's protection logic. The safeguard mechanism was designed to prevent users from accidentally deleting the current directory (.) or parent directory (..), but the implementation fails to account for semantically equivalent path representations.

When a user executes rm -rf ./, the utility does not recognize that ./ refers to the same location as .. This incomplete validation allows the recursive deletion operation to proceed, removing all files and subdirectories within the current working directory. The vulnerability is particularly dangerous because the misleading "Invalid input" error message provides no indication of the actual data destruction that has occurred.

The local attack vector requires user interaction, as the command must be executed either accidentally by a user or through social engineering. However, the potential for data loss is significant, especially in development or production environments where critical files may be permanently deleted.

Root Cause

The root cause is an incomplete path canonicalization check in the rm utility's safeguard mechanism. The protection logic performs a simple string comparison against . and .. but does not normalize paths to handle trailing slashes or other equivalent path representations such as ./, .//, or .///. This oversight creates a gap between the intended security behavior and the actual implementation.

Attack Vector

The vulnerability requires local access and user interaction. An attacker could exploit this flaw through several scenarios:

  1. Social Engineering: Tricking a user into executing a seemingly harmless command that includes the ./ pattern
  2. Script Injection: Modifying scripts or automation tools to include the vulnerable command pattern
  3. Accidental Execution: Users typing rm -rf ./ instead of a specific path, expecting the safeguard to prevent directory deletion

The misleading error message compounds the attack by delaying the victim's recognition of the data loss, reducing the window for potential recovery actions such as restoring from backups or stopping the deletion process.

Detection Methods for CVE-2026-35363

Indicators of Compromise

  • Unexpected disappearance of files and directories in working directories
  • Shell history entries containing rm -rf ./ or similar patterns with trailing slashes
  • Process logs showing rm operations with unusual path patterns like ./// or ././

Detection Strategies

  • Monitor for rm command execution with arguments matching patterns like ./, .//, or similar trailing slash variations
  • Implement file integrity monitoring on critical directories to detect unexpected mass deletions
  • Review shell history and audit logs for suspicious rm command patterns

Monitoring Recommendations

  • Enable command-line auditing on systems running uutils coreutils
  • Configure alerts for large-scale file deletion events in monitored directories
  • Implement backup verification processes to ensure recovery capability

How to Mitigate CVE-2026-35363

Immediate Actions Required

  • Review and update uutils coreutils installations to the latest version once a patch is available
  • Educate users about the vulnerability and the dangerous command patterns to avoid
  • Consider implementing shell aliases or wrapper scripts that add additional path validation

Patch Information

A patch addressing this vulnerability is being tracked in the GitHub Issue Discussion. Users should monitor this issue for updates on the official fix and upgrade their installations when a patched version becomes available.

Workarounds

  • Use absolute paths instead of relative paths with trailing slashes when executing rm commands
  • Implement a shell alias for rm that validates input paths before execution
  • Configure restricted shells or permission controls to limit rm -rf usage in sensitive directories
bash
# Workaround: Shell alias to validate rm commands
# Add to .bashrc or .zshrc to warn about dangerous patterns
alias rm='_safe_rm() { 
  for arg in "$@"; do 
    case "$arg" in 
      ./*|../*) echo "Warning: Potentially dangerous path pattern detected"; return 1 ;; 
    esac; 
  done; 
  command rm "$@"; 
}; _safe_rm'

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechUutils Coreutils

  • SeverityMEDIUM

  • CVSS Score5.6

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:N/I:H/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityLow
  • CWE References
  • CWE-22
  • Technical References
  • GitHub Issue Discussion
  • Related CVEs
  • CVE-2026-35356: uutils coreutils Path Traversal Flaw

  • CVE-2026-35338: uutils coreutils Path Traversal Flaw

  • CVE-2026-35374: uutils coreutils TOCTOU Vulnerability

  • CVE-2026-35377: uutils coreutils env Utility DoS 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