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

CVE-2026-35345: uutils coreutils Information Disclosure

CVE-2026-35345 is an information disclosure flaw in uutils coreutils tail utility that allows local attackers to exfiltrate sensitive files via symlink replacement. This article covers technical details, impact, and mitigation.

Published: April 23, 2026

CVE-2026-35345 Overview

A vulnerability exists in the tail utility of uutils coreutils that allows local attackers to exfiltrate sensitive file contents when the --follow=name option is in use. Unlike the GNU tail implementation, the uutils version continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target file.

In environments where a privileged user (such as root) monitors a log directory, a local attacker with write access to that directory can exploit this behavior by replacing a legitimate log file with a symlink pointing to a sensitive system file (such as /etc/shadow). This causes the tail utility to disclose the contents of the sensitive target file to the attacker.

Critical Impact

Local attackers can leverage this symlink following vulnerability to read sensitive system files like /etc/shadow, potentially leading to credential theft and privilege escalation.

Affected Products

  • uutils coreutils (tail utility with --follow=name option)

Discovery Timeline

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

Technical Details for CVE-2026-35345

Vulnerability Analysis

This vulnerability is classified as CWE-59 (Improper Link Resolution Before File Access), commonly known as a symlink attack. The core issue stems from a behavioral difference between the uutils implementation of tail and the traditional GNU coreutils version.

When using the --follow=name option, GNU tail monitors the file path and stops following if the file is replaced with a symbolic link. However, the uutils implementation fails to perform adequate link resolution checks when the monitored path changes. This allows an attacker to swap a legitimate file with a symlink, causing tail to follow the link and output the contents of the target file.

The attack requires local access and write permissions to the directory being monitored, making it particularly dangerous in multi-user environments or systems where log directories have relaxed permissions.

Root Cause

The root cause lies in the improper handling of symbolic links during file path monitoring. When the --follow=name option is used, the uutils tail utility should verify that the file being followed has not been replaced with a symbolic link. The absence of this check allows the utility to follow symlinks to arbitrary files, breaking expected security boundaries.

Attack Vector

The attack is executed locally and requires the attacker to have write access to a directory that a privileged user is monitoring with tail --follow=name. The attack scenario proceeds as follows:

  1. An administrator runs tail --follow=name /var/log/app.log as root to monitor application logs
  2. A local attacker with write access to /var/log/ deletes or renames app.log
  3. The attacker creates a symbolic link: ln -s /etc/shadow /var/log/app.log
  4. The uutils tail continues following the path and outputs the contents of /etc/shadow

This attack exploits the Time-of-Check Time-of-Use (TOCTOU) race condition inherent in file monitoring operations that do not properly validate file types between checks.

Detection Methods for CVE-2026-35345

Indicators of Compromise

  • Unexpected symbolic links appearing in log directories that were previously regular files
  • Log monitoring processes (tail) reading files outside of expected directories
  • Sudden appearance of symlinks pointing to sensitive files like /etc/shadow, /etc/passwd, or private key files
  • Unusual file access patterns from privileged tail processes

Detection Strategies

  • Monitor for symlink creation in directories typically used for logging (e.g., /var/log/)
  • Implement auditd rules to track symlink creation and file replacements in sensitive directories
  • Use file integrity monitoring (FIM) tools to detect unexpected changes to log files
  • Enable SentinelOne behavioral analysis to detect suspicious file system operations

Monitoring Recommendations

  • Configure alerts for any symlink creation in monitored log directories
  • Audit processes running with elevated privileges that are performing file reads
  • Implement real-time monitoring of log directory permissions and contents
  • Review tail command usage in scripts and automated processes for --follow=name usage

How to Mitigate CVE-2026-35345

Immediate Actions Required

  • Audit systems for usage of uutils coreutils tail with the --follow=name option
  • Consider switching to GNU coreutils tail in production environments until a patch is available
  • Restrict write permissions on log directories to prevent unauthorized file manipulation
  • Avoid running tail with --follow=name as root when monitoring directories with relaxed permissions

Patch Information

A fix for this vulnerability is being tracked in the uutils coreutils GitHub repository. Organizations should monitor this issue for updates and apply patches when available. Until an official fix is released, implementing the workarounds below is strongly recommended.

Workarounds

  • Use --follow=descriptor (or -f without =name) instead of --follow=name to follow the file descriptor rather than the path
  • Switch to GNU coreutils tail which properly handles symlink replacements
  • Implement strict directory permissions (mode 755 or more restrictive) on monitored directories
  • Use a dedicated unprivileged user for log monitoring operations
  • Implement directory monitoring with inotify-based tools that validate file types
bash
# Configuration example
# Use file descriptor following instead of name following
tail -f /var/log/app.log

# Or explicitly use --follow=descriptor
tail --follow=descriptor /var/log/app.log

# Restrict permissions on log directories
chmod 755 /var/log/
chown root:root /var/log/

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechUutils Coreutils

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.01%

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

  • CVE-2026-35367: uutils coreutils Information Disclosure

  • CVE-2026-35346: uutils coreutils Information Disclosure

  • CVE-2026-35339: 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