CVEReports
CVEReports

Automated vulnerability intelligence platform. Comprehensive reports for high-severity CVEs generated by AI.

Product

  • Home
  • Sitemap
  • RSS Feed

Company

  • About
  • Contact
  • Privacy Policy
  • Terms of Service

© 2026 CVEReports. All rights reserved.

Made with love by Amit Schendel & Alon Barad



CVE-2026-27794

Cache Me If You Can: LangGraph RCE via Pickle

Amit Schendel
Amit Schendel
Senior Security Researcher

Feb 26, 2026·5 min read·105 visits

Executive Summary (TL;DR)

LangGraph's checkpointing system enabled `pickle_fallback=True` by default. Attackers who can write to the cache (Redis/Filesystem) can inject malicious pickle payloads. When the application reads the cache, the payload executes, resulting in RCE.

LangGraph, the brain behind many stateful LLM agents, contained a critical deserialization vulnerability in its caching layer. By defaulting to Python's insecure `pickle` module for fallback serialization, the library opened a backdoor for attackers with write access to the cache backend (like Redis) to execute arbitrary code on the application server. It turns out that trusting serialized data from your cache is just as dangerous as trusting user input directly.

The Hook: Building Brains with Glass Skulls

LangGraph is the cool kid on the block for building stateful, multi-actor applications with LLMs. It manages the "memory" of your AI agents, allowing them to pause, resume, and loop through complex tasks. To make this performant, developers often use caching. You don't want your expensive LLM to re-think the same thought twice, right?

So, LangGraph provides a BaseCache interface. It sits there, quietly storing node states and results in backends like Redis, Postgres, or the filesystem. It’s the perfect optimization. But as with all optimizations in software engineering, there is a trade-off. In this case, the trade-off was security for convenience.

The library's developers wanted to ensure that anything you threw at the cache could be stored. JSON is great, but it can't handle complex Python objects. The solution? Allow the cache to fall back to Python's built-in pickle serialization if JSON fails. If you know anything about Python security, you know that pickle is essentially eval() in a trench coat.

The Flaw: A Serial Killer in the Library

The vulnerability (CWE-502) lies in the langgraph-checkpoint package. Specifically, the BaseCache class initialized its serializer with a fatal configuration default. The JsonPlusSerializer was told to use pickle_fallback=True.

Here is the logic: The application tries to read data from the cache. The serializer attempts to parse it as JSON or msgpack. If that fails, or if the data has specific magic bytes indicating a pickle stream, it passes the data to pickle.loads(). This is a classic "Insecure Deserialization" flaw.

Why is this bad? Because pickle allows object reconstruction to trigger arbitrary code execution during the unpickling process. It doesn't wait for you to call a method on the object; the mere act of loading it triggers the payload. If an attacker can poison the cache—say, by compromising a shared Redis instance or writing to a shared file—they can turn that cache read into a Remote Code Execution (RCE) event.

The Code: The Smoking Gun

Let's look at the diff. It’s almost comical how small the change is versus how massive the implication is. The vulnerable code lived in libs/checkpoint/langgraph/cache/base/__init__.py.

The Vulnerable Code (< 4.0.0):

class BaseCache(ABC, Generic[ValueT]):
    """Base class for a cache."""
    # The road to hell is paved with good intentions (and defaults)
    serde: SerializerProtocol = JsonPlusSerializer(pickle_fallback=True)

That True flag is the culprit. It tells the serializer: "If you don't understand these bytes, just execute them as Python code." It’s the equivalent of a bouncer letting someone into a club just because they're speaking a language the bouncer doesn't understand.

The Fix (>= 4.0.0):

class BaseCache(ABC, Generic[ValueT]):
    """Base class for a cache."""
    # Door slammed shut.
    serde: SerializerProtocol = JsonPlusSerializer(pickle_fallback=False)

The fix was simply to invert the boolean. Now, if the serializer encounters data it can't handle with JSON/msgpack, it raises an error instead of executing it.

The Exploit: Poisoning the Well

This is a post-compromise or infrastructure-escalation exploit. You can't hit this directly from the public internet unless the cache is also exposed (which, honestly, happens more often than it should with Redis).

The Attack Chain:

  1. Recon: The attacker gains access to the Redis instance used by the LangGraph application. This could be via a weak password, an SSRF vulnerability in another service, or lateral movement in the cluster.
  2. Weaponization: The attacker generates a standard pickle bomb using the __reduce__ method.
import pickle
import os
 
class RCE:
    def __reduce__(self):
        # The classic reverse shell or command execution
        return (os.system, ("id > /tmp/pwned",))
 
payload = pickle.dumps(RCE())
  1. Injection: The attacker identifies the key schema used by LangGraph (usually containing the run ID and node ID) and sets the value of that key to the payload bytes in Redis.
  2. Execution: The next time the LangGraph agent runs and attempts to retrieve that node's state from the cache, pickle.loads() detonates the payload. The application server executes the command with the privileges of the LangGraph process.

The Impact: From Cache to Shell

Why should you care if someone needs Redis access to exploit this? Because in modern microservices architectures, we often treat the cache as "internal" and therefore "safe." We might have strict firewall rules for the app server, but leave Redis wide open within the VPC.

This vulnerability turns a data-layer compromise into an application-layer compromise. If an attacker can write to your cache, they no longer just see your data—they own your execution flow.

Impacts include:

  • Full RCE: Complete control over the server running the LLM agent.
  • Secret Theft: Access to environment variables, including OpenAI/Anthropic API keys, database credentials, and AWS tokens.
  • Lateral Movement: Using the compromised host to pivot further into the network.
  • Data Poisoning: Aside from RCE, an attacker could subtly alter the state of the agent, causing it to hallucinate or perform incorrect actions defined by the attacker.

The Fix: Turning off the Magic

The remediation is straightforward, but it requires action. The LangChain AI team released patched versions that disable the pickle fallback by default.

Immediate Steps:

  1. Upgrade langgraph-checkpoint to version 4.0.0 or higher.
  2. Upgrade langgraph to version 1.0.6 or higher.
  3. If you are using specific storage backends like langgraph-checkpoint-postgres or sqlite, update those to their latest versions (3.0.3 and 3.0.2 respectively).

If you absolutely must use pickle (and please, ask yourself why), you have to explicitly opt-in now by passing your own serializer configuration. But for 99% of users, the default safe behavior is what you want.

Lesson Learned: Never implement a "fallback" that lowers security standards. Fail secure, not convenient.

Official Patches

LangChain AIPull Request disabling pickle fallback

Fix Analysis (1)

Technical Appendix

CVSS Score
6.6/ 10
CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H

Affected Systems

LangGraph applications using cachingSystems using langgraph-checkpoint < 4.0.0

Affected Versions Detail

Product
Affected Versions
Fixed Version
langgraph-checkpoint
langchain-ai
< 4.0.04.0.0
langgraph
langchain-ai
< 1.0.61.0.6
AttributeDetail
CWE IDCWE-502 (Deserialization of Untrusted Data)
CVSS v3.16.6 (Medium)
VectorAV:N/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H
Attack VectorNetwork (via Cache Backend)
Privileges RequiredHigh (Write access to cache)
KEV StatusNot Listed

MITRE ATT&CK Mapping

T1059Command and Scripting Interpreter
Execution
T1557Adversary-in-the-Middle
Credential Access
T1203Exploitation for Client Execution
Execution
CWE-502
Deserialization of Untrusted Data

The application deserializes untrusted data without sufficient verification, which can result in the execution of arbitrary code.

Known Exploits & Detection

GitHub AdvisoryVendor advisory describing the pickle fallback vulnerability.

Vulnerability Timeline

Fix commit merged to master
2026-01-12
Public Disclosure (GHSA and NVD)
2026-02-25
Patch v4.0.0 released
2026-02-25

References & Sources

  • [1]GitHub Security Advisory GHSA-mhr3-j7m5-c7c9
  • [2]NVD CVE-2026-27794 Detail

Attack Flow Diagram

Press enter or space to select a node. You can then use the arrow keys to move the node around. Press delete to remove it and escape to cancel.
Press enter or space to select an edge. You can then press delete to remove it or escape to cancel.

More Reports

•5 minutes ago•CVE-2026-49757
9.2

CVE-2026-49757: Authentication Bypass and Account Takeover in ash_authentication OAuth2/OIDC

An authentication bypass and account takeover vulnerability in the AshAuthentication Elixir library (developed by team-alembic) allows unauthenticated remote attackers to compromise local accounts. By relying on mutable and unverified email claims instead of stable cryptographic issuer and subject pairings during OAuth2 and OIDC federated login flows, the application fails to validate the trust boundary of the incoming session.

Alon Barad
Alon Barad
0 views•6 min read
•about 1 hour ago•CVE-2026-55618
6.5

CVE-2026-55618: URL Extraction Bypass via HTML Entities in eml_parser

A critical logical flaw in the eml_parser Python module prior to version 3.0.2 allows malicious URLs to evade automated security analysis pipelines. By encoding key URI delimiter characters as HTML decimal entities, an attacker can mask indicators of compromise. Security controls, orchestration layers, and sandbox systems fail to detect these links, while downstream Mail User Agents natively reconstruct the malicious hyper-references when processed by end-users. This mechanism undermines the integrity of automated indicator extraction processes within Security Operations Centers.

Amit Schendel
Amit Schendel
2 views•7 min read
•about 2 hours ago•CVE-2026-55619
5.3

CVE-2026-55619: Parser Denial of Service via Deeply Nested Parentheses in E-mail Headers

A denial of service vulnerability in GOVCERT-LU eml_parser before version 3.0.2 allows unauthenticated remote attackers to trigger an unhandled RecursionError exception. The issue arises during the parsing of structured email headers containing excessively nested parentheses representing Comments and Folding White Space (CFWS). Because the parser fails to catch this recursion-limit exception from Python's standard library, processing of the entire mail immediately aborts, which can disrupt automated security triage pipelines and email ingestion components.

Alon Barad
Alon Barad
3 views•6 min read
•about 3 hours ago•CVE-2026-55620
7.5

CVE-2026-55620: Algorithmic Complexity Denial of Service in GOVCERT-LU eml_parser

Prior to version 3.0.2, GOVCERT-LU's eml_parser library is vulnerable to an algorithmic complexity Denial of Service (DoS) vulnerability via the comment-stripping routine noparenthesis() in routing.py. An unauthenticated attacker can submit a crafted EML file containing nested parenthesized comments to cause complete CPU saturation. This happens due to a quadratic time complexity bottleneck in regex replacement of nested structures.

Amit Schendel
Amit Schendel
5 views•6 min read
•about 4 hours ago•CVE-2026-55629
8.7

CVE-2026-55629: Arbitrary File Read via Path Traversal in Whistle Proxy Internal Service

Whistle prior to version 2.10.3 contains a path traversal vulnerability in its internal service layer. An unauthenticated remote attacker can read arbitrary files on the hosting operating system by issuing a crafted GET request containing relative or absolute file paths to the `/cgi-bin/temp/get` endpoint. This behavior occurs because the application fails open when an input file parameter does not match the temporary file format regex.

Alon Barad
Alon Barad
4 views•6 min read
•about 5 hours ago•CVE-2026-55609
7.1

CVE-2026-55609: Arbitrary File Read and Write via Model Context Protocol (MCP) Tools in sublinear-time-solver and consciousness-explorer

An arbitrary file read and write vulnerability exists in the Model Context Protocol (MCP) server endpoints of sublinear-time-solver and consciousness-explorer. By providing unvalidated file paths to the export_state, import_state, saveVectorToFile, and loadVectorFromFile tools, local attackers can read or overwrite sensitive host files.

Alon Barad
Alon Barad
3 views•5 min read