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

CVE-2026-39866: Lawnchair Command Injection RCE Vulnerability

CVE-2026-39866 is a command injection vulnerability in Lawnchair's workflow dispatch input that enables remote code execution. This article covers the technical details, affected versions, and mitigation strategies.

Published: April 23, 2026

CVE-2026-39866 Overview

CVE-2026-39866 is a command injection vulnerability affecting Lawnchair, a free, open-source home app for Android. The vulnerability exists in the release_update.yml GitHub Actions workflow dispatch input, allowing attackers with repository access to inject arbitrary commands that execute within the CI/CD pipeline context.

Critical Impact

This command injection vulnerability enables arbitrary code execution within the GitHub Actions runner environment, potentially allowing attackers to compromise the build pipeline, steal secrets, or inject malicious code into release artifacts.

Affected Products

  • Lawnchair (all versions prior to commit fcba413f55dd47f8a3921445252849126c6266b2)

Discovery Timeline

  • April 21, 2026 - CVE-2026-39866 published to NVD
  • April 23, 2026 - Last updated in NVD database

Technical Details for CVE-2026-39866

Vulnerability Analysis

This vulnerability is classified as CWE-77 (Command Injection), a critical class of security flaws where user-controlled input is incorporated into system commands without proper sanitization. In the context of GitHub Actions workflows, workflow dispatch inputs that are directly interpolated into shell commands can be exploited by authenticated users who can trigger the workflow.

The vulnerable workflow release_update.yml accepts user input through the workflow dispatch mechanism. When this input is used directly in shell commands within the workflow steps without proper escaping or validation, an attacker can craft malicious input containing shell metacharacters or command separators to execute arbitrary commands on the GitHub Actions runner.

Root Cause

The root cause lies in the improper handling of workflow dispatch inputs within the GitHub Actions workflow file. The workflow accepts external input and passes it directly to shell commands without sanitization, allowing command injection. GitHub Actions workflows that use ${{ inputs.* }} or ${{ github.event.inputs.* }} syntax directly in run: blocks are susceptible to this type of injection when the input is not properly quoted or validated.

Attack Vector

The attack requires network access and low privileges (authenticated repository access with workflow trigger permissions). An attacker with the ability to manually trigger the workflow can supply specially crafted input containing shell command injection payloads. These payloads break out of the intended command context and execute arbitrary commands within the GitHub Actions runner environment.

The attacker could potentially:

  • Exfiltrate repository secrets and environment variables
  • Modify build artifacts before release
  • Pivot to other systems accessible from the runner
  • Persist access through modified workflow files

This vulnerability is exploited through malicious workflow dispatch input. For detailed technical analysis and the specific code changes, see the GitHub Security Advisory GHSA-9prc-pp2c-3427 and the patch commit.

Detection Methods for CVE-2026-39866

Indicators of Compromise

  • Unexpected or unauthorized workflow dispatch events in GitHub Actions logs
  • Unusual commands or network connections observed in workflow run logs
  • Modified workflow files or unexpected commits to the repository
  • Anomalous secrets access patterns or secret exfiltration attempts

Detection Strategies

  • Monitor GitHub audit logs for workflow dispatch events from unexpected users or at unusual times
  • Implement branch protection rules and require approval for workflow runs from external contributors
  • Review workflow run logs for suspicious command patterns or unexpected output
  • Enable GitHub's secret scanning and push protection features

Monitoring Recommendations

  • Configure alerts for manual workflow dispatches on sensitive repositories
  • Implement log aggregation for GitHub Actions workflow runs
  • Establish baseline behavior for CI/CD pipelines and alert on deviations
  • Use GitHub's repository security features to monitor for exposed secrets

How to Mitigate CVE-2026-39866

Immediate Actions Required

  • Update Lawnchair to commit fcba413f55dd47f8a3921445252849126c6266b2 or later immediately
  • Audit GitHub Actions workflow run history for any suspicious activity
  • Rotate any secrets that may have been exposed through the CI/CD pipeline
  • Review repository access permissions and remove unnecessary collaborators

Patch Information

The vulnerability is patched in commit fcba413f55dd47f8a3921445252849126c6266b2. Organizations using Lawnchair should update to this commit or any subsequent version that includes this fix. The patch can be reviewed at the GitHub Commit Details.

For additional context on the vulnerability and patch, refer to the GitHub Security Advisory GHSA-9prc-pp2c-3427.

Workarounds

  • Restrict workflow dispatch permissions to trusted maintainers only
  • Disable the vulnerable workflow until the patch can be applied
  • Implement input validation at the workflow level using conditional checks before processing
  • Use GitHub's environment protection rules to require manual approval for sensitive workflows
bash
# Example: Restrict workflow dispatch to specific actors
# Add the following to your workflow file as a temporary mitigation
# This checks if the actor is in an allowed list before proceeding

if: contains('["trusted-user-1","trusted-user-2"]', github.actor)

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechLawnchair

  • SeverityHIGH

  • CVSS Score7.4

  • EPSS Probability0.29%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:P/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-77
  • Vendor Resources
  • GitHub Commit Details

  • GitHub Security Advisory GHSA-9prc-pp2c-3427
  • Latest CVEs
  • CVE-2025-49454: TinySalt Path Traversal Vulnerability

  • CVE-2025-48261: MultiVendorX Information Disclosure Flaw

  • CVE-2025-32119: CardGate WooCommerce SQL Injection Flaw

  • CVE-2025-26879: s2Member Plugin Reflected XSS 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