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

CVE-2026-35379: uutils coreutils Logic Error Vulnerability

CVE-2026-35379 is a logic error in the tr utility of uutils coreutils that causes incorrect character class definitions, leading to unintended data modification. This article covers technical details, impact, and mitigation.

Published: April 23, 2026

CVE-2026-35379 Overview

A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics.

Critical Impact

Automated scripts and data-cleaning pipelines relying on standard POSIX character class semantics may experience data corruption when using the affected tr utility. Commands intended to preserve whitespace while deleting graphical characters will incorrectly delete ASCII spaces, causing downstream processing failures.

Affected Products

  • uutils coreutils (versions prior to 0.8.0)

Discovery Timeline

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

Technical Details for CVE-2026-35379

Vulnerability Analysis

This vulnerability stems from a Business Logic Error (CWE-684) in the character class handling within the uutils coreutils tr utility. The POSIX standard clearly defines that the [:graph:] class should include all printable characters except space, while [:print:] should include all printable characters including space. The affected implementation reverses this behavior, creating a subtle but impactful deviation from expected behavior.

When developers or system administrators use tr commands in automated pipelines, they rely on these character classes behaving according to established standards. The incorrect implementation causes unexpected data transformation, which can silently corrupt data or cause logic failures in downstream processing systems. This is particularly problematic in data sanitization workflows, ETL pipelines, and automated text processing scripts that depend on consistent behavior across different coreutils implementations.

Root Cause

The root cause is a logic error in the character class definition within the tr utility's source code. The implementation incorrectly handles the ASCII space character (0x20) boundary condition when populating the [:graph:] and [:print:] character sets. This results in the space character being misclassified—included in [:graph:] where it should be excluded, and excluded from [:print:] where it should be included.

Attack Vector

This vulnerability requires local access to a system running the affected uutils coreutils version. An attacker or malicious script cannot directly exploit this for privilege escalation or code execution. However, the incorrect behavior can be leveraged to cause data corruption in systems that depend on the tr utility for data processing. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in corrupted configuration files, broken data exports, or logic failures in automated workflows.

The vulnerability is exploited passively through normal usage of the tr utility with the [:graph:] or [:print:] character classes. No malicious payload or special crafting is required—simply using the utility as documented will produce incorrect results.

Detection Methods for CVE-2026-35379

Indicators of Compromise

  • Unexpected removal or modification of space characters in processed text files
  • Data pipeline failures or corrupted outputs when using tr with [:graph:] or [:print:] classes
  • Diff reports showing missing spaces in files processed through uutils tr utility

Detection Strategies

  • Compare tr utility output against expected POSIX behavior using test strings containing space characters
  • Run validation tests: echo "a b c" | tr -d '[:graph:]' should return spaces only, not an empty string
  • Audit automated scripts and pipelines that use tr with character class arguments
  • Check installed uutils coreutils version against affected versions

Monitoring Recommendations

  • Implement output validation checks in data processing pipelines that use the tr utility
  • Add integrity checks for critical data processed through text transformation utilities
  • Monitor for unexpected data format changes in downstream systems
  • Log and alert on data validation failures in ETL and data cleaning workflows

How to Mitigate CVE-2026-35379

Immediate Actions Required

  • Upgrade uutils coreutils to version 0.8.0 or later
  • Audit existing scripts and pipelines for usage of tr with [:graph:] or [:print:] character classes
  • Replace affected tr commands with GNU coreutils tr as a temporary workaround
  • Validate data integrity for any files processed with the affected utility

Patch Information

The vulnerability has been addressed in uutils coreutils version 0.8.0. The fix corrects the character class definitions to align with POSIX and GNU coreutils standards. For detailed patch information, refer to the GitHub Pull Request #11405 and the release notes for version 0.8.0.

Workarounds

  • Use GNU coreutils tr utility instead of uutils version for affected character class operations
  • Implement explicit character ranges instead of named character classes (e.g., use !-~ instead of [:graph:])
  • Add post-processing validation to verify space character preservation in transformed data
  • Wrap tr commands in shell functions that verify correct behavior before processing production data
bash
# Workaround: Use explicit character range instead of [:graph:]
# Original (affected): tr -d '[:graph:]'
# Workaround: Delete printable non-space characters explicitly
tr -d '!-~'

# Verification test to check if your tr implementation is affected
test_result=$(echo "a b c" | tr -d '[:graph:]')
if [ "$test_result" = "   " ]; then
    echo "tr utility behaves correctly"
else
    echo "WARNING: tr utility has incorrect [:graph:] behavior"
fi

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechCoreutils

  • SeverityLOW

  • CVSS Score3.3

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-684
  • Technical References
  • GitHub Pull Request

  • GitHub Release Note 0.8.0
  • Related CVEs
  • CVE-2026-35380: uutils coreutils Logic Error Vulnerability

  • CVE-2026-35350: uutils coreutils Privilege Escalation

  • CVE-2026-35343: uutils coreutils Information Disclosure

  • CVE-2026-35344: uutils dd Information Disclosure 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