A Leader in the 2025 Gartner® Magic Quadrant™ for Endpoint Protection Platforms. Five years running.A Leader in the Gartner® Magic Quadrant™Read the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI Security Portfolio
      Leading the Way in AI-Powered Security Solutions
    • 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
      Digital Forensics, IRR & Breach Readiness
    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
    • 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-21894

CVE-2026-21894: n8n Stripe Trigger Auth Bypass Vulnerability

CVE-2026-21894 is an authentication bypass vulnerability in n8n's Stripe Trigger node that allows unauthenticated attackers to trigger workflows with forged webhook events. This article covers technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2026-21894 Overview

CVE-2026-21894 is an authentication bypass vulnerability affecting the n8n workflow automation platform. The vulnerability exists in the Stripe Trigger node, which fails to verify incoming webhook requests against the stored Stripe webhook signing secret. This allows unauthenticated attackers to trigger workflows by sending forged Stripe webhook events, potentially manipulating downstream workflow behavior through fake payment or subscription events.

Critical Impact

Attackers can bypass authentication and trigger arbitrary workflow executions by sending forged Stripe webhook events to vulnerable n8n instances, potentially influencing business logic through fake payment notifications.

Affected Products

  • n8n versions 0.150.0 to 2.2.1
  • n8n workflow automation platform with active Stripe Trigger nodes
  • Self-hosted and cloud n8n deployments using Stripe integrations

Discovery Timeline

  • 2026-01-08 - CVE CVE-2026-21894 published to NVD
  • 2026-01-08 - Last updated in NVD database

Technical Details for CVE-2026-21894

Vulnerability Analysis

The vulnerability resides in the Stripe Trigger node implementation within n8n's workflow automation system. When users configure a Stripe Trigger, n8n creates and stores a Stripe webhook signing secret during the webhook endpoint registration process. However, the critical flaw is that incoming webhook requests were not validated against this stored secret.

This authentication bypass (CWE-290: Authentication Bypass by Spoofing) allows any HTTP client with knowledge of the webhook URL to send a POST request containing a matching event type. The n8n platform processes these requests as if they were legitimate Stripe events, executing the associated workflow without proper authentication verification.

The attack surface is somewhat limited by the fact that webhook URLs contain a high-entropy UUID, making discovery through brute force impractical. However, any authenticated n8n user with access to view the workflow configuration can obtain this webhook ID, creating an insider threat vector.

Root Cause

The root cause is the absence of signature verification for incoming Stripe webhook requests. While the Stripe Trigger node properly creates and stores the webhook signing secret during setup, the incoming request handling code path did not include the cryptographic verification step that would confirm the request originated from Stripe's servers using the Stripe-Signature header.

Attack Vector

This vulnerability is exploitable over the network without requiring authentication to the target system. An attacker who obtains the webhook URL (either through insider access or other means) can send crafted HTTP POST requests directly to the n8n webhook endpoint. The forged requests need only contain a valid JSON payload with a matching event type to trigger workflow execution.

typescript
// Security patch in packages/nodes-base/credentials/StripeApi.credentials.ts
// fix(Stripe Trigger Node): Add Stripe signature verification (#22764)

 			typeOptions: { password: true },
 			default: '',
 		},
+		{
+			displayName: 'Signature Secret',
+			name: 'signatureSecret',
+			type: 'string',
+			typeOptions: { password: true },
+			default: '',
+			description:
+				'The signature secret is used to verify the authenticity of requests sent by Stripe.',
+		},
+		{
+			displayName:
+				'We strongly recommend setting up a <a href="https://stripe.com/docs/webhooks" target="_blank">signing secret</a> to ensure the authenticity of requests.',
+			name: 'notice',
+			type: 'notice',
+			default: '',
+			displayOptions: {
+				show: {
+					signatureSecret: [''],
+				},
+			},
+		},
 	];
 
 	authenticate: IAuthenticateGeneric = {

Source: GitHub Commit Update

typescript
// Security patch in packages/nodes-base/nodes/Stripe/StripeTrigger.node.ts
// fix(Stripe Trigger Node): Add Stripe signature verification (#22764)

 import { NodeApiError, NodeConnectionTypes } from 'n8n-workflow';
 
 import { stripeApiRequest } from './helpers';
+import { verifySignature } from './StripeTriggerHelpers';
 
 export class StripeTrigger implements INodeType {
 	description: INodeTypeDescription = {

Source: GitHub Commit Update

Detection Methods for CVE-2026-21894

Indicators of Compromise

  • Unexpected workflow executions triggered by Stripe events without corresponding legitimate Stripe dashboard activity
  • HTTP POST requests to Stripe webhook endpoints from IP addresses not belonging to Stripe's published IP ranges
  • Anomalous patterns in workflow execution logs, particularly for payment or subscription-related workflows
  • Stripe webhook events that don't match corresponding records in your Stripe dashboard

Detection Strategies

  • Monitor n8n workflow execution logs for Stripe Trigger activations and correlate with actual Stripe dashboard events
  • Implement network-level monitoring to detect POST requests to webhook endpoints from non-Stripe IP addresses
  • Review n8n access logs for users who have viewed workflow configurations containing Stripe Trigger nodes
  • Set up alerts for unusual volumes of Stripe webhook events or executions outside normal business patterns

Monitoring Recommendations

  • Enable detailed logging for all Stripe Trigger workflow executions including source IP addresses
  • Configure SIEM rules to alert on webhook executions that lack valid Stripe signature headers
  • Regularly audit n8n user access to sensitive workflows containing payment integrations
  • Monitor downstream systems affected by Stripe-triggered workflows for unexpected state changes

How to Mitigate CVE-2026-21894

Immediate Actions Required

  • Upgrade n8n to version 2.2.2 or later immediately
  • Audit all active workflows using Stripe Trigger nodes and verify they are updated
  • Review recent workflow execution logs for any suspicious Stripe-triggered activity
  • Rotate Stripe webhook signing secrets after upgrading to ensure no leaked secrets are exploitable

Patch Information

The vulnerability has been patched in n8n version 2.2.2. The fix introduces proper Stripe signature verification using the verifySignature function imported from StripeTriggerHelpers. Users should upgrade to this version or later to ensure incoming webhook requests are cryptographically verified against the stored signing secret. Technical details are available in the GitHub Pull Request and GitHub Security Advisory.

Workarounds

  • Deactivate all workflows containing Stripe Trigger nodes until the patch can be applied
  • Restrict access to workflows containing Stripe Trigger nodes to trusted users only to prevent webhook URL disclosure
  • Implement network-level filtering to only allow webhook requests from Stripe's published IP address ranges
  • Consider using a reverse proxy or WAF to validate Stripe signatures before requests reach n8n
bash
# Configuration example
# Restrict access to n8n workflows with Stripe integrations
# Review and limit user permissions in n8n settings

# Check current n8n version
n8n --version

# Upgrade n8n to patched version
npm update [email protected]

# Or using Docker
docker pull n8nio/n8n:2.2.2

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechN8n

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:H/A:N
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-290
  • Technical References
  • GitHub Commit Update

  • GitHub Pull Request

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-25631: n8n Auth Bypass Vulnerability

  • CVE-2025-68949: n8n Webhook IP Whitelist Bypass Vulnerability

  • CVE-2026-25115: N8n Workflow Automation RCE Vulnerability

  • CVE-2026-25056: 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
  • English
  • 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