The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
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-35369

CVE-2026-35369: uutils Coreutils DOS Vulnerability

CVE-2026-35369 is a denial-of-service flaw in uutils coreutils kill utility that misinterprets kill -1, potentially causing system crashes. This article covers technical details, affected versions, and mitigation.

Published: April 23, 2026

CVE-2026-35369 Overview

An argument parsing error in the kill utility of uutils coreutils incorrectly interprets kill -1 as a request to send the default signal (SIGTERM) to PID -1. Sending a signal to PID -1 causes the kernel to terminate all processes visible to the caller, potentially leading to a system crash or massive process termination. This differs from GNU coreutils, which correctly recognizes -1 as a signal number in this context and would instead report a missing PID argument.

Critical Impact

Local users executing kill -1 could inadvertently terminate all processes they have permission to signal, causing system instability, data loss, or complete system unavailability.

Affected Products

  • uutils coreutils (versions prior to 0.6.0)

Discovery Timeline

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

Technical Details for CVE-2026-35369

Vulnerability Analysis

This vulnerability stems from improper input validation (CWE-20) in the argument parsing logic of the kill utility within uutils coreutils. When a user invokes kill -1, the utility misinterprets the argument. Instead of recognizing -1 as specifying signal number 1 (SIGHUP), the parser incorrectly treats it as a request to send the default signal (SIGTERM) to process ID -1.

In Unix-like operating systems, PID -1 is a special value. When a signal is sent to PID -1, the kernel broadcasts that signal to all processes that the calling user has permission to signal, excluding the init process. This behavior is intentional and documented in the kill(2) system call, but it should never be triggered unintentionally due to argument parsing errors.

The root cause is a deviation from the argument parsing behavior of GNU coreutils. The GNU implementation correctly identifies -1 in this context as a signal specification and reports a missing PID argument error, preventing any signal from being sent. The uutils implementation fails to make this distinction, leading to potentially catastrophic results.

Root Cause

The vulnerability is caused by improper input validation in the argument parsing logic of the kill command. The parser fails to correctly distinguish between signal number arguments (which should be validated as signal identifiers) and target PID arguments. When -1 is passed without an explicit signal flag (like -s), the utility should recognize it as an ambiguous or malformed command. Instead, it defaults to sending SIGTERM to the interpreted PID value of -1.

This is a behavioral compatibility issue where uutils coreutils deviates from the expected behavior established by GNU coreutils, creating a potentially dangerous footgun for users migrating between implementations or expecting POSIX-compliant behavior.

Attack Vector

The vulnerability requires local access to execute. An attacker or an unwitting user with shell access could trigger mass process termination by running kill -1. The attack does not require elevated privileges beyond standard user access, though the impact is limited to processes the user has permission to signal. For privileged users (root), this could terminate nearly all system processes, causing a complete system failure.

The exploitation scenario is particularly dangerous in scripts or automated systems where kill -1 might be used with the expectation of GNU coreutils behavior (sending SIGHUP). Such scripts could inadvertently cause widespread service disruption when run on systems using uutils coreutils.

Detection Methods for CVE-2026-35369

Indicators of Compromise

  • Sudden, unexplained termination of multiple processes across the system
  • System logs showing SIGTERM signals received by numerous unrelated processes simultaneously
  • Application crashes or service outages coinciding with kill command execution
  • Audit logs showing kill -1 invocations immediately before mass process termination events

Detection Strategies

  • Monitor for execution of kill -1 commands on systems running uutils coreutils
  • Implement auditd rules to log all kill command invocations with signal-like arguments
  • Review shell history logs for patterns matching kill -1 or kill -[0-9]+ without explicit target PIDs
  • Compare installed coreutils version against known affected versions using package management tools

Monitoring Recommendations

  • Deploy process monitoring to detect abnormal rates of process termination events
  • Configure alerting for sudden drops in running process counts outside of maintenance windows
  • Establish baseline process counts and alert when significant deviations occur
  • Monitor system stability metrics that could indicate mass process termination

How to Mitigate CVE-2026-35369

Immediate Actions Required

  • Upgrade uutils coreutils to version 0.6.0 or later immediately
  • Audit scripts and automation that use the kill command for potentially affected invocations
  • Consider temporarily aliasing or wrapping the kill command to validate arguments before execution
  • Review recent system instability incidents that may have been caused by this vulnerability

Patch Information

The vulnerability has been addressed in uutils coreutils version 0.6.0. Users should update to this version or later to resolve the argument parsing issue. The fix corrects the argument parsing logic to properly identify signal number arguments versus PID arguments, aligning behavior with GNU coreutils.

For additional details on the fix, refer to the GitHub Pull Request Discussion and the GitHub Coreutils Release 0.6.0.

Workarounds

  • Use explicit signal syntax when invoking kill, such as kill -s HUP <pid> instead of kill -1
  • Temporarily switch to GNU coreutils kill utility if upgrading is not immediately feasible
  • Implement shell aliases or wrapper scripts that validate kill arguments before execution
  • Restrict shell access on critical systems until the patch can be applied
bash
# Workaround: Use explicit signal syntax to avoid ambiguity
# Instead of: kill -1
# Use: kill -s HUP <pid>

# Example wrapper function for .bashrc to catch dangerous invocations
kill() {
    if [[ "$1" == "-1" && -z "$2" ]]; then
        echo "Warning: 'kill -1' is ambiguous. Use 'kill -s HUP <pid>' instead." >&2
        return 1
    fi
    command kill "$@"
}

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechUutils Coreutils

  • 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:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-20
  • Technical References
  • GitHub Pull Request Discussion

  • GitHub Coreutils Release 0.6.0
  • Related CVEs
  • CVE-2026-35377: uutils coreutils env Utility DoS Flaw

  • CVE-2026-35378: uutils coreutils expr Utility DOS Flaw

  • CVE-2026-35373: uutils coreutils ln Utility DoS Vulnerability

  • CVE-2026-35365: uutils coreutils DoS Vulnerability
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