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

CVE-2026-26974: Slyde Presentation Tool RCE Vulnerability

CVE-2026-26974 is a remote code execution vulnerability in Slyde that allows malicious packages to execute arbitrary code through automatic plugin imports. This article covers the technical details, affected versions, and mitigation.

Published: February 27, 2026

CVE-2026-26974 Overview

CVE-2026-26974 is an Arbitrary Code Execution vulnerability affecting Slyde, a program that creates animated presentations from XML. In versions 0.0.4 and below, Node.js automatically imports **/*.plugin.{js,mjs} files including those from node_modules, allowing any malicious package with a .plugin.js file to execute arbitrary code when installed or required.

Critical Impact

All projects using Slyde's plugin loading behavior are affected, especially those installing untrusted packages. Attackers can achieve arbitrary code execution by simply including a malicious .plugin.js file in a seemingly innocent npm package.

Affected Products

  • Slyde versions 0.0.4 and below
  • Projects using Slyde's default plugin loading configuration
  • Any environment installing untrusted npm packages alongside Slyde

Discovery Timeline

  • 2026-02-20 - CVE CVE-2026-26974 published to NVD
  • 2026-02-20 - Last updated in NVD database

Technical Details for CVE-2026-26974

Vulnerability Analysis

This vulnerability stems from an overly permissive plugin auto-loading mechanism in Slyde. The application's default configuration for plugin discovery uses glob patterns that recursively search for plugin files across all directories, including the node_modules folder. This design flaw means that any installed npm package containing a file matching the pattern **/*.plugin.{js,mjs} or **/*.plugins.{js,mjs} will have its code automatically imported and executed.

The attack requires network access and user interaction (installing a malicious package), but once the conditions are met, it provides complete code execution with the privileges of the Node.js process. The vulnerability affects both confidentiality and integrity, as malicious code can read sensitive data and modify application behavior.

Root Cause

The root cause is CWE-829: Inclusion of Functionality from Untrusted Control Sphere. Slyde's default glob patterns for plugin discovery were too broad, scanning the entire node_modules directory tree for plugin files. This allowed external, potentially malicious packages to inject code into the application's runtime environment without any validation or explicit user consent.

Attack Vector

An attacker can exploit this vulnerability through a supply chain attack vector:

  1. Create a malicious npm package containing a file with a .plugin.js or .plugin.mjs extension
  2. The package can appear legitimate with a convincing name and description
  3. When a victim installs the malicious package (directly or as a transitive dependency) alongside Slyde
  4. Slyde's plugin loader automatically discovers and imports the malicious plugin file
  5. Arbitrary JavaScript code executes in the context of the Node.js process

The following patch shows how the vulnerability was fixed by restricting plugin loading to a specific plugins/ directory with the .slyde.{js,mjs} extension:

typescript
     alias: 'p',
     array: true,
     coerce: (value: readonly string[]) => FastGlob.sync([...value]),
-    default: [
-      'plugins/**.{js,mjs}',
-      'slyde/**.{js,mjs}',
-      '**/*.plugins.{js,mjs}',
-      '**/*.plugin.{js,mjs}',
-      '**/*.slyde.{js,mjs}',
-    ] as string[],
+    default: ['plugins/**.slyde.{js,mjs}'] as string[],
     description: 'A directory or file to import and use as custom tags',
     type: 'string',
   })

Source: GitHub Commit Update

Detection Methods for CVE-2026-26974

Indicators of Compromise

  • Unexpected .plugin.js or .plugin.mjs files appearing in node_modules subdirectories
  • Unusual npm packages installed as dependencies with plugin-like file structures
  • Unexpected process behavior or network connections originating from the Slyde process
  • Modified or newly created files outside expected application directories

Detection Strategies

  • Scan node_modules directories for files matching *.plugin.js or *.plugin.mjs patterns that are not from trusted sources
  • Monitor npm package installations and audit dependency trees for suspicious packages
  • Implement file integrity monitoring to detect unexpected plugin files being loaded
  • Review Slyde's plugin loading configuration for overly permissive glob patterns

Monitoring Recommendations

  • Enable Node.js process monitoring to detect unexpected code execution patterns
  • Implement runtime application self-protection (RASP) to detect injection attempts
  • Log and alert on new file creations matching plugin filename patterns in node_modules
  • Monitor npm audit reports for dependency vulnerabilities in projects using Slyde

How to Mitigate CVE-2026-26974

Immediate Actions Required

  • Upgrade Slyde to version 0.0.5 or later immediately
  • Audit all npm packages installed in projects using Slyde versions 0.0.4 and below
  • Search for and remove any suspicious .plugin.js or .plugin.mjs files in node_modules directories
  • Review the dependency tree for untrusted or unknown packages

Patch Information

The vulnerability has been fixed in Slyde version 0.0.5. The fix restricts the default plugin loading glob pattern to only scan the plugins/ directory for files with the .slyde.{js,mjs} extension, preventing automatic loading of plugin files from node_modules. For more details, see the GitHub Security Advisory GHSA-w7h5-55jg-cq2f and the version 0.0.5 release.

Workarounds

  • Manually configure the plugin paths option to explicitly specify only trusted plugin directories
  • Audit and restrict which packages are installed in node_modules
  • Use npm's package-lock.json or yarn.lock to ensure consistent and audited dependency versions
  • Consider using a private npm registry with package scanning capabilities
bash
# Configuration example
# Explicitly specify trusted plugin directories when running Slyde
slyde --plugins "plugins/**.slyde.{js,mjs}"

# Audit npm packages for suspicious plugin files
find node_modules -name "*.plugin.js" -o -name "*.plugin.mjs" | xargs -I {} echo "Suspicious file: {}"

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechNode.js

  • SeverityHIGH

  • CVSS Score7.6

  • EPSS Probability0.08%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:H/AT:N/PR:N/UI:P/VC:H/VI:H/VA:N/SC:N/SI:N/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-829
  • Technical References
  • GitHub Commit Update

  • GitHub Release v0.0.5

  • GitHub Security Advisory GHSA-w7h5-55jg-cq2f
  • Related CVEs
  • CVE-2026-21715: Node.js Privilege Escalation Vulnerability

  • CVE-2026-21713: Node.js Timing Attack Vulnerability

  • CVE-2025-59465: Node.js HTTP/2 HPACK DOS Vulnerability

  • CVE-2025-55131: Node.js Information Disclosure 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