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-2025-68613

CVE-2025-68613: N8n Workflow Automation RCE Vulnerability

CVE-2025-68613 is a critical remote code execution flaw in N8n workflow automation platform that allows authenticated attackers to execute arbitrary code. This article covers technical details, affected versions, and mitigation.

Published: March 11, 2026

CVE-2025-68613 Overview

CVE-2025-68613 is a critical Remote Code Execution (RCE) vulnerability affecting n8n, the popular open source workflow automation platform. The flaw exists in the workflow expression evaluation system where, under certain conditions, expressions supplied by authenticated users during workflow configuration may be evaluated in an execution context that is not sufficiently isolated from the underlying runtime.

This vulnerability allows an authenticated attacker to abuse the expression evaluation behavior to execute arbitrary code with the privileges of the n8n process. Successful exploitation may lead to full compromise of the affected instance, including unauthorized access to sensitive data, modification of workflows, and execution of system-level operations.

Critical Impact

Authenticated attackers can achieve full instance compromise through arbitrary code execution, enabling unauthorized data access, workflow manipulation, and system-level operations.

Affected Products

  • n8n versions 0.211.0 through 1.120.3
  • n8n versions 1.121.0 (prior to 1.121.1)
  • n8n versions prior to 1.122.0

Discovery Timeline

  • 2025-12-19 - CVE-2025-68613 published to NVD
  • 2026-01-02 - Last updated in NVD database

Technical Details for CVE-2025-68613

Vulnerability Analysis

The vulnerability stems from improper control of dynamically-managed code resources (CWE-913) within n8n's expression evaluation system. When users configure workflows, they can supply expressions that are processed by the platform. The core issue is that these expressions are evaluated in an execution context that lacks sufficient isolation from the underlying Node.js runtime environment.

This insufficient sandboxing creates a condition where carefully crafted expressions can break out of the intended evaluation scope and interact directly with the host system. Since n8n workflows commonly process sensitive business data and integrate with numerous external services, the impact of code execution within this context is particularly severe.

Root Cause

The root cause is insufficient isolation of the expression evaluation sandbox from the underlying Node.js runtime. The expression evaluation system fails to properly restrict access to runtime objects and functions, allowing attackers to escape the intended sandbox boundaries and access dangerous capabilities.

Attack Vector

The attack requires network access and low-privilege authentication to the n8n instance. An attacker must have permissions to create or edit workflows, at which point they can inject malicious expressions that will be evaluated by the vulnerable expression engine. The attack can be executed without user interaction once the attacker has authenticated access.

The exploitation pathway involves:

  1. Authenticating to the n8n instance with workflow creation/editing privileges
  2. Creating or modifying a workflow with a malicious expression
  3. Triggering the workflow execution to evaluate the crafted expression
  4. The expression escapes the sandbox and executes arbitrary code with n8n process privileges

The vulnerability does not require any specific environmental conditions beyond basic authenticated access, making it relatively straightforward to exploit in affected deployments.

Detection Methods for CVE-2025-68613

Indicators of Compromise

  • Unexpected processes spawned as child processes of the n8n application
  • Unusual network connections originating from the n8n process to external destinations
  • Modifications to workflows by users who should not have elevated privileges
  • Suspicious log entries indicating code execution or system command invocations within workflow executions
  • Unexpected file system access or modifications by the n8n process

Detection Strategies

  • Monitor n8n audit logs for unusual workflow creation or modification patterns
  • Implement runtime application self-protection (RASP) solutions to detect sandbox escape attempts
  • Deploy endpoint detection and response (EDR) solutions to identify anomalous process behavior from the n8n application
  • Analyze workflow configurations for suspicious expression patterns that may indicate exploitation attempts

Monitoring Recommendations

  • Enable verbose logging for n8n workflow executions and expression evaluations
  • Configure alerts for any child process spawning from the n8n application context
  • Monitor system calls made by the n8n process for unexpected operations
  • Review user activity logs for accounts with workflow editing permissions

How to Mitigate CVE-2025-68613

Immediate Actions Required

  • Upgrade n8n immediately to version 1.120.4, 1.121.1, or 1.122.0 or later
  • Audit existing workflows for potentially malicious expressions
  • Review user accounts with workflow creation and editing permissions
  • Implement network segmentation to limit potential lateral movement if exploitation occurs

Patch Information

n8n has released security patches addressing this vulnerability in versions 1.120.4, 1.121.1, and 1.122.0. The patches introduce additional safeguards to restrict expression evaluation and properly isolate the sandbox from the underlying runtime.

For detailed patch information, refer to the following resources:

  • GitHub Security Advisory GHSA-v98v-ff95-f3cp
  • GitHub Commit Fix
  • GitHub Commit Change
  • GitHub Commit Update

Workarounds

  • Limit workflow creation and editing permissions to fully trusted users only
  • Deploy n8n in a hardened environment with restricted operating system privileges
  • Implement strict network access controls to reduce potential impact of exploitation
  • Run n8n with minimal privileges using containerization or dedicated service accounts
bash
# Example: Run n8n with restricted privileges in Docker
docker run -d \
  --name n8n \
  --user 1000:1000 \
  --read-only \
  --cap-drop ALL \
  --security-opt no-new-privileges \
  -p 5678:5678 \
  -v /path/to/n8n-data:/home/node/.n8n \
  n8nio/n8n:1.122.0

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechN8n

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability78.98%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-913
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Commit Fix

  • GitHub Commit Change

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33696: n8n Workflow Automation RCE Vulnerability

  • CVE-2026-33660: n8n Workflow Automation RCE Vulnerability

  • CVE-2026-27577: n8n Workflow Automation RCE Vulnerability

  • CVE-2026-27498: n8n Workflow Automation RCE Vulnerability
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