A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-42048

CVE-2026-42048: Langflow Path Traversal Vulnerability

CVE-2026-42048 is a path traversal flaw in Langflow's Knowledge Bases API that allows authenticated attackers to delete arbitrary directories on the server. This article covers the technical details, affected versions, and mitigation.

Published: May 17, 2026

CVE-2026-42048 Overview

Langflow is an open-source tool for building and deploying AI-powered agents and workflows. CVE-2026-42048 is a path traversal vulnerability [CWE-22] in the Knowledge Bases API endpoint DELETE /api/v1/knowledge_bases. The flaw exists because user-supplied knowledge base names are concatenated directly into filesystem paths without sanitization or boundary validation. An authenticated attacker can traverse outside the intended directory and delete arbitrary directories on the server's filesystem. The issue affects all Langflow versions prior to 1.9.0 and is fixed in 1.9.0.

Critical Impact

Authenticated attackers can delete arbitrary directories anywhere on the host filesystem, causing data loss and service disruption across the Langflow deployment.

Affected Products

  • Langflow versions prior to 1.9.0
  • Self-hosted Langflow deployments exposing the Knowledge Bases API
  • Containerized Langflow instances using vulnerable image tags

Discovery Timeline

  • 2026-05-12 - CVE-2026-42048 published to NVD
  • 2026-05-14 - Last updated in NVD database

Technical Details for CVE-2026-42048

Vulnerability Analysis

The vulnerability resides in the Knowledge Bases deletion handler exposed at DELETE /api/v1/knowledge_bases. Langflow accepts a knowledge base name from the authenticated client and uses that value directly when constructing the filesystem path passed to the deletion routine. Because the API does not strip traversal sequences such as ../ or enforce a canonical base directory, attackers can escape the intended knowledge base storage location.

Successful exploitation results in recursive deletion of any directory the Langflow process has permission to remove. This includes application files, model caches, configuration directories, and adjacent service data on the same host. Confidentiality is not directly affected, but integrity and availability are severely impacted because attackers can destroy production data and break the running service.

Root Cause

The root cause is missing input sanitization on a user-controlled identifier used as part of a filesystem path. The handler trusts the supplied name without normalizing the path or validating that the resolved location remains within the designated knowledge base root, which is the defining pattern of [CWE-22] Path Traversal.

Attack Vector

The attack is performed over the network against the Langflow HTTP API. The attacker must hold valid authenticated credentials, which is a low barrier in multi-tenant or shared Langflow deployments. The attacker issues a DELETE request to /api/v1/knowledge_bases with a knowledge base name containing directory traversal sequences. The server resolves the traversal and recursively removes the target directory.

No verified public exploit code is currently available. Refer to the GitHub Security Advisory GHSA-9whx-c884-c68q for vendor-provided details.

Detection Methods for CVE-2026-42048

Indicators of Compromise

  • HTTP DELETE requests to /api/v1/knowledge_bases containing ../, ..%2f, or encoded traversal sequences in the knowledge base name parameter.
  • Unexpected removal of directories outside the Langflow knowledge base storage root.
  • Langflow application logs showing deletion operations referencing absolute paths or parent directory references.

Detection Strategies

  • Inspect web server and reverse proxy access logs for DELETE requests against the Knowledge Bases API with suspicious path characters in the request body or URL.
  • Enable filesystem auditing (auditd on Linux) on directories adjacent to the Langflow data path and alert on unexpected unlink or rmdir calls by the Langflow process.
  • Correlate authenticated session activity with deletion API calls to identify abuse from compromised or low-privileged accounts.

Monitoring Recommendations

  • Alert on any HTTP request to /api/v1/knowledge_bases whose payload contains .., URL-encoded traversal tokens, or absolute path prefixes.
  • Monitor Langflow container or host for sudden mass-deletion events and integrity changes to non-knowledge-base directories.
  • Track authentication events for the Langflow API and review accounts that issue knowledge base deletion requests at unusual rates.

How to Mitigate CVE-2026-42048

Immediate Actions Required

  • Upgrade Langflow to version 1.9.0 or later, which contains the official fix.
  • Restrict network exposure of the Langflow API to trusted users and internal networks until patching is complete.
  • Audit existing Langflow user accounts and rotate credentials for any accounts that may be untrusted or shared.
  • Back up Langflow data directories and verify backup integrity before applying changes.

Patch Information

The vulnerability is resolved in Langflow 1.9.0. The fix introduces proper sanitization and boundary validation on knowledge base names used in filesystem operations. Patch details are available in the Langflow GitHub Security Advisory GHSA-9whx-c884-c68q.

Workarounds

  • Place Langflow behind a reverse proxy or web application firewall that blocks requests to /api/v1/knowledge_bases containing traversal sequences such as ../ or ..%2f.
  • Run the Langflow process under a dedicated low-privilege user with filesystem access limited to its data directory.
  • Disable or restrict the Knowledge Bases deletion endpoint via proxy rules until the upgrade can be applied.
bash
# Example NGINX rule to block traversal patterns on the Knowledge Bases endpoint
location /api/v1/knowledge_bases {
    if ($request_method = DELETE) {
        if ($request_uri ~* "(\.\./|\.\.%2f|%2e%2e)") {
            return 403;
        }
    }
    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
  • TypePath Traversal

  • Vendor/TechLangflow

  • SeverityCRITICAL

  • CVSS Score9.6

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:N/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-22
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33497: Langflow Path Traversal Vulnerability

  • CVE-2026-6597: Langflow-AI Information Disclosure Flaw

  • CVE-2026-6596: Langflow-AI Auth Bypass Vulnerability

  • CVE-2026-6600: langflow-ai langflow XSS Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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