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

CVE-2026-1699: Eclipse Theia Website RCE Vulnerability

CVE-2026-1699 is a remote code execution vulnerability in Eclipse Theia Website's GitHub Actions workflow that allowed attackers to execute arbitrary code with access to secrets. This article covers technical details, impact, and mitigation.

Published: February 6, 2026

CVE-2026-1699 Overview

A critical arbitrary code execution vulnerability has been discovered in the Eclipse Theia Website repository's GitHub Actions workflow configuration. The workflow file .github/workflows/preview.yml uses the pull_request_target trigger while checking out and executing untrusted pull request code. This dangerous pattern allows any GitHub user to execute arbitrary code within the repository's CI environment with access to repository secrets and a GITHUB_TOKEN with extensive write permissions including contents:write, packages:write, pages:write, and actions:write.

Critical Impact

An attacker could exfiltrate repository secrets, publish malicious packages to the eclipse-theia organization, modify the official Theia website content, and push malicious code directly to the repository.

Affected Products

  • Eclipse Theia Website Repository
  • GitHub Actions workflows using pull_request_target trigger
  • Eclipse Theia organization packages and website infrastructure

Discovery Timeline

  • 2026-01-30 - CVE-2026-1699 published to NVD
  • 2026-02-04 - Last updated in NVD database

Technical Details for CVE-2026-1699

Vulnerability Analysis

This vulnerability falls under CWE-829 (Inclusion of Functionality from Untrusted Control Sphere), where the GitHub Actions workflow includes and executes code from an untrusted source—specifically, code from external pull requests. The pull_request_target trigger is designed to run workflows in the context of the base repository rather than the forked repository, granting access to secrets and elevated permissions. When combined with checking out the pull request's head commit and executing that code, attackers can inject malicious commands that run with full repository privileges.

The exploitation path is straightforward: an attacker submits a pull request containing modified workflow scripts or build commands that execute during the CI process. Since the workflow runs with contents:write, packages:write, pages:write, and actions:write permissions, the attacker gains the ability to modify repository contents, publish packages, alter the official website, and manipulate GitHub Actions configurations.

Root Cause

The root cause stems from an insecure CI/CD configuration pattern where the pull_request_target workflow trigger is combined with untrusted code checkout and execution. The pull_request_target event runs in the context of the base repository, providing access to secrets and elevated GITHUB_TOKEN permissions. When the workflow checks out the pull request's head branch (github.event.pull_request.head.sha) and runs build scripts or other commands from that untrusted code, it creates an arbitrary code execution pathway for any external contributor.

Attack Vector

The attack is network-based and requires no authentication to the target repository beyond a standard GitHub account. An attacker would:

  1. Fork the Eclipse Theia Website repository
  2. Create a malicious branch with modified build scripts, package configurations, or workflow commands
  3. Submit a pull request to the upstream repository
  4. When the preview.yml workflow triggers, the malicious code executes with access to all repository secrets and elevated write permissions
  5. The attacker can then exfiltrate secrets, push code to the repository, publish malicious packages, or modify website content

The vulnerability requires no user interaction beyond standard pull request review processes, and the malicious code execution occurs automatically when the workflow is triggered.

Detection Methods for CVE-2026-1699

Indicators of Compromise

  • Unexpected or unauthorized commits pushed to the repository from CI/CD processes
  • Unusual package publications to the eclipse-theia organization on package registries
  • Modifications to GitHub Pages content without corresponding legitimate pull requests
  • Unexpected workflow runs or modifications to .github/workflows/ directory
  • Evidence of secret exfiltration attempts in workflow logs or external services

Detection Strategies

  • Audit GitHub Actions workflow configurations for dangerous pull_request_target patterns that checkout and execute PR code
  • Monitor repository events for commits from automated accounts that don't match expected CI behavior
  • Review package registry logs for unauthorized publications to organization namespaces
  • Implement GitHub audit log monitoring for suspicious GITHUB_TOKEN usage patterns

Monitoring Recommendations

  • Enable GitHub Advanced Security features to detect secrets in pull requests before workflow execution
  • Configure alerts for any modifications to workflow files in the .github/workflows/ directory
  • Monitor for unexpected external network connections during CI/CD pipeline execution
  • Review GitHub audit logs regularly for anomalous repository write operations

How to Mitigate CVE-2026-1699

Immediate Actions Required

  • Review and remediate the .github/workflows/preview.yml workflow to prevent untrusted code execution
  • Rotate all repository secrets that may have been exposed through the vulnerable workflow
  • Audit recent pull requests for potential exploitation attempts
  • Verify integrity of published packages and website content

Patch Information

The vulnerability can be addressed by modifying the workflow configuration to avoid executing untrusted code from pull requests when using pull_request_target. Refer to the Eclipse GitLab Vulnerability Report for specific remediation guidance and patch details from the Eclipse security team.

Workarounds

  • Switch from pull_request_target to pull_request trigger where possible, which runs in the context of the forked repository without access to base repository secrets
  • If pull_request_target is required, avoid checking out the pull request head; only checkout the base branch
  • Implement explicit approval requirements before workflows execute on external pull requests
  • Use environment protection rules and required reviewers for sensitive workflow jobs
  • Minimize GITHUB_TOKEN permissions to only what is strictly necessary for the workflow
bash
# Example: Secure workflow configuration pattern
# Instead of checking out PR head with pull_request_target:
# - uses: actions/checkout@v4
#   with:
#     ref: ${{ github.event.pull_request.head.sha }}

# Use pull_request trigger (runs in fork context without secrets):
# on: pull_request

# Or if pull_request_target is needed, only checkout base branch:
# - uses: actions/checkout@v4
#   # No ref specified - defaults to base branch

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechEclipse Theia

  • SeverityCRITICAL

  • CVSS Score10.0

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-829
  • Technical References
  • Eclipse GitLab Vulnerability Report
  • 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