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-2024-26147

CVE-2024-26147: Helm Package Manager DOS Vulnerability

CVE-2024-26147 is a denial of service flaw in Helm package manager for Kubernetes that triggers panics when parsing malformed YAML files. This article covers technical details, affected versions, impact, and mitigation.

Updated: January 22, 2026

CVE-2024-26147 Overview

CVE-2024-26147 is an uninitialized variable vulnerability affecting Helm, the popular package manager for Kubernetes Charts. The vulnerability exists in how Helm parses index.yaml and plugin.yaml files when these files are missing expected metadata content. When Helm encounters index or plugin YAML files lacking all metadata, the application triggers a panic, resulting in a denial of service condition.

This vulnerability impacts both the Helm client and the Helm SDK. In the SDK, the issue manifests when using the LoadIndexFile or DownloadIndexFile functions in the repo package, or the LoadDir function in the plugin package. For Helm client users, the vulnerability affects repository addition operations and can completely disable all Helm functionality if a malicious plugin is present, as Helm inspects all known plugins on each invocation.

Critical Impact

A malicious actor could craft a repository with an empty or malformed index.yaml file, or distribute a malicious plugin with an incomplete plugin.yaml, causing Helm to panic and crash. This could effectively render Helm unusable in affected environments.

Affected Products

  • Helm versions prior to 3.14.2
  • Helm SDK versions prior to 3.14.2
  • Applications using affected LoadIndexFile, DownloadIndexFile, or LoadDir functions

Discovery Timeline

  • 2024-02-21 - CVE-2024-26147 published to NVD
  • 2025-01-09 - Last updated in NVD database

Technical Details for CVE-2024-26147

Vulnerability Analysis

The vulnerability is classified under CWE-457 (Use of Uninitialized Variable) and CWE-908 (Use of Uninitialized Resource). When Helm parses YAML configuration files for repositories or plugins, it expects certain metadata fields to be present. The code fails to properly validate or initialize variables before use when these expected fields are absent from the YAML structure.

The network-accessible nature of this vulnerability is particularly concerning because repository index files are typically fetched from remote sources. An attacker controlling or compromising a Helm chart repository could serve a malformed index.yaml file that triggers the panic condition when users attempt to add or update the repository.

Root Cause

The root cause is improper handling of YAML files that lack expected metadata content. When parsing these files, Helm attempts to access properties of data structures that were never properly initialized due to the missing metadata. This leads to a nil pointer dereference or similar runtime error, causing the Go application to panic.

The specific code paths affected are:

  • LoadIndexFile function in the repo package
  • DownloadIndexFile function in the repo package
  • LoadDir function in the plugin package

Attack Vector

The vulnerability can be exploited through two primary attack vectors:

  1. Malicious Repository: An attacker could set up or compromise a Helm chart repository and serve an index.yaml file with missing metadata. When a victim adds this repository using helm repo add or updates their repositories, Helm panics.

  2. Malicious Plugin: An attacker could distribute a malicious plugin containing a plugin.yaml file with missing metadata. Once installed, this plugin causes Helm to panic on every subsequent invocation, as Helm inspects all plugins at startup.

The vulnerability is exploitable over the network without authentication, as adding public Helm repositories is a common operation that does not require privileges.

Detection Methods for CVE-2024-26147

Indicators of Compromise

  • Unexpected Helm client crashes with panic messages related to nil pointer or uninitialized variable access
  • Presence of unfamiliar plugins in the Helm plugins directory (helm plugin list)
  • Recently added repositories with suspicious or malformed index.yaml files
  • Helm commands consistently failing with runtime panics after adding a new repository or plugin

Detection Strategies

  • Monitor Helm client execution for abnormal termination patterns and panic stack traces
  • Implement file integrity monitoring on Helm plugin directories to detect unauthorized plugin additions
  • Validate downloaded index.yaml files against expected schema before processing
  • Enable detailed logging for Helm operations to capture repository and plugin interaction events

Monitoring Recommendations

  • Configure alerting for repeated Helm process crashes in CI/CD pipelines and deployment automation
  • Implement network monitoring to detect connections to unknown or suspicious Helm repositories
  • Audit the list of configured Helm repositories and installed plugins periodically
  • Monitor for changes to Helm configuration files and plugin directories

How to Mitigate CVE-2024-26147

Immediate Actions Required

  • Upgrade Helm to version 3.14.2 or later immediately
  • Audit currently installed Helm plugins for any unfamiliar or suspicious entries
  • Review configured Helm repositories and remove any untrusted sources
  • If Helm is completely non-functional due to a malicious plugin, manually remove suspicious plugins from the filesystem

Patch Information

Helm has released version 3.14.2 which resolves this vulnerability. The fix is tracked in GitHub commit bb4cc9125503a923afb7988f3eb478722a8580af. For complete details on the vulnerability and remediation, refer to the GitHub Security Advisory GHSA-r53h-jv2g-vpx6.

Organizations using the Helm SDK should update to version 3.14.2 or implement defensive coding practices to handle potential panics.

Workarounds

  • For SDK users on versions prior to 3.14.2, wrap calls to LoadIndexFile, DownloadIndexFile, and LoadDir in recover blocks to catch panics gracefully
  • Manually remove malicious plugins from the Helm plugins directory if the client is non-functional (typically located at ~/.local/share/helm/plugins on Linux or %APPDATA%\helm\plugins on Windows)
  • Implement repository allowlisting to prevent users from adding untrusted Helm repositories
  • Validate YAML file contents before passing to Helm SDK functions in custom tooling
bash
# Remove a malicious plugin manually (Linux/macOS)
rm -rf ~/.local/share/helm/plugins/<malicious-plugin-name>

# Remove a malicious plugin manually (Windows)
rmdir /s /q %APPDATA%\helm\plugins\<malicious-plugin-name>

# Verify Helm version after upgrade
helm version --short
# Expected output: v3.14.2 or later

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechHelm

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.22%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-457

  • CWE-908
  • Vendor Resources
  • GitHub Commit Details

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2025-32386: Helm Helm DOS Vulnerability

  • CVE-2022-23524: Helm Chart Manager DOS Vulnerability

  • CVE-2026-35206: Helm Path Traversal Vulnerability

  • CVE-2026-35205: Helm Plugin Signature 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