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

CVE-2026-33663: n8n Auth Bypass Vulnerability

CVE-2026-33663 is an authentication bypass vulnerability in n8n workflow automation platform that allows member-role users to steal plaintext HTTP credentials. This article covers technical details, affected versions, and mitigation.

Published: March 27, 2026

CVE-2026-33663 Overview

CVE-2026-33663 is an authorization bypass vulnerability in n8n, an open source workflow automation platform. The vulnerability allows authenticated users with the global:member role to exploit chained authorization flaws in n8n's credential pipeline to steal plaintext secrets from generic HTTP credentials belonging to other users on the same instance.

Critical Impact

Authenticated attackers can exfiltrate plaintext secrets from httpBasicAuth, httpHeaderAuth, and httpQueryAuth credentials owned by other users, potentially leading to unauthorized access to external services and sensitive data exposure.

Affected Products

  • n8n versions prior to 2.14.1
  • n8n versions prior to 2.13.3
  • n8n versions prior to 1.123.27

Discovery Timeline

  • 2026-03-25 - CVE CVE-2026-33663 published to NVD
  • 2026-03-26 - Last updated in NVD database

Technical Details for CVE-2026-33663

Vulnerability Analysis

This vulnerability stems from CWE-639 (Authorization Bypass Through User-Controlled Key), manifesting through a combination of two distinct authorization flaws in n8n's credential handling system. The attack chain specifically targets generic HTTP credential types (httpBasicAuth, httpHeaderAuth, httpQueryAuth) and requires only member-level authentication to execute.

The vulnerability is limited to the n8n Community Edition. The Enterprise Edition includes additional permission gates on workflow creation and execution that independently block this attack chain, providing defense-in-depth against this class of authorization bypass.

Native integration credential types such as slackApi, openAiApi, and postgres are not affected by this issue due to different validation paths in the credential handling code.

Root Cause

The root cause involves two interconnected flaws in the credential pipeline:

  1. Name-based credential resolution - The system uses a credential resolution path that does not properly enforce ownership or project scope verification, allowing attackers to resolve credential IDs belonging to other users based on credential names.

  2. Permission checker bypass - A flaw in the credentials permission checker causes generic HTTP credential types to be skipped during pre-execution validation, failing to verify that the executing user has authorization to access the resolved credential.

When combined, these flaws allow a member-role user to resolve another user's credential ID and then execute a workflow that decrypts and uses that credential without proper authorization checks.

Attack Vector

The attack is network-accessible and requires low privileges (authenticated global:member role) with no user interaction needed. An attacker exploits the vulnerability through the following general approach:

  1. The attacker, authenticated as a global:member user, identifies or guesses the name of a generic HTTP credential belonging to another user
  2. Through the flawed name-based resolution mechanism, the attacker resolves the target credential's ID
  3. The attacker creates and executes a workflow that references this credential ID
  4. Due to the permission checker bypass for generic HTTP credential types, the pre-execution validation fails to block unauthorized access
  5. The workflow executes, decrypting and using the victim's credential, allowing the attacker to capture the plaintext secrets

For detailed technical information about the exploitation mechanics, refer to the GitHub Security Advisory.

Detection Methods for CVE-2026-33663

Indicators of Compromise

  • Unexpected workflow executions by member-role users that reference credentials they do not own
  • Workflow creation or modification events containing credential references to httpBasicAuth, httpHeaderAuth, or httpQueryAuth types from other users
  • Anomalous credential resolution queries that cross user or project boundaries
  • Failed authentication attempts to external services using credentials that were not legitimately shared

Detection Strategies

  • Monitor n8n audit logs for workflow executions that access credentials not owned by the executing user
  • Implement alerting on credential resolution events that involve cross-user or cross-project access patterns
  • Review recently created or modified workflows for suspicious credential references, particularly those targeting generic HTTP credential types
  • Correlate workflow execution events with credential access patterns to identify potential abuse

Monitoring Recommendations

  • Enable comprehensive audit logging for all credential access and workflow execution events in n8n
  • Implement real-time monitoring for any workflow that accesses credentials of types httpBasicAuth, httpHeaderAuth, or httpQueryAuth
  • Establish baseline patterns for normal credential usage and alert on deviations
  • Review member-role user activity logs for unusual workflow creation or execution patterns

How to Mitigate CVE-2026-33663

Immediate Actions Required

  • Upgrade n8n to version 1.123.27, 2.13.3, or 2.14.1 or later immediately
  • Audit all generic HTTP credentials (httpBasicAuth, httpHeaderAuth, httpQueryAuth) stored on affected instances
  • Rotate any generic HTTP credentials that may have been exposed to unauthorized users
  • Review workflow execution logs to identify potential unauthorized credential access

Patch Information

The n8n development team has released security patches addressing this vulnerability in versions 1.123.27, 2.13.3, and 2.14.1. Users should upgrade to one of these versions or later to fully remediate the vulnerability. Patch details and additional security information are available in the GitHub Security Advisory.

Workarounds

  • Restrict n8n instance access to fully trusted users only until patching is complete
  • Audit and rotate all generic HTTP credentials (httpBasicAuth, httpHeaderAuth, httpQueryAuth) that may have been exposed
  • Consider temporarily disabling member-role access to workflow creation and execution capabilities
  • Migrate to n8n Enterprise Edition if possible, which includes additional permission gates that block this attack chain
  • Monitor for suspicious credential access patterns while implementing the upgrade

Note: These workarounds do not fully remediate the risk and should only be used as short-term mitigation measures until the official patches can be applied.

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

  • SeverityHIGH

  • CVSS Score8.5

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:N/VA:N/SC:H/SI:H/SA:H/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-639
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33722: n8n Workflow Automation Auth Bypass Flaw

  • CVE-2026-33665: n8n LDAP Authentication Bypass Vulnerability

  • CVE-2026-33720: n8n Workflow Auth Bypass Vulnerability

  • CVE-2026-33751: n8n LDAP Injection Auth Bypass Flaw
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