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

CVE-2026-33053: Langflow Auth Bypass Vulnerability

CVE-2026-33053 is an authentication bypass vulnerability in Langflow that allows users to delete API keys belonging to other users. This article covers the technical details, affected versions, security impact, and mitigation.

Published: March 27, 2026

CVE-2026-33053 Overview

CVE-2026-33053 is an Insecure Direct Object Reference (IDOR) vulnerability in Langflow, a popular tool for building and deploying AI-powered agents and workflows. The vulnerability exists in the delete_api_key_route() endpoint, which accepts an api_key_id path parameter and deletes the corresponding API key without verifying that the key belongs to the authenticated user making the request.

This authorization bypass flaw allows any authenticated user to delete API keys belonging to other users by manipulating the api_key_id parameter, potentially disrupting service access and causing denial of service conditions for affected users.

Critical Impact

Authenticated attackers can delete any user's API keys, causing service disruption and potential denial of service across the Langflow platform.

Affected Products

  • Langflow versions prior to 1.9.0
  • Langflow AI-powered agent and workflow deployments using vulnerable API key management

Discovery Timeline

  • 2026-03-20 - CVE CVE-2026-33053 published to NVD
  • 2026-03-20 - Last updated in NVD database

Technical Details for CVE-2026-33053

Vulnerability Analysis

The vulnerability is classified as CWE-639 (Authorization Bypass Through User-Controlled Key), commonly known as an Insecure Direct Object Reference (IDOR). The flaw stems from inadequate authorization checks in the API key deletion functionality.

The delete_api_key_route() endpoint implements a generic authentication check using the get_current_active_user dependency, which verifies that the requester is a valid, authenticated user. However, this check only confirms authentication status—it does not verify authorization. The subsequent delete_api_key() CRUD function fails to validate whether the specified api_key_id belongs to the currently authenticated user before performing the deletion operation.

This architectural oversight means that once a user is authenticated, they can supply any valid api_key_id to the endpoint and successfully delete that key, regardless of ownership. The attack requires network access and low-privilege authenticated access, but exploitation is straightforward once these prerequisites are met.

Root Cause

The root cause is a missing object-level authorization check in the delete_api_key() CRUD function. While the endpoint correctly enforces authentication (verifying "who you are"), it fails to enforce authorization (verifying "what you can do"). The CRUD function should validate that the api_key_id parameter references a resource owned by or accessible to the requesting user before executing the delete operation.

Attack Vector

The attack can be executed remotely over the network by any authenticated user. An attacker would:

  1. Authenticate to the Langflow application with valid credentials
  2. Enumerate or guess valid api_key_id values belonging to other users
  3. Send DELETE requests to the delete_api_key_route() endpoint with target api_key_id values
  4. Successfully delete API keys belonging to other users without proper authorization

The vulnerability allows manipulation of the integrity of other users' data and can cause availability impacts by removing API keys that are required for legitimate service access. For detailed technical information about the vulnerability mechanism, refer to the GitHub Security Advisory.

Detection Methods for CVE-2026-33053

Indicators of Compromise

  • Unusual patterns of API key deletion requests from a single authenticated user
  • Deletion of API keys followed by user complaints about lost access
  • Multiple api_key_id values being deleted in rapid succession from the same session
  • API logs showing deletion requests for keys not owned by the requesting user

Detection Strategies

  • Implement logging that captures both the requesting user ID and the owner of the api_key_id being deleted
  • Monitor for anomalous deletion patterns where users delete keys at rates exceeding normal behavior
  • Audit authentication logs for users making requests to delete resources they don't own
  • Deploy application-layer monitoring to detect IDOR attack patterns targeting API endpoints

Monitoring Recommendations

  • Enable detailed access logging for all API key management endpoints
  • Create alerts for API key deletion events where requester ID differs from key owner ID
  • Monitor for enumeration patterns (sequential or predictable api_key_id access attempts)
  • Review Langflow application logs regularly for unauthorized access attempts

How to Mitigate CVE-2026-33053

Immediate Actions Required

  • Upgrade Langflow to version 1.9.0 or later immediately
  • Audit API key deletion logs to identify any unauthorized deletions that may have occurred
  • Regenerate API keys for users who may have been affected by exploitation
  • Implement network-level access controls to limit API endpoint exposure while patching

Patch Information

The vulnerability has been addressed in Langflow version 1.9.0. Organizations should upgrade to this version or later to receive the security fix. The patch adds proper object-level authorization checks to ensure that users can only delete API keys they own.

For patch details and upgrade instructions, see the GitHub Security Advisory.

Workarounds

  • Restrict network access to Langflow API endpoints using firewall rules or reverse proxy configuration
  • Implement additional authentication layers (such as API gateway policies) that validate resource ownership
  • Limit user account creation to reduce the potential attacker pool
  • Monitor and alert on all API key deletion events until the patch can be applied
bash
# Example: Restrict access to API endpoints using nginx
# Add to your Langflow nginx configuration
location /api/v1/api_key {
    # Restrict to trusted internal networks only
    allow 10.0.0.0/8;
    allow 192.168.0.0/16;
    deny all;
    
    proxy_pass http://langflow_backend;
}

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechLangflow

  • SeverityMEDIUM

  • CVSS Score6.1

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:L/UI:N/VC:N/VI:H/VA:H/SC:N/SI:N/SA:L/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-639
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-6596: Langflow-AI Auth Bypass Vulnerability

  • CVE-2026-33484: Langflow Auth Bypass Vulnerability

  • CVE-2026-21445: Langflow Auth Bypass Vulnerability

  • CVE-2026-6597: Langflow-AI Information Disclosure Flaw
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