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

CVE-2026-27701: LiveCode GitHub Actions RCE Vulnerability

CVE-2026-27701 is a JavaScript injection flaw in LiveCode's GitHub Actions workflow that allows attackers to execute arbitrary code with CI bot privileges. This post covers technical details, affected versions, and mitigation steps.

Published: February 27, 2026

CVE-2026-27701 Overview

CVE-2026-27701 is a JavaScript injection vulnerability in LiveCode, an open-source, client-side code playground. The vulnerability exists in the i18n-update-pull GitHub Actions workflow, where the title of a Pull Request associated with a triggering issue comment is interpolated directly into an actions/github-script JavaScript block using a GitHub Actions template expression. This allows an attacker to inject arbitrary JavaScript code by crafting a malicious PR title.

Critical Impact

Successful exploitation enables execution of arbitrary JavaScript with the privileges of the CI bot token (CI_APP_ID / CI_APP_PRIVATE_KEY), allowing exfiltration of repository secrets and unauthorized GitHub API operations.

Affected Products

  • LiveCode (prior to commit e151c64c2bd80d2d53ac1333f1df9429fe6a1a11)

Discovery Timeline

  • 2026-02-25 - CVE-2026-27701 published to NVD
  • 2026-02-25 - Last updated in NVD database

Technical Details for CVE-2026-27701

Vulnerability Analysis

This vulnerability falls under CWE-94 (Improper Control of Generation of Code - Code Injection). The flaw stems from unsafe handling of user-controlled input within GitHub Actions workflows. When the i18n-update-pull workflow processes pull request events, it directly interpolates the PR title into executable JavaScript code without proper sanitization.

GitHub Actions workflows commonly use template expressions (e.g., ${{ github.event.pull_request.title }}) to access context data. When this user-controlled data is placed directly into actions/github-script blocks, it creates a code injection vector. An attacker can craft a PR title containing JavaScript code that breaks out of the intended string context and executes arbitrary operations.

The attack requires network access and some user interaction, as the attacker must open a pull request that triggers the vulnerable workflow. Once triggered, the injected code runs with full access to the CI bot's credentials and permissions, potentially compromising the entire repository's CI/CD pipeline security.

Root Cause

The root cause is improper input sanitization in the GitHub Actions workflow definition. The i18n-update-pull workflow directly embedded the PR title from github.event.pull_request.title into a JavaScript execution context without escaping or validating the input. This allowed attackers to inject code by including JavaScript syntax in their PR titles.

Attack Vector

The attack is conducted over the network by an unauthenticated attacker who opens a pull request with a specially crafted title. The malicious title contains JavaScript code designed to escape the string interpolation context and execute arbitrary commands. When a maintainer or automated process triggers the vulnerable workflow (such as commenting on the PR), the injected JavaScript executes within the actions/github-script action.

The injected code runs with the permissions of the GitHub Actions bot, which typically includes access to repository secrets such as CI_APP_ID and CI_APP_PRIVATE_KEY. This enables attackers to exfiltrate sensitive credentials, modify repository contents, create releases, or perform other privileged GitHub API operations.

Detection Methods for CVE-2026-27701

Indicators of Compromise

  • Pull requests with unusual titles containing JavaScript syntax, special characters, or escape sequences
  • Unexpected GitHub API calls originating from CI workflows
  • Unauthorized modifications to repository secrets or settings
  • Anomalous workflow run logs showing execution of unintended code

Detection Strategies

  • Review GitHub Actions workflow logs for unexpected actions/github-script output or behavior
  • Monitor for pull requests with titles containing suspicious patterns like backticks, template literals, or function calls
  • Audit GitHub audit logs for API operations not associated with legitimate development activities
  • Implement workflow analysis tools to detect unsafe template expression usage in CI/CD configurations

Monitoring Recommendations

  • Enable GitHub audit logging and monitor for anomalous repository operations
  • Set up alerts for new pull requests from unknown contributors
  • Implement branch protection rules requiring workflow approval for external contributors
  • Regularly audit GitHub Actions workflows for unsafe interpolation patterns

How to Mitigate CVE-2026-27701

Immediate Actions Required

  • Update LiveCode to commit e151c64c2bd80d2d53ac1333f1df9429fe6a1a11 or later
  • Review recent pull requests for potential exploitation attempts
  • Rotate any secrets that may have been exposed, including CI_APP_ID and CI_APP_PRIVATE_KEY
  • Audit GitHub Actions workflow logs for suspicious activity

Patch Information

The vulnerability is fixed in commit e151c64c2bd80d2d53ac1333f1df9429fe6a1a11. Organizations using LiveCode should update to this commit or a later version that includes the fix. For detailed information about the fix, refer to the GitHub Commit Update and the GitHub Security Advisory GHSA-xh9w-5859-x97j.

Workarounds

  • Disable the i18n-update-pull workflow until the patch can be applied
  • Implement manual review requirements for all pull requests before workflow execution
  • Use environment-based secrets with restricted workflow permissions
  • Configure GitHub Actions to require approval for workflows triggered by external contributors

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechLivecode

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:H/AT:P/PR:N/UI:P/VC:H/VI:H/VA:N/SC:H/SI:H/SA:N/E:X/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
  • ConfidentialityHigh
  • IntegrityHigh
  • AvailabilityNone
  • CWE References
  • CWE-94
  • Technical References
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-xh9w-5859-x97j
  • Latest CVEs
  • CVE-2025-52479: HTTP.jl & URIs.jl CRLF Injection Flaw

  • CVE-2026-31740: Linux Kernel Race Condition Vulnerability

  • CVE-2026-31743: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31744: Linux Kernel NULL Pointer 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