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

CVE-2026-35381: uutils coreutils Information Disclosure

CVE-2026-35381 is an information disclosure flaw in uutils coreutils cut utility that causes incorrect handling of the -s flag with -z and -d options, exposing unfiltered data in automated pipelines. This article covers technical details, affected versions, impact, and mitigation steps.

Published: April 23, 2026

CVE-2026-35381 Overview

A logic error in the cut utility of uutils coreutils causes the utility to ignore the -s (only-delimited) flag when using the -z (null-terminated) and -d '' (empty delimiter) options together. The implementation incorrectly routes this specific combination through a specialized newline-delimiter code path that fails to check the record suppression status. Consequently, uutils cut emits the entire record plus a NUL byte instead of suppressing it. This divergence from GNU coreutils behavior creates a data integrity risk for automated pipelines that rely on cut -s to filter out undelimited data.

Critical Impact

Automated data processing pipelines using uutils coreutils cut with the -s -z -d '' option combination may experience data integrity issues due to incorrect output, potentially causing downstream processing failures or data corruption.

Affected Products

  • uutils coreutils (versions prior to 0.8.0)

Discovery Timeline

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

Technical Details for CVE-2026-35381

Vulnerability Analysis

This vulnerability is classified under CWE-684 (Incorrect Provision of Specified Functionality). The issue stems from a logic error in how the cut utility processes command-line flag combinations. When a user specifies -s (suppress lines without delimiters), -z (use NUL as line terminator), and -d '' (empty delimiter) together, the implementation fails to honor the -s flag's intended behavior.

The root cause lies in the code path selection logic within the cut utility. Instead of properly evaluating the suppression flag when processing null-terminated records with an empty delimiter, the code incorrectly routes execution through a specialized newline-delimiter handling path. This path lacks the necessary check for the record suppression status, causing undelimited records to be output when they should be filtered.

Root Cause

The vulnerability originates from improper conditional logic in the cut utility's input processing routines. The specialized code path designed to handle newline delimiters is incorrectly invoked when the combination of -z and -d '' options is used. This code path bypasses the suppression status check that would normally filter out records lacking the specified delimiter.

Attack Vector

This is a local vulnerability requiring the attacker to have local access to execute the affected cut command. The attack vector involves crafting input data that exploits the flag handling logic error, causing the utility to output data that should have been suppressed. While the integrity impact is limited, it can affect automated pipelines that depend on consistent filtering behavior between GNU coreutils and uutils coreutils implementations.

The vulnerability manifests when using the specific option combination -s -z -d ''. In this scenario, records that do not contain the empty delimiter should be suppressed according to the -s flag, but instead they are output in their entirety with an appended NUL byte. For detailed technical information about the fix implementation, see the GitHub Pull Request Discussion.

Detection Methods for CVE-2026-35381

Indicators of Compromise

  • Unexpected output from cut commands using the -s -z -d '' option combination
  • Downstream processing failures in pipelines that depend on filtered cut output
  • Data inconsistencies when comparing results between GNU coreutils and uutils coreutils

Detection Strategies

  • Audit shell scripts and automated pipelines for usage of uutils coreutils cut with the problematic flag combination
  • Compare output behavior between affected uutils coreutils versions and GNU coreutils reference implementation
  • Implement validation checks on cut output to verify expected filtering behavior

Monitoring Recommendations

  • Monitor data processing pipelines for unexpected output size variations that may indicate suppression failure
  • Implement logging for cut command invocations with the -s flag to track potential affected operations
  • Review automated job logs for downstream processing errors that may correlate with this behavior divergence

How to Mitigate CVE-2026-35381

Immediate Actions Required

  • Upgrade uutils coreutils to version 0.8.0 or later, which contains the fix for this logic error
  • Review automated pipelines and scripts for usage of the -s -z -d '' option combination
  • Temporarily substitute GNU coreutils cut for affected operations if upgrade is not immediately possible
  • Validate critical pipeline outputs to ensure data integrity has not been compromised

Patch Information

The fix for this vulnerability is included in uutils coreutils version 0.8.0. Users should upgrade to this version or later to resolve the logic error. The patch corrects the code path selection to properly evaluate the suppression flag when handling null-terminated records with empty delimiters. For more details, see the GitHub Release Version 0.8.0.

Workarounds

  • Use GNU coreutils cut instead of uutils coreutils for operations requiring the -s -z -d '' combination
  • Implement post-processing validation to filter out incorrectly emitted records
  • Avoid using the empty delimiter option in combination with null-termination and suppression flags until upgrade is complete
bash
# Verify uutils coreutils version
uu-cut --version

# Upgrade to patched version (example using cargo)
cargo install coreutils --version ">=0.8.0"

# Alternative: Use GNU coreutils cut explicitly if available
/usr/bin/cut -s -z -d '' -f1 input_file

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-684
  • Technical References
  • GitHub Pull Request Discussion

  • GitHub Release Version 0.8.0
  • Related CVEs
  • CVE-2026-35367: uutils coreutils Information Disclosure

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