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

CVE-2026-25631: n8n Auth Bypass Vulnerability

CVE-2026-25631 is an authentication bypass vulnerability in n8n workflow automation platform that allows attackers to send requests with credentials to unintended domains. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: February 13, 2026

CVE-2026-25631 Overview

CVE-2026-25631 is an Input Validation Error vulnerability discovered in n8n, an open source workflow automation platform. Prior to version 1.121.0, a flaw in the HTTP Request node's credential domain validation allowed an authenticated attacker to send requests with credentials to unintended domains, potentially leading to credential exfiltration.

This vulnerability specifically affects users who have credentials configured with wildcard domain patterns (e.g., *.example.com) in the "Allowed domains" setting. The improper validation of these wildcard patterns could allow attackers to craft requests that bypass the intended domain restrictions.

Critical Impact

Authenticated attackers can bypass credential domain validation to exfiltrate sensitive credentials to attacker-controlled domains when wildcard patterns are used in allowed domain configurations.

Affected Products

  • n8n workflow automation platform versions prior to 1.121.0
  • Installations using wildcard domain patterns in credential "Allowed domains" settings

Discovery Timeline

  • 2026-02-06 - CVE CVE-2026-25631 published to NVD
  • 2026-02-06 - Last updated in NVD database

Technical Details for CVE-2026-25631

Vulnerability Analysis

This vulnerability stems from improper input validation (CWE-20) in the HTTP Request node's credential domain validation mechanism. When users configure credentials with wildcard domain patterns to restrict which domains can receive those credentials, the validation logic fails to properly enforce these restrictions.

The flaw allows authenticated attackers to craft HTTP requests that bypass the wildcard domain matching, enabling credentials to be sent to domains outside the intended allowed list. This is particularly dangerous in workflow automation environments where credentials for various services may be stored and used across multiple integrations.

The network-accessible nature of this vulnerability means that any authenticated user with access to create or modify workflows could potentially exploit this issue to exfiltrate credentials to external domains under their control.

Root Cause

The root cause is improper input validation in the domain matching logic for wildcard patterns. The validation function does not correctly parse and match wildcard domain specifications (e.g., *.example.com), allowing attackers to construct domain names that evade the intended restrictions while still receiving the associated credentials.

Attack Vector

An authenticated attacker exploits this vulnerability by:

  1. Identifying workflows or credentials that use wildcard domain patterns in allowed domain configurations
  2. Creating or modifying an HTTP Request node to target a domain that should not match the wildcard pattern but incorrectly passes validation
  3. Triggering the workflow execution, causing credentials to be sent to the attacker-controlled domain
  4. Capturing the exfiltrated credentials on the receiving domain

The vulnerability manifests in the credential domain validation function within the HTTP Request node. The improper wildcard pattern matching allows domains like attacker.example.com.malicious.com to potentially bypass validation intended for *.example.com. For detailed technical analysis, see the GitHub Security Advisory.

Detection Methods for CVE-2026-25631

Indicators of Compromise

  • Unusual HTTP requests from n8n workflows to unexpected or suspicious domains
  • Credential usage logs showing requests to domains outside expected wildcard patterns
  • Workflow modifications by users adding HTTP Request nodes targeting unusual domains
  • Network traffic from n8n instances to newly registered or suspicious external domains

Detection Strategies

  • Monitor n8n workflow execution logs for HTTP Request nodes sending credentials to unexpected domains
  • Implement network-level monitoring to detect outbound connections from n8n to unauthorized destinations
  • Review workflow audit logs for suspicious modifications to HTTP Request nodes or credential configurations
  • Deploy endpoint detection to alert on anomalous credential usage patterns

Monitoring Recommendations

  • Enable detailed logging for all HTTP Request node executions including target domains
  • Configure alerts for credentials being used against domains not explicitly whitelisted
  • Regularly audit workflow configurations for proper credential domain restrictions
  • Implement network segmentation to limit n8n's ability to connect to arbitrary external domains

How to Mitigate CVE-2026-25631

Immediate Actions Required

  • Upgrade n8n to version 1.121.0 or later immediately
  • Review all credentials using wildcard domain patterns in "Allowed domains" settings
  • Consider replacing wildcard patterns with explicit domain lists until upgrade is complete
  • Audit recent workflow executions for suspicious HTTP Request node activity

Patch Information

This vulnerability is fixed in n8n version 1.121.0 and later. Users should update their n8n installations to the latest available version. The fix addresses the improper domain validation logic in the HTTP Request node to correctly enforce wildcard pattern restrictions.

For official patch details, refer to the GitHub Security Advisory.

Workarounds

  • Replace wildcard domain patterns with explicit, fully-qualified domain lists in credential configurations
  • Implement network-level controls to restrict n8n outbound connections to known-good destinations only
  • Temporarily disable or restrict access to workflows using affected credentials until upgrade is applied
  • Use network proxies or firewalls to enforce domain allowlists at the infrastructure level
bash
# Configuration example - Replace wildcard patterns with explicit domains
# Before (vulnerable): *.example.com
# After (secure): api.example.com, auth.example.com, data.example.com

# Network-level mitigation example using iptables
# Restrict n8n outbound HTTP/HTTPS to specific IP ranges
iptables -A OUTPUT -p tcp --dport 443 -d trusted.example.com -j ACCEPT
iptables -A OUTPUT -p tcp --dport 443 -m owner --uid-owner n8n -j DROP

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 Score5.3

  • EPSS Probability0.09%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:L/VI:N/VA:N/SC:L/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
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-20
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2025-68949: n8n Webhook IP Whitelist Bypass Vulnerability

  • CVE-2026-21894: n8n Stripe Trigger Auth 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