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

CVE-2026-35343: uutils coreutils Information Disclosure

CVE-2026-35343 is an information disclosure flaw in uutils coreutils cut utility that fails to suppress non-delimited lines when using the -s option. This article covers technical details, affected versions, and mitigation.

Published: April 23, 2026

CVE-2026-35343 Overview

The cut utility in uutils coreutils incorrectly handles the -s (only-delimited) option when a newline character is specified as the delimiter. The implementation fails to verify the only_delimited flag in the cut_fields_newline_char_delim function, causing the utility to print non-delimited lines that should have been suppressed. This can lead to unexpected data being passed to downstream scripts that rely on strict output filtering.

Critical Impact

Non-delimited lines are incorrectly included in output when using the -s flag with newline delimiter, potentially causing data integrity issues in downstream processing pipelines.

Affected Products

  • uutils coreutils versions prior to 0.7.0

Discovery Timeline

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

Technical Details for CVE-2026-35343

Vulnerability Analysis

This vulnerability falls under the category of Input Validation Error (CWE-670: Always-Incorrect Control Flow Implementation). The cut utility in uutils coreutils contains a logic flaw where the only_delimited flag is not properly checked within the cut_fields_newline_char_delim function. When users specify the -s option, the utility should suppress lines that do not contain the specified delimiter. However, when a newline character is used as the delimiter, this suppression logic is bypassed due to the missing flag verification.

The local attack vector requires the attacker to have access to the system where uutils coreutils is installed. The integrity impact occurs because scripts and pipelines expecting filtered output may receive unexpected data, potentially leading to incorrect processing results or data leakage in automated workflows.

Root Cause

The root cause is an incomplete implementation in the cut_fields_newline_char_delim function. While other delimiter-handling code paths properly check the only_delimited flag before outputting lines, this specific code path for newline character delimiters omits the necessary conditional check. This represents an Always-Incorrect Control Flow Implementation where the control flow does not correctly account for all valid input combinations.

Attack Vector

The attack vector requires local access to a system running uutils coreutils. An attacker or unexpected input could exploit this flaw in scenarios where:

  1. A shell script uses cut -s -d'\n' to process sensitive data expecting strict filtering
  2. The utility outputs lines that should be suppressed based on the -s flag
  3. Downstream processes receive and handle data that was meant to be filtered out

This could be particularly impactful in data processing pipelines, log parsing operations, or any automation that relies on the -s flag for output sanitization when using newline as a delimiter.

The vulnerability manifests in the cut_fields_newline_char_delim function where the only_delimited flag check is missing. See the GitHub Pull Request for technical implementation details and the fix.

Detection Methods for CVE-2026-35343

Indicators of Compromise

  • Unexpected output from cut commands using -s with newline delimiter
  • Downstream script failures or data inconsistencies when processing cut output
  • Pipeline results containing more lines than expected when filtering with -s -d'\n'

Detection Strategies

  • Audit shell scripts and automation that use uutils cut with the -s flag and newline delimiter
  • Compare uutils cut output against GNU coreutils cut for equivalent commands to identify discrepancies
  • Implement input validation in downstream scripts to verify expected output format

Monitoring Recommendations

  • Monitor for unexpected data processing errors in pipelines using uutils coreutils
  • Review logs from data processing jobs that rely on cut utility filtering
  • Track version deployments of uutils coreutils across systems to ensure patched versions are installed

How to Mitigate CVE-2026-35343

Immediate Actions Required

  • Upgrade uutils coreutils to version 0.7.0 or later
  • Review and audit scripts that use cut -s with newline as delimiter
  • Consider using GNU coreutils cut as a temporary alternative if immediate upgrade is not possible
  • Add validation checks in downstream scripts to verify expected output format

Patch Information

The fix has been implemented in uutils coreutils version 0.7.0. The patch adds the proper only_delimited flag check to the cut_fields_newline_char_delim function, ensuring consistent behavior across all delimiter types.

For detailed patch information, refer to the GitHub Pull Request #11143 and the GitHub Release 0.7.0.

Workarounds

  • Add post-processing validation to filter output if upgrade is not immediately possible
  • Use GNU coreutils cut instead of uutils cut for critical operations requiring the -s flag with newline delimiter
  • Implement wrapper scripts that validate cut output before passing to downstream processes
bash
# Upgrade uutils coreutils to patched version
cargo install coreutils --version ">=0.7.0"

# Verify installed version
cut --version

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

  • Vulnerability Details
  • TypeInformation Disclosure

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

  • GitHub Release 0.7.0
  • Related CVEs
  • CVE-2026-35344: uutils dd Information Disclosure Flaw

  • CVE-2026-35351: uutils coreutils Information Disclosure

  • CVE-2026-35371: uutils coreutils Information Disclosure

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