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

CVE-2026-35341: uutils coreutils Privilege Escalation

CVE-2026-35341 is a privilege escalation flaw in uutils coreutils mkfifo that allows unauthorized permission modifications on existing files, potentially exposing sensitive data. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: April 23, 2026

CVE-2026-35341 Overview

A vulnerability in uutils coreutils mkfifo allows for the unauthorized modification of permissions on existing files. When mkfifo fails to create a FIFO because a file already exists at the target path, it fails to terminate the operation for that path and continues to execute a follow-up set_permissions call. This results in the existing file's permissions being changed to the default mode (often 644 after umask), potentially exposing sensitive files such as SSH private keys to other users on the system.

Critical Impact

Local attackers with low privileges can exploit this flaw to modify file permissions on arbitrary files, potentially exposing sensitive data like SSH private keys to unauthorized users.

Affected Products

  • uutils coreutils (specific affected versions not disclosed)

Discovery Timeline

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

Technical Details for CVE-2026-35341

Vulnerability Analysis

This vulnerability is classified under CWE-732 (Incorrect Permission Assignment for Critical Resource). The flaw resides in the mkfifo utility's error handling logic within the uutils coreutils implementation. When a user attempts to create a named pipe (FIFO) at a path where a file already exists, the mkfifo command correctly identifies the failure condition but does not properly terminate the operation sequence for that specific path.

The core issue is a logic error where the failure to create the FIFO does not prevent subsequent operations from executing. Specifically, a set_permissions call is executed even after the FIFO creation fails. This call applies the default permission mode (typically 644 after applying the system's umask) to the pre-existing file at the target path. This is problematic because the permissions are applied to a file that was never created by the current operation.

Root Cause

The root cause is improper error handling in the mkfifo implementation within uutils coreutils. The code path that handles FIFO creation failures does not adequately guard against executing the permission-setting logic that should only apply to newly created FIFOs. This represents a classic race condition vulnerability (TOCTOU - Time-of-Check Time-of-Use) combined with incorrect permission assignment, where the check for file existence and the permission modification are not atomically coordinated.

Attack Vector

The attack requires local access to the system with low-level privileges. An attacker can exploit this vulnerability by:

  1. Identifying a sensitive file with restrictive permissions (e.g., ~/.ssh/id_rsa with mode 600)
  2. Executing mkfifo targeting the path of the sensitive file
  3. While mkfifo fails to create the FIFO due to the existing file, the permission modification still executes
  4. The sensitive file's permissions are changed to a more permissive mode (e.g., 644), making it readable by other users

This can lead to unauthorized access to sensitive data such as SSH private keys, configuration files containing credentials, or other security-critical files. The attack surface is limited to local users, but in multi-user environments or containerized deployments sharing a filesystem, this vulnerability poses a significant risk.

Detection Methods for CVE-2026-35341

Indicators of Compromise

  • Unexpected permission changes on sensitive files, particularly SSH keys, configuration files, or secret storage locations
  • Audit logs showing mkfifo commands targeting paths to existing files rather than new FIFO locations
  • Files with permissions loosened from restrictive modes (600, 400) to more permissive modes (644)

Detection Strategies

  • Monitor audit logs (auditd on Linux) for mkfifo syscalls targeting existing file paths
  • Implement file integrity monitoring (FIM) to detect unexpected permission changes on sensitive files
  • Alert on anomalous chmod or permission modification events following failed mkfifo operations

Monitoring Recommendations

  • Enable detailed system call auditing for the mknod system call family used by mkfifo
  • Configure file integrity monitoring solutions to track permission changes on high-value files such as SSH keys and credential stores
  • Establish baseline permissions for critical system files and alert on deviations

How to Mitigate CVE-2026-35341

Immediate Actions Required

  • Review systems for uutils coreutils installations and identify affected versions
  • Audit sensitive file permissions to detect any unauthorized modifications
  • Consider temporarily restricting access to mkfifo or monitoring its usage closely until a patch is applied

Patch Information

Users should monitor the GitHub Issue Discussion for updates on official patches and remediation guidance. Update to a patched version of uutils coreutils when available. No vendor advisory with specific patch information has been released at this time.

Workarounds

  • Use the GNU coreutils implementation of mkfifo instead of uutils coreutils until a fix is available
  • Implement strict file permission monitoring on sensitive files to detect unauthorized changes
  • Restrict mkfifo access to trusted users only through system policies or access control lists
bash
# Example: Monitor permission changes on SSH keys
auditctl -w /home/*/.ssh/ -p wa -k ssh_permission_watch

# Example: Use inotifywait to monitor permission changes
inotifywait -m -e attrib /path/to/sensitive/files/

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechUutils Coreutils

  • SeverityHIGH

  • CVSS Score7.1

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-732
  • Technical References
  • GitHub Issue Discussion
  • Related CVEs
  • CVE-2026-35372: uutils coreutils ln Privilege Escalation

  • CVE-2026-35368: uutils coreutils Privilege Escalation

  • CVE-2026-35359: uutils coreutils Privilege Escalation

  • CVE-2026-35340: uutils coreutils Privilege Escalation
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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