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

CVE-2026-35344: uutils dd Information Disclosure Flaw

CVE-2026-35344 is an information disclosure flaw in uutils coreutils dd utility that silently suppresses file truncation errors, potentially causing data corruption in backup scripts. This article covers technical details, impact, and mitigation.

Published: April 23, 2026

CVE-2026-35344 Overview

CVE-2026-35344 is an Improper Check for Exceptional Conditions vulnerability (CWE-252) affecting the dd utility in uutils coreutils. The vulnerability occurs when the utility suppresses errors during file truncation operations by unconditionally calling Result::ok() on truncation attempts. While this behavior was intended to mimic GNU behavior for special files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems.

Critical Impact

This vulnerability can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data.

Affected Products

  • uutils coreutils (dd utility)

Discovery Timeline

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

Technical Details for CVE-2026-35344

Vulnerability Analysis

This vulnerability stems from improper error handling in the dd utility's file truncation logic. The dd command is commonly used for low-level copying and conversion of data, making it a critical tool in backup scripts, disk imaging operations, and data migration workflows.

The root issue is that the implementation unconditionally calls Result::ok() on truncation attempts, which converts any error result into None without propagating the failure to the caller. This design choice was made to emulate GNU coreutils behavior when writing to special files that don't support truncation (such as /dev/null). However, the implementation fails to distinguish between expected truncation failures on special files and unexpected failures on regular files or directories.

When a truncation operation fails due to a full disk or read-only file system, the error is silently swallowed. The utility continues execution and may report success to the calling script, even though the destination file was not properly written. This creates a dangerous scenario where backup or migration scripts believe data was successfully copied when the destination actually contains stale, incomplete, or corrupted data.

Root Cause

The vulnerability is classified as CWE-252: Unchecked Return Value. The dd utility fails to properly check the return value of file truncation operations. By unconditionally calling Result::ok() on the truncation result, the code discards error information that would indicate the operation failed. This pattern of ignoring return values is a common source of silent failures in system utilities where error propagation is critical for data integrity.

Attack Vector

This vulnerability requires local access to exploit. An attacker or automated process running dd operations on a system with constrained disk space or mounted read-only filesystems could trigger the condition. While the vulnerability is not directly exploitable for code execution, the integrity impact is significant in automated workflows. Consider a scenario where:

  1. A backup script uses dd to copy critical data
  2. The destination volume is full or becomes read-only during the operation
  3. The truncation failure is silently ignored
  4. The script reports success despite incomplete or corrupted data
  5. The original data is subsequently deleted or modified, believing the backup is valid

For additional technical details, see the GitHub Coreutils Issue.

Detection Methods for CVE-2026-35344

Indicators of Compromise

  • Backup or migration scripts completing successfully but destination files contain stale or incomplete data
  • Disk space warnings coinciding with dd operations that reported success
  • File size mismatches between source and destination after dd operations

Detection Strategies

  • Compare checksums (MD5, SHA256) of source and destination files after dd operations to verify data integrity
  • Monitor system logs for disk space warnings or read-only filesystem errors during backup windows
  • Implement post-copy verification in backup scripts that independently validate the destination file

Monitoring Recommendations

  • Add automated verification steps to backup and migration workflows that use dd
  • Monitor filesystem capacity thresholds and alert before disks reach capacity
  • Review backup logs for any anomalies in operation timing or file sizes that could indicate silent failures

How to Mitigate CVE-2026-35344

Immediate Actions Required

  • Audit existing backup and migration scripts that rely on dd from uutils coreutils
  • Implement independent verification of dd operations using checksums or file comparisons
  • Consider using GNU coreutils dd as an alternative until a patch is available
  • Add explicit disk space checks before running dd operations in automated scripts

Patch Information

Monitor the GitHub Coreutils Issue for updates on official patches. As of the last update, users should verify successful data operations independently.

Workarounds

  • Use sync command after dd operations and verify the destination file manually
  • Implement wrapper scripts that compare source and destination checksums after dd completes
  • Pre-check available disk space before running dd operations to avoid triggering the truncation failure
  • Use alternative tools such as rsync with verification flags for critical data operations
bash
# Verification workaround example
# After dd operation, verify data integrity
dd if=/source/file of=/destination/file bs=4M status=progress
sync
# Verify checksums match
SOURCE_HASH=$(sha256sum /source/file | awk '{print $1}')
DEST_HASH=$(sha256sum /destination/file | awk '{print $1}')
if [ "$SOURCE_HASH" != "$DEST_HASH" ]; then
    echo "ERROR: Data verification failed - checksums do not match"
    exit 1
fi

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-252
  • Technical References
  • GitHub Coreutils Issue
  • Related CVEs
  • CVE-2026-35343: uutils coreutils Information Disclosure

  • 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