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

CVE-2026-30820: Flowise Privilege Escalation Vulnerability

CVE-2026-30820 is a privilege escalation flaw in Flowiseai Flowise that allows low-privilege tenants to bypass authorization checks and access admin endpoints. This article covers technical details, affected versions, and patches.

Published: March 13, 2026

CVE-2026-30820 Overview

CVE-2026-30820 is an Authorization Bypass vulnerability affecting Flowise, a drag & drop user interface for building customized large language model flows. Prior to version 3.0.13, Flowise trusts any HTTP client that sets the header x-request-from: internal, allowing an authenticated tenant session to bypass all /api/v1/** authorization checks. With only a browser cookie, a low-privilege tenant can invoke internal administration endpoints (API key management, credential stores, custom function execution, etc.), effectively escalating privilege.

Critical Impact

Low-privilege authenticated users can escalate to administrative access by spoofing a trusted internal header, compromising API keys, credential stores, and enabling arbitrary custom function execution.

Affected Products

  • Flowise versions prior to 3.0.13
  • FlowiseAI Flowise (all deployments without proper header validation)
  • Self-hosted and cloud-based Flowise LLM flow builder instances

Discovery Timeline

  • 2026-03-07 - CVE CVE-2026-30820 published to NVD
  • 2026-03-11 - Last updated in NVD database

Technical Details for CVE-2026-30820

Vulnerability Analysis

This vulnerability is classified as CWE-863 (Incorrect Authorization), where the application fails to properly verify user privileges before granting access to protected resources. The fundamental flaw lies in Flowise's trust model for internal requests - the application accepts the x-request-from: internal HTTP header at face value without validating whether the request actually originates from a trusted internal service.

When a request arrives at any /api/v1/** endpoint, the authorization middleware checks for this header. If present and set to "internal", the middleware bypasses all tenant-level authorization checks, granting full administrative access to the request. This design assumes that only legitimate internal services would set this header, but any HTTP client can trivially spoof this header value.

The attack requires minimal prerequisites: the attacker only needs a valid low-privilege tenant session (browser cookie). From there, they can craft requests with the spoofed header to access administrative functionality including API key management, credential stores, and custom function execution capabilities.

Root Cause

The root cause is improper trust boundary implementation in the authorization middleware. The application fails to distinguish between genuinely internal service-to-service requests and external client requests that merely claim to be internal via a user-controllable HTTP header. HTTP headers can be arbitrarily set by any client, making them unsuitable as a sole mechanism for authorization decisions without additional validation such as mutual TLS, signed tokens, or network-layer restrictions.

Attack Vector

The attack is network-based and requires low privilege (authenticated tenant session). An attacker with a valid session cookie can manipulate HTTP requests using browser developer tools, proxy tools like Burp Suite, or simple curl commands. By adding the x-request-from: internal header to any API request, the attacker bypasses tenant authorization and gains access to administrative endpoints.

The exploitation flow involves:

  1. Authenticating as a low-privilege tenant user
  2. Intercepting or crafting requests to /api/v1/** endpoints
  3. Adding the x-request-from: internal header to the request
  4. Accessing administrative functions such as API key management, credential retrieval, or custom function execution

This vulnerability enables vertical privilege escalation, allowing a standard tenant to perform administrative operations that should be restricted to system administrators. For additional technical details, see the GitHub Security Advisory GHSA-wvhq-wp8g-c7vq.

Detection Methods for CVE-2026-30820

Indicators of Compromise

  • Unusual API requests to administrative endpoints (/api/v1/apikey, /api/v1/credentials, /api/v1/functions) from tenant user sessions
  • HTTP logs showing the x-request-from: internal header originating from external IP addresses or non-service user agents
  • Tenant users accessing credential stores or API key management functions they should not have permission to view
  • Unexpected modifications to API keys, credentials, or custom functions by non-administrative users

Detection Strategies

  • Implement logging and alerting for any requests containing the x-request-from: internal header that originate from external networks
  • Monitor administrative endpoint access patterns and flag requests from tenant sessions that suddenly gain elevated privileges
  • Deploy Web Application Firewall (WAF) rules to detect and block requests with suspicious header combinations from external clients
  • Correlate authentication logs with API access logs to identify privilege escalation attempts

Monitoring Recommendations

  • Enable verbose HTTP request logging including all headers for /api/v1/** endpoints
  • Configure alerts for administrative API calls from tenant-level authenticated sessions
  • Review access logs regularly for patterns indicating authorization bypass attempts
  • Implement anomaly detection for users accessing endpoints outside their normal permission scope

How to Mitigate CVE-2026-30820

Immediate Actions Required

  • Upgrade Flowise to version 3.0.13 or later immediately
  • Audit access logs for signs of exploitation prior to patching
  • Review and rotate any API keys or credentials that may have been accessed by unauthorized users
  • Implement network-level restrictions to limit which systems can send requests with internal headers

Patch Information

This vulnerability has been addressed in Flowise version 3.0.13. The patch removes the insecure reliance on the user-controllable x-request-from header for authorization decisions. Organizations should update to the patched version as the primary remediation step.

For patch details, refer to the Flowise 3.0.13 Release and the GitHub Security Advisory.

Workarounds

  • Deploy a reverse proxy or WAF in front of Flowise to strip or reject the x-request-from header from external requests
  • Implement network segmentation to ensure administrative endpoints are only accessible from trusted internal networks
  • Use additional authentication mechanisms for administrative functions until the patch can be applied
  • Consider temporarily disabling public access to Flowise instances until upgrade is complete
bash
# Example: Nginx configuration to strip the x-request-from header
# Add to your Flowise reverse proxy configuration
location /api/v1/ {
    proxy_set_header x-request-from "";
    proxy_pass http://flowise_backend;
}

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechFlowise

  • SeverityHIGH

  • CVSS Score8.7

  • EPSS Probability0.07%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:H/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
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-863
  • Technical References
  • GitHub Flowise Release 3.0.13
  • Vendor Resources
  • GitHub Security Advisory GHSA-wvhq-wp8g-c7vq
  • Related CVEs
  • CVE-2026-31829: Flowiseai Flowise SSRF Vulnerability

  • CVE-2026-30821: Flowiseai Flowise RCE Vulnerability

  • CVE-2026-30822: Flowise Auth Bypass Vulnerability

  • CVE-2026-30824: Flowiseai Flowise Auth Bypass 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