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

CVE-2026-35380: uutils coreutils Logic Error Vulnerability

CVE-2026-35380 is a logic error in the uutils coreutils cut utility that misinterprets two single quotes as NUL delimiter, causing data corruption in scripts. This article covers technical details, affected systems, and fixes.

Published: April 23, 2026

CVE-2026-35380 Overview

A logic error vulnerability has been identified in the cut utility of uutils coreutils. The flaw causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters.

Critical Impact

Automated scripts and data processing pipelines relying on the cut utility may experience silent data corruption, potentially affecting downstream systems and data integrity without any visible error indicators.

Affected Products

  • uutils coreutils (versions prior to 0.8.0)
  • Systems using uutils coreutils as a replacement for GNU coreutils
  • Automated scripts and data pipelines utilizing the cut utility with delimiter options

Discovery Timeline

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

Technical Details for CVE-2026-35380

Vulnerability Analysis

This vulnerability falls under the category of Improper Input Validation (CWE-20). The root cause lies in how the cut utility processes delimiter arguments. When a user passes the literal two-byte string '' (two consecutive single quotes) as a delimiter via the -d or --output-delimiter options, the implementation incorrectly interprets this input as an empty delimiter and maps it to the NUL character (\0).

This behavior diverges from the expected functionality where the utility should either reject the invalid input or treat the two single quotes as literal characters. The consequence is that data fields are split or joined using NUL bytes instead of the intended delimiter, leading to corrupted output that may propagate through data processing workflows undetected.

Root Cause

The vulnerability stems from improper handling of edge cases in delimiter parsing logic within the cut utility. The code path responsible for processing the -d and --output-delimiter options fails to distinguish between a genuinely empty string and a string containing literal quote characters. This parsing ambiguity causes the implementation to default to using NUL as the delimiter when encountering the specific two-byte sequence of consecutive single quotes.

Attack Vector

This is a local vulnerability requiring the attacker to have access to execute commands on the target system. Exploitation occurs when:

  1. A script or pipeline uses the cut utility with user-controlled or malformed delimiter arguments
  2. The delimiter argument contains or evaluates to the literal '' (two single quotes)
  3. The cut utility silently processes the input using NUL as the delimiter instead of the expected character

The exploitation does not require special privileges beyond normal user access, though the impact is limited to data integrity issues rather than code execution. The vulnerability is particularly dangerous in automated environments where silent failures can propagate through multiple processing stages before detection.

The vulnerability mechanism involves incorrect input parsing in the delimiter handling code. When the cut utility receives '' as a delimiter argument, the parsing logic erroneously interprets this as an empty string and substitutes the NUL character. This behavior affects both the -d option for input field separation and the --output-delimiter option for output field joining. Technical details and the fix can be found in the GitHub Pull Request #11399.

Detection Methods for CVE-2026-35380

Indicators of Compromise

  • Unexpected NUL bytes appearing in output files generated by scripts using the cut utility
  • Data processing pipelines producing malformed or truncated output without explicit errors
  • Log entries showing unusual field counts or parsing failures in downstream applications
  • Scripts utilizing cut -d '' or cut --output-delimiter='' with literal single quote characters

Detection Strategies

  • Audit shell scripts and data processing pipelines for usage of the cut utility with delimiter options containing single quotes
  • Implement output validation to detect unexpected NUL characters in processed data
  • Review version information of uutils coreutils installations and compare against the fixed version 0.8.0
  • Monitor for data integrity anomalies in systems relying on field-delimited text processing

Monitoring Recommendations

  • Enable detailed logging for data processing pipelines to capture intermediate output for validation
  • Implement checksums or hash validation for critical data transformation workflows
  • Set up alerting for unexpected binary characters in text-based data streams
  • Conduct periodic audits of coreutils utility versions across infrastructure

How to Mitigate CVE-2026-35380

Immediate Actions Required

  • Upgrade uutils coreutils to version 0.8.0 or later, which contains the fix for this vulnerability
  • Review and audit existing scripts that use the cut utility with delimiter options
  • Validate output from data processing pipelines that rely on the cut utility
  • Consider temporarily using GNU coreutils as an alternative until upgrades are completed

Patch Information

The vulnerability has been addressed in uutils coreutils version 0.8.0. The fix corrects the delimiter parsing logic to properly handle edge cases involving quote characters. Users should upgrade to this version or later to remediate the vulnerability. The patch details are available in the GitHub Pull Request #11399 and the fixed release can be obtained from the GitHub Release Tag 0.8.0.

Workarounds

  • Avoid using the literal '' string as a delimiter argument with the cut utility
  • Implement input validation in scripts to sanitize delimiter arguments before passing to cut
  • Use alternative field-splitting utilities such as awk or sed for critical data processing tasks
  • Add output validation steps to detect and flag potential data corruption from delimiter issues
bash
# Verify uutils coreutils version to check vulnerability status
uutils --version

# Alternative: Use awk for field extraction as a workaround
# Instead of: cut -d ',' -f1 input.txt
awk -F',' '{print $1}' input.txt

# Validate output for unexpected NUL characters
cat processed_output.txt | od -c | grep '\\0'

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechCoreutils

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.02%

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

  • GitHub Release Tag 0.8.0
  • Related CVEs
  • CVE-2026-35379: 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