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

CVE-2026-42294: Argo Workflows DoS Vulnerability

CVE-2026-42294 is a denial of service flaw in Argoproj Argo Workflows that allows attackers to crash the server via memory exhaustion. This article covers the technical details, affected versions, impact, and mitigation.

Published: May 18, 2026

CVE-2026-42294 Overview

CVE-2026-42294 is a denial-of-service vulnerability in Argo Workflows, an open-source container-native workflow engine for orchestrating parallel jobs on Kubernetes. The flaw resides in the Webhook Interceptor, which reads the entire HTTP request body into memory before authenticating the request or validating its signature. The vulnerable code path is reachable through the publicly accessible /api/v1/events/ endpoint. An unauthenticated attacker can submit a request with a multi-gigabyte body to force the Argo Server to allocate excessive memory, triggering an Out-Of-Memory (OOM) crash. The issue affects all versions prior to 3.7.14 and 4.0.5 and is tracked under [CWE-770: Allocation of Resources Without Limits or Throttling].

Critical Impact

Unauthenticated attackers can crash the Argo Server and disrupt Kubernetes workflow orchestration by sending a single oversized webhook payload.

Affected Products

  • Argoproj Argo Workflows versions prior to 3.7.14
  • Argoproj Argo Workflows versions prior to 4.0.5
  • Deployments exposing the /api/v1/events/ webhook endpoint

Discovery Timeline

  • 2026-05-09 - CVE-2026-42294 published to NVD
  • 2026-05-14 - Last updated in NVD database

Technical Details for CVE-2026-42294

Vulnerability Analysis

The vulnerability exists in server/auth/webhook/interceptor.go within the Argo Server. The interceptor needs the raw request body to verify the webhook signature before forwarding the request to the gRPC handler. To do this, it calls io.ReadAll(r.Body) with no upper bound on the number of bytes consumed. Because authentication and signature verification occur after the read completes, an attacker does not need any valid credentials or signing material to reach the allocation. Submitting a single request several gigabytes in size forces the Go runtime to allocate a buffer of equivalent size on the heap, exhausting available memory on the Argo Server pod and causing termination by the Kubernetes OOM killer.

Root Cause

The root cause is missing input size enforcement on a network-facing endpoint. The webhook interceptor trusts the client-supplied Content-Length and stream length while staging the body for later signature checks. Without a LimitReader, the read is bounded only by the attacker's willingness to send data and the server's available memory.

Attack Vector

Exploitation requires only network access to the Argo Server's /api/v1/events/ endpoint, which is intentionally exposed to receive webhooks from external systems. No authentication, no valid signature, and no user interaction are required. Repeated requests can keep the service in a crash loop, producing sustained denial of service for all workflow orchestration handled by the affected instance.

go
// Patch from server/auth/webhook/interceptor.go
		return fmt.Errorf("failed to get webhook clients: %w", err)
	}
	// we need to read the request body to check the signature, but we still need it for the GRPC request,
-	// so read it all now, and then reinstate when we are done
-	buf, _ := io.ReadAll(r.Body)
+	// so read it all now, and then reinstate when we are done.
+	// Limit to 2MB to prevent denial-of-service via oversized webhook payloads.
+	const maxWebhookSize = 2 * 1024 * 1024 // 2MB
+	buf, err2 := io.ReadAll(io.LimitReader(r.Body, maxWebhookSize+1))
+	if err2 != nil {
+		return fmt.Errorf("failed to read webhook request body: %w", err2)
+	}
+	if len(buf) > maxWebhookSize {
+		return fmt.Errorf("webhook request body exceeds maximum size of 2MB")
+	}
	defer func() { r.Body = io.NopCloser(bytes.NewBuffer(buf)) }()

Source: Argo Workflows commit 7abb4de. The patch wraps r.Body in an io.LimitReader capped at 2 MB and rejects requests that exceed the threshold before any further processing.

Detection Methods for CVE-2026-42294

Indicators of Compromise

  • HTTP POST requests to /api/v1/events/ with Content-Length values in the hundreds of megabytes or gigabytes.
  • Argo Server pods terminated with OOMKilled status in Kubernetes events.
  • Repeated Argo Server pod restarts correlated with inbound traffic from a small set of source IPs.

Detection Strategies

  • Inspect ingress and service-mesh access logs for unusually large request bodies targeting the Argo Server events endpoint.
  • Alert on Argo Server container memory usage spikes that precede restart events.
  • Correlate Kubernetes Reason=OOMKilled events on Argo Server workloads with traffic patterns on the webhook endpoint.

Monitoring Recommendations

  • Track pod restart counts and memory saturation metrics for Argo Server deployments through Prometheus or equivalent.
  • Forward ingress controller logs and Kubernetes audit logs to a centralized analytics platform for anomaly review.
  • Establish a baseline for typical webhook payload sizes and alert on deviations.

How to Mitigate CVE-2026-42294

Immediate Actions Required

  • Upgrade Argo Workflows to version 3.7.14 or 4.0.5, which enforce a 2 MB cap on webhook request bodies.
  • Restrict network exposure of /api/v1/events/ to known webhook source ranges where operationally feasible.
  • Configure Kubernetes resource requests and limits on the Argo Server pod to contain blast radius from memory spikes.

Patch Information

The fix is delivered in Argo Workflows v3.7.14 and Argo Workflows v4.0.5. The vendor advisory is published as GHSA-jcc8-g2q4-9fxq. The remediation introduces an io.LimitReader wrapper around the request body in the webhook interceptor and rejects payloads exceeding 2 MB before signature validation.

Workarounds

  • Place a reverse proxy, ingress controller, or Web Application Firewall (WAF) in front of the Argo Server and enforce a maximum request body size on /api/v1/events/.
  • Apply Kubernetes NetworkPolicy rules to restrict access to the webhook endpoint to specific upstream sources.
  • Set strict memory limits on the Argo Server pod so an OOM event isolates the affected replica rather than destabilizing the node.
bash
# Example NGINX ingress annotation to cap webhook request body size
kubectl annotate ingress argo-server \
  nginx.ingress.kubernetes.io/proxy-body-size=2m --overwrite

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechArgo Workflows

  • SeverityHIGH

  • CVSS Score8.2

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-770
  • Technical References
  • GitHub Release v3.7.14

  • GitHub Release v4.0.5
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-jcc8-g2q4-9fxq
  • Related CVEs
  • CVE-2026-42183: Argoproj Argo Workflows DOS Vulnerability

  • CVE-2026-40886: Argo Workflows DoS Vulnerability

  • CVE-2026-42295: Argo Workflows Credential Disclosure Flaw

  • CVE-2026-42296: Argo Workflows Auth Bypass Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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