Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • 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-41277

CVE-2026-41277: Flowise Auth Bypass Vulnerability

CVE-2026-41277 is an authentication bypass flaw in Flowise that allows attackers to overwrite DocumentStore objects across workspaces. This article covers the technical details, affected versions, and mitigation strategies.

Published: April 23, 2026

CVE-2026-41277 Overview

CVE-2026-41277 is a Mass Assignment vulnerability affecting Flowise, a drag & drop user interface application used to build customized large language model (LLM) flows. Prior to version 3.1.0, the DocumentStore creation endpoint allows authenticated users to control the primary key (id) and internal state fields of DocumentStore entities through improper access control.

Because the service uses repository.save() with a client-supplied primary key, the POST create endpoint behaves as an implicit UPSERT operation, enabling overwriting of existing DocumentStore objects. In multi-workspace or multi-tenant deployments, this can lead to cross-workspace object takeover and broken object-level authorization (IDOR), allowing an attacker to reassign or modify DocumentStore objects belonging to other workspaces.

Critical Impact

Authenticated attackers can overwrite or hijack DocumentStore objects across workspaces in multi-tenant Flowise deployments, leading to data tampering and unauthorized access to LLM workflow configurations.

Affected Products

  • Flowise versions prior to 3.1.0
  • Multi-workspace Flowise deployments
  • Multi-tenant Flowise installations

Discovery Timeline

  • 2026-04-23 - CVE CVE-2026-41277 published to NVD
  • 2026-04-23 - Last updated in NVD database

Technical Details for CVE-2026-41277

Vulnerability Analysis

This vulnerability stems from improper access control (CWE-284) in how Flowise handles DocumentStore entity creation. The core issue lies in the application's acceptance of client-supplied primary keys during object creation operations without proper validation or authorization checks.

When an authenticated user sends a POST request to the DocumentStore creation endpoint, they can specify the id field along with other internal state fields. The backend service directly passes this client-supplied data to repository.save(), which performs an UPSERT operation—creating a new record if the ID doesn't exist, or updating an existing record if it does.

This design flaw transforms a simple create operation into a potential weapon for cross-tenant attacks. An attacker who knows or can guess the ID of a DocumentStore object belonging to another workspace can effectively overwrite that object with their own data, breaking the intended access control boundaries.

Root Cause

The root cause is the lack of proper input validation and authorization controls in the DocumentStore creation endpoint. The application fails to:

  1. Prevent client-side specification of primary key (id) values during entity creation
  2. Validate that the requesting user has authorization to modify existing objects when an ID collision occurs
  3. Implement proper tenant isolation to prevent cross-workspace object manipulation

The use of repository.save() without distinguishing between create and update operations compounds this issue, as it implicitly allows overwrites when a matching primary key exists.

Attack Vector

The attack is network-based and requires low-privilege authenticated access to the Flowise application. An attacker must first authenticate to the system, then craft malicious requests to the DocumentStore creation endpoint.

The attack scenario involves the attacker specifying a target DocumentStore ID (either guessed, enumerated, or obtained through information disclosure) in their creation request. When the backend processes this request, it overwrites the existing DocumentStore object, effectively hijacking resources belonging to other workspaces or tenants.

The vulnerability is particularly impactful in multi-tenant environments where workspace isolation is a critical security requirement. For detailed technical information about the exploitation mechanism, refer to the GitHub Security Advisory.

Detection Methods for CVE-2026-41277

Indicators of Compromise

  • Unexpected modifications to DocumentStore objects with altered ownership or workspace assignments
  • API logs showing POST requests to DocumentStore endpoints with explicit id parameters
  • Audit trail entries indicating DocumentStore updates that bypass normal edit workflows
  • Cross-workspace data access anomalies in multi-tenant deployments

Detection Strategies

  • Monitor API access logs for POST requests to /api/v1/document-store endpoints containing id fields in the request body
  • Implement integrity monitoring for DocumentStore entity ownership and workspace association fields
  • Deploy anomaly detection for authentication patterns followed by unusual DocumentStore creation activities
  • Enable detailed audit logging for all DocumentStore CRUD operations

Monitoring Recommendations

  • Configure alerting for DocumentStore modifications that change workspace or tenant associations
  • Establish baseline behavior for DocumentStore creation patterns per authenticated user
  • Monitor for enumeration attempts against DocumentStore endpoints
  • Implement rate limiting and anomaly detection on the DocumentStore API endpoints

How to Mitigate CVE-2026-41277

Immediate Actions Required

  • Upgrade Flowise to version 3.1.0 or later immediately
  • Review DocumentStore audit logs for signs of exploitation or unauthorized modifications
  • Verify integrity of existing DocumentStore objects in multi-tenant environments
  • Implement additional network-level access controls to restrict API access while patching

Patch Information

The vulnerability has been addressed in Flowise version 3.1.0. Organizations should upgrade to this version or later to remediate the vulnerability. The fix implements proper input validation to prevent client-supplied primary keys from being used during entity creation, ensuring that create and update operations are properly separated with appropriate authorization checks.

For more information about the fix, consult the GitHub Security Advisory.

Workarounds

  • Implement API gateway rules to strip or block id fields from incoming POST requests to DocumentStore endpoints
  • Deploy a Web Application Firewall (WAF) rule to filter requests containing unexpected primary key specifications
  • Restrict network access to Flowise instances to trusted users only until patching is complete
  • Consider temporarily disabling DocumentStore creation functionality in high-risk multi-tenant environments
bash
# Example: Upgrade Flowise to patched version
npm update flowise@3.1.0
# Or using yarn
yarn upgrade flowise@3.1.0

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechFlowise

  • SeverityHIGH

  • CVSS Score7.6

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:L/UI:N/VC:H/VI:H/VA:L/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
  • AvailabilityLow
  • CWE References
  • CWE-284
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-41279: Flowise Auth Bypass Vulnerability

  • CVE-2026-41276: FlowiseAI Authentication Bypass Vulnerability

  • CVE-2026-41273: Flowise Authentication Bypass Vulnerability

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