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
    • 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-25143

CVE-2026-25143: melange RCE Vulnerability via Patch Pipeline

CVE-2026-25143 is a remote code execution flaw in melange's patch pipeline that allows attackers to execute arbitrary shell commands. This article covers the technical details, affected versions, impact, and mitigation.

Published: February 6, 2026

CVE-2026-25143 Overview

CVE-2026-25143 is a command injection vulnerability affecting Melange, a tool that allows users to build apk packages using declarative pipelines. The vulnerability exists in the patch pipeline component (pkg/build/pipelines/patch.yaml), where input-derived values such as series paths, patch filenames, and numeric parameters are embedded into shell scripts without proper quoting or validation. This allows an attacker who can influence patch-related inputs to inject shell metacharacters and execute arbitrary commands with the privileges of the melange build process.

Critical Impact

An attacker can achieve arbitrary command execution on the build host by injecting shell metacharacters through patch-related inputs, potentially compromising the entire build environment and any downstream artifacts.

Affected Products

  • Melange versions 0.10.0 to 0.40.2 (versions before 0.40.3)

Discovery Timeline

  • 2026-02-04 - CVE CVE-2026-25143 published to NVD
  • 2026-02-05 - Last updated in NVD database

Technical Details for CVE-2026-25143

Vulnerability Analysis

This vulnerability is classified as CWE-78 (Improper Neutralization of Special Elements used in an OS Command), commonly known as OS Command Injection. The flaw resides in Melange's built-in patch pipeline, which processes user-controlled inputs when constructing shell commands. The pipeline fails to sanitize or properly quote values derived from patch configurations before embedding them into shell script contexts.

When the melange build or melange license-check operations invoke the patch pipeline, the system constructs shell commands using series paths, patch filenames, and numeric parameters from the build configuration. Because these values are not properly escaped, an attacker can include shell metacharacters that break out of their intended string context and inject arbitrary commands.

Root Cause

The root cause lies in the pkg/build/pipelines/patch.yaml file, which directly interpolates input values into shell command strings without implementing proper input validation or shell escaping. The pipeline trusts that configuration inputs are benign, but in scenarios where build configurations can be influenced by external parties (such as pull request-driven CI systems or build-as-a-service platforms), this trust is misplaced.

The vulnerable code patterns involve string concatenation or template substitution that places user-controlled data directly into shell contexts, enabling command injection through characters like backticks, $(...) command substitutions, semicolons, pipes, and redirections.

Attack Vector

An attacker who can influence melange build configurations can exploit this vulnerability through several attack scenarios:

  1. Pull Request-Driven CI: By submitting a malicious pull request that modifies melange configuration files to include shell metacharacters in patch-related fields
  2. Build-as-a-Service: Through any service that accepts external build configurations for melange packages
  3. Supply Chain Attacks: By compromising upstream configurations that are consumed by downstream melange builds

Exploitation involves crafting patch-related input values that contain shell metacharacters. For example, a malicious patch filename could include backtick-enclosed commands or $(command) substitutions that execute when the patch pipeline processes the configuration.

The vulnerability mechanism involves shell metacharacter injection such as backticks for command substitution, $(...) syntax for command execution, semicolons for command chaining, pipes for output redirection, and redirection operators for file manipulation. For technical implementation details, refer to the GitHub Security Advisory GHSA-rf4g-89h5-crcr.

Detection Methods for CVE-2026-25143

Indicators of Compromise

  • Unexpected child processes spawned by melange build operations
  • Unusual network connections originating from build environments
  • Modifications to build artifacts or system files during build processes
  • Anomalous shell command patterns in build logs containing metacharacters

Detection Strategies

  • Monitor melange build configurations for suspicious characters in patch-related fields, including backticks, $(, semicolons, and pipe characters
  • Implement file integrity monitoring on build systems to detect unauthorized modifications
  • Review CI/CD pipeline logs for unusual command execution patterns during patch operations
  • Deploy runtime application self-protection (RASP) to detect command injection attempts

Monitoring Recommendations

  • Enable detailed logging for all melange build operations and review for anomalous patterns
  • Implement configuration validation checks before processing build configurations from untrusted sources
  • Monitor build host processes for unexpected command executions during patch pipeline stages
  • Set up alerts for builds that modify files outside expected directories

How to Mitigate CVE-2026-25143

Immediate Actions Required

  • Upgrade Melange to version 0.40.3 or later immediately
  • Audit existing melange configurations for potentially malicious input patterns
  • Review recent build logs for signs of exploitation, particularly unusual command executions
  • Implement strict input validation for any externally-sourced build configurations

Patch Information

The vulnerability has been patched in Melange version 0.40.3. The fix is available in commit bd132535cd9f57d4bd39d9ead0633598941af030. Organizations should upgrade to this version or later to remediate the vulnerability.

For additional details, refer to the GitHub Security Advisory GHSA-rf4g-89h5-crcr.

Workarounds

  • Restrict who can modify melange build configurations, particularly patch-related fields
  • Run melange builds in isolated, sandboxed environments with minimal privileges
  • Implement pre-build configuration validation that rejects inputs containing shell metacharacters
  • Disable automated builds from untrusted sources until the patch can be applied
bash
# Configuration example
# Verify current melange version
melange version

# Upgrade melange to patched version
go install chainguard.dev/melange@v0.40.3

# Alternatively, use container image with patched version
docker pull cgr.dev/chainguard/melange:latest

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechMelange

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-78
  • Technical References
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-rf4g-89h5-crcr
  • Related CVEs
  • CVE-2026-24844: Melange Build System RCE Vulnerability

  • CVE-2026-24843: Melange Path Traversal Vulnerability

  • CVE-2026-25145: Melange Path Traversal 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