banner logoJoin us at RSAC™ 2026 Conference, March 23–March 26 | North Expo, Booth N-5863Join us at RSAC™ 2026, March 23–March 26Learn More
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI Security Portfolio
      Leading the Way in AI-Powered Security Solutions
    • 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
      Digital Forensics, IRR & Breach Readiness
    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
    • 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-0772

CVE-2026-0772: Langflow Deserialization RCE Vulnerability

CVE-2026-0772 is a remote code execution vulnerability in Langflow's disk cache service caused by deserialization of untrusted data. Authenticated attackers can execute arbitrary code. This article covers technical details, impact, and mitigation.

Published: January 30, 2026

CVE-2026-0772 Overview

CVE-2026-0772 is a remote code execution vulnerability affecting Langflow, stemming from insecure deserialization of untrusted data in the disk cache service. This vulnerability allows authenticated remote attackers to execute arbitrary code on affected Langflow installations by exploiting improper validation of user-supplied data during deserialization operations.

The flaw was identified by the Zero Day Initiative and tracked as ZDI-CAN-27919. When successfully exploited, an attacker can execute code in the context of the service account, potentially compromising the entire system running Langflow.

Critical Impact

Authenticated attackers can achieve remote code execution through deserialization of malicious data in Langflow's disk cache service, enabling full system compromise under the service account context.

Affected Products

  • Langflow (specific versions not disclosed in advisory)

Discovery Timeline

  • 2026-01-23 - CVE CVE-2026-0772 published to NVD
  • 2026-01-26 - Last updated in NVD database

Technical Details for CVE-2026-0772

Vulnerability Analysis

This vulnerability (CWE-502: Deserialization of Untrusted Data) exists within Langflow's disk cache service. The disk cache component fails to adequately validate user-supplied data before deserializing it, creating an opportunity for attackers to inject malicious serialized objects.

Deserialization vulnerabilities occur when an application processes serialized data from untrusted sources without proper validation. In Python-based applications like Langflow, this typically involves the use of serialization libraries such as pickle that can execute arbitrary code during the deserialization process.

The attack requires authentication, which provides some mitigation against opportunistic attacks. However, once authenticated, an attacker can craft malicious payloads that, when deserialized by the disk cache service, result in arbitrary code execution.

Root Cause

The root cause of this vulnerability is the lack of proper validation of user-supplied data before deserialization in the disk cache service. The application trusts serialized data without verifying its integrity or origin, allowing attackers to inject malicious serialized objects that execute code upon deserialization.

This is a common weakness in applications that use serialization for caching or data persistence without implementing secure deserialization practices such as input validation, type checking, or using safer serialization formats.

Attack Vector

The attack vector is network-based, requiring the attacker to have valid authentication credentials to the Langflow application. Once authenticated, the attacker can submit specially crafted serialized data to the disk cache service.

The exploitation process involves creating a malicious serialized object containing code execution payloads. When the disk cache service deserializes this object, the embedded code executes in the context of the service account, giving the attacker control over the affected system.

Since no verified proof-of-concept code is available, the specific exploitation technique involves crafting malicious serialized objects targeting the disk cache service. For detailed technical information, refer to the Zero Day Initiative Advisory ZDI-26-038.

Detection Methods for CVE-2026-0772

Indicators of Compromise

  • Unusual process spawning from the Langflow service account
  • Unexpected network connections originating from the Langflow server
  • Anomalous disk cache operations or unusual serialized data patterns in cache directories
  • Suspicious authentication attempts followed by cache-related API calls

Detection Strategies

  • Monitor Langflow application logs for unusual deserialization errors or exceptions
  • Implement application-layer monitoring to detect malformed or suspicious serialized data payloads
  • Deploy network intrusion detection signatures for known deserialization attack patterns
  • Use endpoint detection and response (EDR) solutions to identify post-exploitation behavior

Monitoring Recommendations

  • Enable verbose logging for the disk cache service to capture deserialization events
  • Configure SIEM alerts for suspicious activity patterns associated with the Langflow service account
  • Monitor for child process creation from the Langflow process that deviates from normal operations
  • Implement file integrity monitoring on Langflow installation directories

How to Mitigate CVE-2026-0772

Immediate Actions Required

  • Review and restrict authentication access to Langflow installations
  • Implement network segmentation to limit exposure of Langflow services
  • Monitor for exploitation attempts using the detection strategies outlined above
  • Consider temporarily disabling the disk cache feature if operationally feasible

Patch Information

Consult the Zero Day Initiative Advisory ZDI-26-038 for the latest patch information and vendor remediation guidance. Apply vendor-supplied patches as soon as they become available to address this vulnerability.

Workarounds

  • Restrict network access to Langflow instances using firewall rules and access control lists
  • Implement strong authentication controls and limit user accounts with access to the application
  • Deploy web application firewalls (WAF) configured to inspect and block suspicious serialized data payloads
  • Consider using network isolation or containerization to limit the impact of potential compromise
bash
# Configuration example - Restrict network access to Langflow
# Add firewall rules to limit access to trusted IP addresses only
iptables -A INPUT -p tcp --dport 7860 -s trusted_ip_range -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
  • TypeRCE

  • Vendor/TechLangflow

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability1.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.0/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-502
  • Technical References
  • Zero Day Initiative Advisory ZDI-26-038
  • Related CVEs
  • CVE-2026-27966: Langflow CSV Agent Node RCE Vulnerability

  • CVE-2026-0770: Langflow exec_globals RCE Vulnerability

  • CVE-2026-0769: Langflow eval_custom_component_code RCE Flaw

  • CVE-2026-0771: Langflow PythonFunction RCE Vulnerability
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
  • English
  • 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