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

CVE-2026-35346: uutils coreutils Information Disclosure

CVE-2026-35346 is an information disclosure flaw in uutils coreutils comm utility that silently corrupts data through lossy UTF-8 conversion. This article covers technical details, affected versions, and mitigation.

Published: April 23, 2026

CVE-2026-35346 Overview

The comm utility in uutils coreutils contains a data integrity vulnerability that silently corrupts output data by performing lossy UTF-8 conversion on all output lines. The implementation uses String::from_utf8_lossy(), which replaces invalid UTF-8 byte sequences with the Unicode replacement character (U+FFFD). This behavior differs from GNU comm, which processes raw bytes and preserves the original input. As a result, corrupted output occurs when the utility is used to compare binary files or files using non-UTF-8 legacy encodings.

Critical Impact

Silent data corruption in file comparison operations can lead to incorrect results when processing binary data or legacy encoded files, potentially causing data integrity issues in automated pipelines and scripts that rely on accurate file comparisons.

Affected Products

  • uutils coreutils (versions prior to 0.6.0)

Discovery Timeline

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

Technical Details for CVE-2026-35346

Vulnerability Analysis

This vulnerability falls under CWE-176 (Improper Handling of Unicode Encoding), representing an input validation error where the comm utility improperly handles byte sequences that do not conform to UTF-8 encoding standards. The core issue stems from a design decision to use Rust's String::from_utf8_lossy() function for processing input data.

When processing files, the comm utility reads input and converts it to UTF-8 strings. The from_utf8_lossy() function, while convenient for handling potentially malformed text, replaces any byte sequence that doesn't represent valid UTF-8 with the Unicode replacement character (U+FFFD, displayed as �). This lossy conversion occurs silently without any warning or error message to the user, making it difficult to detect when data corruption has occurred.

The vulnerability has significant implications for users who depend on the comm utility for comparing files that contain binary data, use legacy character encodings (such as ISO-8859-1, Windows-1252, or various East Asian encodings), or contain raw byte sequences that happen to not be valid UTF-8. Unlike GNU comm, which operates on raw bytes and faithfully reproduces input regardless of encoding, the uutils implementation modifies the data stream during processing.

Root Cause

The root cause of this vulnerability is the use of String::from_utf8_lossy() in the uutils coreutils comm implementation. This function prioritizes producing valid UTF-8 strings over preserving the original byte content. When encountering byte sequences that are not valid UTF-8, rather than failing with an error or preserving the raw bytes, the function silently substitutes the replacement character. This design choice creates an incompatibility with GNU coreutils behavior and violates the principle that utilities should preserve data integrity by default.

Attack Vector

This is a local vulnerability requiring the attacker or user to execute the comm utility on files containing non-UTF-8 byte sequences. The attack vector involves providing input files that contain binary data or legacy-encoded text to the comm utility, which then produces corrupted output without warning.

Exploitation scenarios include:

  • Using comm in automated data processing pipelines where binary or legacy-encoded files are compared
  • Relying on comm output for deduplication or merging operations where data integrity is critical
  • Processing log files or data exports that contain non-UTF-8 characters

The vulnerability does not require elevated privileges to trigger, as any user running the comm utility with appropriate input files can experience data corruption.

Detection Methods for CVE-2026-35346

Indicators of Compromise

  • Presence of Unicode replacement characters (U+FFFD, displayed as �) in comm output when processing binary or legacy-encoded files
  • Unexpected differences in file comparison results between uutils comm and GNU comm
  • Discrepancies in automated pipeline outputs that rely on the comm utility

Detection Strategies

  • Compare output from uutils comm against GNU comm when processing files with known non-UTF-8 content
  • Implement validation checks for the presence of U+FFFD replacement characters in comm output
  • Review scripts and automation pipelines that use the comm utility for binary or legacy-encoded file processing

Monitoring Recommendations

  • Audit systems using uutils coreutils to identify any reliance on the comm utility for processing non-UTF-8 data
  • Monitor data integrity in automated pipelines that use comm for file comparison operations
  • Implement checksum validation before and after file processing operations involving comm

How to Mitigate CVE-2026-35346

Immediate Actions Required

  • Upgrade to uutils coreutils version 0.6.0 or later, which addresses this vulnerability
  • For systems that cannot be immediately upgraded, switch to GNU coreutils comm for processing binary or non-UTF-8 files
  • Review and validate output from any automated processes that use the comm utility with potentially affected input

Patch Information

The vulnerability has been addressed in uutils coreutils version 0.6.0. The fix was implemented via Pull Request #10206, which modifies the comm implementation to properly handle non-UTF-8 byte sequences without lossy conversion. Users should upgrade to version 0.6.0 or later to receive the fix.

For additional context on the vulnerability, refer to GitHub Issue #10192 which documents the original bug report and discussion.

Workarounds

  • Use GNU coreutils comm instead of uutils comm when processing binary files or files with legacy encodings
  • Pre-convert input files to valid UTF-8 using iconv or similar tools before processing with the affected comm version
  • Implement post-processing validation to detect and flag any output containing the U+FFFD replacement character
bash
# Example: Check for replacement characters in comm output
# If replacement characters are found, the file may have been corrupted
comm file1.txt file2.txt | grep -F $'\\xEF\\xBF\\xBD' && echo "Warning: Possible data corruption detected"

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

  • 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-176
  • Technical References
  • GitHub Issue #10192

  • GitHub Pull Request #10206

  • GitHub Release 0.6.0
  • Related CVEs
  • CVE-2026-35381: uutils coreutils Information Disclosure

  • CVE-2026-35367: uutils coreutils Information Disclosure

  • CVE-2026-35339: uutils coreutils Information Disclosure

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