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

CVE-2026-21445: Langflow Auth Bypass Vulnerability

CVE-2026-21445 is an authentication bypass vulnerability in Langflow that exposes critical API endpoints without authentication. Attackers can access user data and perform destructive operations. This article covers impact, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2026-21445 Overview

Langflow, a popular tool for building and deploying AI-powered agents and workflows, contains a critical missing authentication vulnerability in multiple API endpoints. Prior to version 1.7.0.dev45, the application fails to enforce authentication controls on sensitive API endpoints, allowing unauthenticated attackers to access private user conversation data, transaction histories, and perform destructive operations including message deletion.

Critical Impact

Unauthenticated attackers can remotely access sensitive user data, view conversation histories, and delete messages without any authorization, compromising the confidentiality and integrity of AI workflow deployments.

Affected Products

  • Langflow versions prior to 1.7.0.dev45
  • Langflow API endpoints handling user conversations and transactions
  • Langflow deployments with network-exposed API services

Discovery Timeline

  • 2026-01-02 - CVE-2026-21445 published to NVD
  • 2026-01-08 - Last updated in NVD database

Technical Details for CVE-2026-21445

Vulnerability Analysis

This vulnerability is classified as CWE-306 (Missing Authentication for Critical Function). The flaw exists because multiple critical API endpoints in Langflow were implemented without proper authentication middleware. Attackers can exploit this by sending direct HTTP requests to these unprotected endpoints from anywhere on the network, bypassing the intended authentication flow entirely.

The vulnerability affects endpoints responsible for handling personal data and system operations. An unauthenticated attacker can access sensitive user conversation data stored within Langflow workflows, view transaction histories that may contain confidential business logic or AI prompt data, and perform destructive operations such as message deletion that could disrupt ongoing workflows and compromise data integrity.

Root Cause

The root cause of this vulnerability lies in the failure to apply authentication decorators or dependency injection for user verification on critical API routes. The affected endpoints in the log router and chat modules were missing the get_current_active_user dependency that enforces authentication before processing requests. Without this check, the FastAPI framework processes all incoming requests regardless of authentication status.

Attack Vector

This vulnerability is exploitable over the network with no authentication required and no user interaction necessary. An attacker with network access to a Langflow deployment can craft HTTP requests directly to the vulnerable endpoints. The attack requires no special privileges and has low complexity, making it highly accessible to attackers. Successful exploitation results in unauthorized access to confidential conversation data and the ability to manipulate or delete stored messages.

python
# Security patch in src/backend/base/langflow/api/log_router.py
# Source: https://github.com/langflow-ai/langflow/commit/3fed9fe1b5658f2c8656dbd73508e113a96e486a

 from http import HTTPStatus
 from typing import Annotated, Any
 
-from fastapi import APIRouter, HTTPException, Query, Request
+from fastapi import APIRouter, Depends, HTTPException, Query, Request
 from fastapi.responses import JSONResponse, StreamingResponse
 from lfx.log.logger import log_buffer
 
+from langflow.services.auth.utils import get_current_active_user
+
 log_router = APIRouter(tags=["Log"])
python
# Security patch in src/backend/base/langflow/api/v1/chat.py
# Source: https://github.com/langflow-ai/langflow/commit/3fed9fe1b5658f2c8656dbd73508e113a96e486a

     VerticesOrderResponse,
 )
 from langflow.exceptions.component import ComponentBuildError
+from langflow.services.auth.utils import get_current_active_user
 from langflow.services.chat.service import ChatService
 from langflow.services.database.models.flow.model import Flow
 from langflow.services.deps import (

Detection Methods for CVE-2026-21445

Indicators of Compromise

  • Unusual API requests to Langflow endpoints from unauthenticated sources or unexpected IP addresses
  • Access logs showing successful responses (HTTP 200) to sensitive endpoints without corresponding authentication events
  • Unexpected deletion of conversation messages or transaction records
  • Anomalous patterns of data retrieval from chat and log endpoints

Detection Strategies

  • Monitor web server and application logs for requests to /api/v1/chat and log router endpoints that lack authentication tokens or session identifiers
  • Implement network-level monitoring to detect reconnaissance activity targeting Langflow API endpoints
  • Deploy web application firewalls (WAF) with rules to detect and block unauthenticated access attempts to sensitive API routes
  • Review audit logs for bulk data access patterns or deletion operations that occur outside normal user activity windows

Monitoring Recommendations

  • Enable detailed access logging on all Langflow API endpoints and centralize logs for analysis
  • Configure alerting for failed authentication attempts followed by successful endpoint access, which may indicate exploitation
  • Establish baseline patterns for legitimate API usage to identify anomalous unauthenticated access attempts
  • Implement real-time monitoring of data deletion events on conversation and transaction endpoints

How to Mitigate CVE-2026-21445

Immediate Actions Required

  • Upgrade Langflow to version 1.7.0.dev45 or later immediately to apply the security patch
  • If immediate upgrade is not possible, restrict network access to Langflow deployments using firewall rules or network segmentation
  • Review access logs for signs of prior exploitation and investigate any suspicious unauthenticated access to sensitive endpoints
  • Audit all conversation and transaction data for unauthorized access or unexpected deletions

Patch Information

The vulnerability has been addressed in Langflow version 1.7.0.dev45. The fix adds the get_current_active_user authentication dependency to the affected API endpoints, ensuring that all requests are properly authenticated before processing. The security patch is available via the GitHub Commit Update. Additional details can be found in the GitHub Security Advisory.

Workarounds

  • Place Langflow deployments behind a reverse proxy that enforces authentication at the network layer before requests reach the application
  • Implement IP allowlisting to restrict API access to trusted networks only
  • Deploy a web application firewall (WAF) to block unauthenticated requests to sensitive endpoints
  • Disable or remove network exposure for Langflow instances that do not require external access until patching is complete
bash
# Example: Restrict Langflow API access using iptables
# Allow only trusted network to access Langflow API port
iptables -A INPUT -p tcp --dport 7860 -s 10.0.0.0/8 -j ACCEPT
iptables -A INPUT -p tcp --dport 7860 -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/TechLangflow

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.16%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:N/SC:N/SI:N/SA:N/E:P/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-306
  • Technical References
  • GitHub Commit Update

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33484: Langflow Auth Bypass Vulnerability

  • CVE-2026-33053: Langflow Auth Bypass Vulnerability

  • CVE-2026-33873: Langflow Agentic Assistant RCE Vulnerability

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