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

CVE-2026-40923: Tekton Pipelines Path Traversal Flaw

CVE-2026-40923 is a path traversal vulnerability in Tekton Pipelines that bypasses VolumeMount path restrictions, allowing attackers to mount volumes under restricted internal paths. This article covers technical details, affected versions, impact, and mitigation steps.

Published: April 23, 2026

CVE-2026-40923 Overview

CVE-2026-40923 is a Path Traversal vulnerability affecting Tekton Pipelines, a Kubernetes-style resource framework for declaring CI/CD-style pipelines. Prior to version 1.11.1, a validation bypass in the VolumeMount path restriction allows attackers to mount volumes under restricted /tekton/ internal paths by leveraging .. path traversal components.

The vulnerability stems from improper input validation where the restriction check uses strings.HasPrefix without calling filepath.Clean first, allowing malicious paths to bypass security controls while still resolving to restricted directories at runtime.

Critical Impact

Attackers with low-privilege access can bypass VolumeMount path restrictions to access or modify sensitive Tekton internal directories, potentially compromising CI/CD pipeline integrity and confidentiality.

Affected Products

  • Tekton Pipelines versions prior to 1.11.1
  • Kubernetes environments running vulnerable Tekton Pipeline deployments
  • CI/CD infrastructure utilizing Tekton for pipeline orchestration

Discovery Timeline

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

Technical Details for CVE-2026-40923

Vulnerability Analysis

This vulnerability is classified under CWE-22 (Improper Limitation of a Pathname to a Restricted Directory), commonly known as Path Traversal. The core issue lies in how Tekton Pipelines validates VolumeMount paths before allowing volume mounting operations.

The validation mechanism is designed to prevent mounting volumes under the /tekton/ directory tree, which contains sensitive internal resources such as pipeline results, credentials, and execution state. However, the implementation fails to normalize paths before performing the prefix check, creating a significant security gap.

When a user supplies a path like /tekton/home/../results, the strings.HasPrefix function checks if the path starts with a restricted prefix. Since /tekton/home/ appears to be a non-restricted subdirectory, the validation passes. However, at runtime, the operating system resolves the .. component, and the actual mount destination becomes /tekton/results — a restricted internal path.

This validation bypass could allow attackers with the ability to create or modify pipeline definitions to access or manipulate sensitive Tekton internal directories, potentially leading to information disclosure or integrity compromise of CI/CD operations.

Root Cause

The root cause is the use of strings.HasPrefix for path validation without prior path canonicalization via filepath.Clean. This allows path traversal sequences (..) to bypass the intended directory restrictions. The validation logic incorrectly assumes that user-supplied paths are already normalized, creating a Time-of-Check Time-of-Use (TOCTOU) vulnerability where the checked path differs from the resolved path.

Attack Vector

The attack vector is network-based, requiring authenticated access to the Tekton Pipelines API. An attacker with low privileges (the ability to define or modify pipeline tasks) can craft a VolumeMount specification with path traversal components. The attack requires no user interaction and can be executed remotely against any Kubernetes cluster running a vulnerable Tekton Pipelines installation.

A malicious VolumeMount path such as /tekton/home/../results or /tekton/workspace/../creds would pass the prefix validation but resolve to restricted directories at runtime, allowing unauthorized access to sensitive pipeline internals.

Detection Methods for CVE-2026-40923

Indicators of Compromise

  • VolumeMount specifications containing .. path traversal sequences targeting /tekton/ paths
  • Pipeline definitions with unusual volume mounts attempting to access internal Tekton directories
  • Unexpected file access or modifications within /tekton/results, /tekton/creds, or similar protected paths
  • Audit logs showing volume mount requests with non-canonical paths that resolve to restricted locations

Detection Strategies

  • Implement Kubernetes admission controllers to validate and canonicalize VolumeMount paths before accepting pipeline definitions
  • Configure audit logging to capture all VolumeMount operations and flag paths containing .. sequences
  • Deploy runtime security monitoring to detect unexpected file access patterns within Tekton internal directories
  • Use policy engines like OPA/Gatekeeper to enforce path normalization requirements on pipeline resources

Monitoring Recommendations

  • Enable Kubernetes audit logging for Tekton CRD operations (Tasks, TaskRuns, Pipelines, PipelineRuns)
  • Monitor for VolumeMount definitions with path patterns matching */tekton/*/../*
  • Alert on any access attempts to /tekton/results, /tekton/creds, or /tekton/run from user-defined volumes
  • Implement file integrity monitoring on Tekton internal directories within pipeline pods

How to Mitigate CVE-2026-40923

Immediate Actions Required

  • Upgrade Tekton Pipelines to version 1.11.1 or later immediately
  • Audit existing pipeline definitions for VolumeMount paths containing .. traversal sequences
  • Implement admission control policies to reject pipeline definitions with non-canonical VolumeMount paths
  • Review and restrict RBAC permissions for pipeline definition creation and modification

Patch Information

The vulnerability is fixed in Tekton Pipelines version 1.11.1. The patch implements proper path canonicalization using filepath.Clean before performing the restricted path prefix check, ensuring that path traversal sequences are resolved before validation.

For detailed information about the fix, refer to the GitHub Tekton Release v1.11.1 and the GitHub Security Advisory GHSA-rx35-6rhx-7858.

Workarounds

  • Deploy Kubernetes admission controllers or OPA policies to validate and reject VolumeMount paths containing .. components
  • Restrict pipeline creation and modification permissions to trusted administrators only
  • Implement network segmentation to limit access to the Tekton API from untrusted networks
  • Use runtime security tools to monitor and block unexpected access to /tekton/ internal directories
bash
# Example OPA policy to block path traversal in VolumeMounts
# Add to your Gatekeeper ConstraintTemplate
package tekton.volumemount.pathtraversal

violation[{"msg": msg}] {
  input.review.object.kind == "TaskRun"
  volume_mount := input.review.object.spec.taskSpec.steps[_].volumeMounts[_]
  contains(volume_mount.mountPath, "..")
  msg := sprintf("VolumeMount path contains path traversal sequence: %v", [volume_mount.mountPath])
}

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechTekton Pipelines

  • SeverityMEDIUM

  • CVSS Score5.4

  • EPSS Probability0.04%

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

  • GitHub Security Advisory GHSA-rx35-6rhx-7858
  • Related CVEs
  • CVE-2026-33211: Tekton Pipelines Path Traversal Flaw

  • CVE-2026-40161: Tekton Pipelines Information Disclosure

  • CVE-2026-40938: Tekton Pipelines Git Resolver RCE Flaw

  • CVE-2026-33022: Tekton Pipelines 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