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

CVE-2026-40924: Tekton Pipelines HTTP Resolver DOS Flaw

CVE-2026-40924 is a denial of service vulnerability in Tekton Pipelines HTTP resolver that allows attackers to crash resolver pods via oversized responses. This article covers technical details, affected versions, and patches.

Published: April 23, 2026

CVE-2026-40924 Overview

CVE-2026-40924 is a Denial of Service (DoS) vulnerability in Tekton Pipelines, a Kubernetes-native CI/CD pipeline framework. The vulnerability exists in the HTTP resolver's FetchHttpResource function, which fails to implement response body size limits when calling io.ReadAll(resp.Body). This allows authenticated tenants to trigger out-of-memory (OOM) conditions that crash the shared resolver pod, denying service to the entire Kubernetes cluster.

Critical Impact

Any tenant with permission to create TaskRuns or PipelineRuns can crash the tekton-pipelines-resolvers pod by pointing the HTTP resolver at a malicious server, causing cluster-wide CI/CD pipeline resolution failures and sustained crash loops.

Affected Products

  • Tekton Pipelines versions prior to 1.11.1
  • Deprecated pkg/resolution/resolver/http implementation
  • Current pkg/remoteresolution/resolver/http implementation

Discovery Timeline

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

Technical Details for CVE-2026-40924

Vulnerability Analysis

The vulnerability stems from a Resource Exhaustion flaw (CWE-400) in Tekton Pipelines' HTTP resolver component. When the resolver fetches remote resources via HTTP, it reads the entire response body into memory without implementing any size constraints. An attacker can exploit this by configuring a TaskRun or PipelineRun to reference a malicious HTTP endpoint that returns an extremely large response payload within the 1-minute timeout window.

The architectural design of Tekton Pipelines consolidates all resolver types—Git, Hub, Bundle, Cluster, and HTTP—into a single pod (tekton-pipelines-resolvers). This creates a single point of failure: when the HTTP resolver consumes excessive memory and triggers an OOM kill, all resolution capabilities for the entire cluster are disrupted simultaneously.

Root Cause

The root cause is the unsafe use of io.ReadAll(resp.Body) without implementing response size validation or streaming limits. The FetchHttpResource function blindly trusts and loads the complete HTTP response into memory, regardless of its size. This design flaw exists in both the deprecated pkg/resolution/resolver/http and the current pkg/remoteresolution/resolver/http code paths, indicating the vulnerability was carried forward during refactoring.

Attack Vector

The attack requires network access and low-privilege authentication (permission to create TaskRuns or PipelineRuns). An attacker performs the following sequence:

  1. Sets up an attacker-controlled HTTP server configured to return a very large response body (multiple gigabytes)
  2. Creates a TaskRun or PipelineRun with an HTTP resolver reference pointing to the malicious server
  3. The tekton-pipelines-resolvers pod attempts to fetch the resource and load the entire response into memory
  4. The pod exceeds its memory limits and is OOM-killed by Kubernetes
  5. The attacker can repeat this process to maintain a sustained crash loop, effectively denying CI/CD service to all cluster tenants

The vulnerability is particularly dangerous because a single malicious tenant can disrupt pipelines for all other tenants sharing the cluster.

Detection Methods for CVE-2026-40924

Indicators of Compromise

  • Repeated OOM kill events for the tekton-pipelines-resolvers pod in Kubernetes logs
  • Sudden memory spikes in resolver pod metrics immediately before crashes
  • TaskRuns or PipelineRuns referencing unusual or external HTTP URLs
  • High network ingress to the resolvers pod from unexpected external IPs

Detection Strategies

  • Monitor Kubernetes events for OOMKilled status on the tekton-pipelines-resolvers pod
  • Implement alerting on resolver pod restart counts exceeding baseline thresholds
  • Audit TaskRun and PipelineRun specifications for HTTP resolver references to external or untrusted URLs
  • Review HTTP resolver requests in network flow logs for abnormally large response sizes

Monitoring Recommendations

  • Configure Prometheus alerts for memory utilization approaching limits on the resolvers pod
  • Enable Kubernetes audit logging for TaskRun and PipelineRun creation events
  • Implement network policies to restrict egress from resolver pods to approved endpoints only
  • Set up pod disruption alerts to detect sustained crash loops in critical Tekton components

How to Mitigate CVE-2026-40924

Immediate Actions Required

  • Upgrade Tekton Pipelines to version 1.11.1 or later immediately
  • Review existing TaskRuns and PipelineRuns for HTTP resolver references to untrusted URLs
  • Implement network policies to restrict HTTP resolver egress to known, trusted endpoints
  • Consider temporarily disabling the HTTP resolver if not required for operations

Patch Information

The vulnerability is fixed in Tekton Pipelines version 1.11.1. The patch implements proper response body size limits in the HTTP resolver's FetchHttpResource function. Organizations should upgrade to 1.11.1 or later using their standard Kubernetes deployment methods.

For detailed patch information, refer to the GitHub Pipeline Release v1.11.1 and the GitHub Security Advisory GHSA-m2cx-gpqf-qf74.

Workarounds

  • Restrict TaskRun and PipelineRun creation permissions to trusted users only using Kubernetes RBAC
  • Implement network policies that whitelist only approved HTTP resolver target endpoints
  • Deploy the HTTP resolver in a separate pod with strict resource limits to isolate failures
  • Use alternative resolver types (Git, Bundle, Cluster) that do not rely on arbitrary HTTP endpoints
bash
# Example: Apply resource limits to tekton-pipelines-resolvers deployment
kubectl patch deployment tekton-pipelines-resolvers -n tekton-pipelines --type='json' -p='[
  {
    "op": "add",
    "path": "/spec/template/spec/containers/0/resources/limits",
    "value": {
      "memory": "512Mi",
      "cpu": "500m"
    }
  }
]'

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechTekton

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-400
  • Technical References
  • GitHub Pipeline Release v1.11.1

  • GitHub Security Advisory GHSA-m2cx-gpqf-qf74
  • Related CVEs
  • CVE-2026-25542: Tekton Pipelines Auth Bypass 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