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-2025-64439

CVE-2025-64439: LangGraph SQLite Checkpoint RCE Vulnerability

CVE-2025-64439 is a remote code execution vulnerability in LangGraph SQLite Checkpoint's JsonPlusSerializer that allows attackers to execute malicious code during deserialization. This post covers technical details, affected versions, impact, and mitigation steps.

Published: March 11, 2026

CVE-2025-64439 Overview

CVE-2025-64439 is an Insecure Deserialization vulnerability affecting LangGraph SQLite Checkpoint, an implementation of LangGraph CheckpointSaver that uses SQLite DB for both synchronous and asynchronous operations via aiosqlite. The vulnerability exists in the JsonPlusSerializer component, which is used as the default serialization protocol for all checkpointing operations. When deserializing payloads saved in "json" serialization mode, attackers can achieve Remote Code Execution (RCE) on affected systems.

By default, the serializer attempts to use "msgpack" for serialization. However, in versions prior to 3.0, if illegal Unicode surrogate values caused serialization to fail, the system would fall back to using the vulnerable "json" mode. This fallback behavior creates an exploitable condition where malicious serialized payloads can be injected and executed.

Critical Impact

Remote Code Execution vulnerability in LangGraph checkpoint deserialization allows attackers with low privileges to execute arbitrary code on systems running affected versions, potentially compromising AI/ML pipeline integrity.

Affected Products

  • LangGraph SQLite Checkpoint versions 2.1.2 and below
  • LangGraph checkpoint library versions prior to 3.0.0
  • Systems using JsonPlusSerializer with "json" serialization mode

Discovery Timeline

  • 2025-11-07 - CVE-2025-64439 published to NVD
  • 2025-11-12 - Last updated in NVD database

Technical Details for CVE-2025-64439

Vulnerability Analysis

This vulnerability is classified as CWE-502 (Deserialization of Untrusted Data). The flaw resides in the JsonPlusSerializer class within the LangGraph checkpoint library. The core issue stems from the serializer's dual-mode operation: while "msgpack" is the preferred serialization format, the system contains a fallback mechanism that switches to "json" mode when Unicode surrogate value errors occur during msgpack serialization.

The "json" serialization mode in affected versions does not properly validate or sanitize incoming data before deserialization, creating a classic insecure deserialization vulnerability. An attacker with the ability to manipulate checkpoint data stored in the SQLite database can craft malicious payloads that, when deserialized by the vulnerable JsonPlusSerializer, result in arbitrary code execution.

The attack requires network access and low privileges, but no user interaction is needed. The vulnerability has significant potential for lateral movement, as compromised checkpoints could affect downstream components that consume the AI/ML pipeline data.

Root Cause

The root cause is the unsafe deserialization of JSON payloads in the JsonPlusSerializer without proper validation or type checking. When the msgpack serialization fails due to illegal Unicode surrogate values, the fallback to JSON mode bypasses security controls that would otherwise prevent malicious object reconstruction. The serializer trusts the incoming data structure without verifying the integrity or safety of the serialized objects, allowing arbitrary code execution through carefully crafted payloads.

Attack Vector

The attack leverages the network-accessible checkpoint system. An attacker with low-level privileges to the system can:

  1. Trigger or wait for conditions where msgpack serialization fails (e.g., by introducing illegal Unicode surrogate values)
  2. Inject malicious serialized payloads into checkpoint data stored in the SQLite database
  3. When the checkpoint is loaded and deserialized using the vulnerable "json" mode, the malicious payload executes arbitrary code

The security patch addresses this by adding explicit JSON import handling and restricting "json" type deserialization to prevent arbitrary object reconstruction:

python
from __future__ import annotations

+import json
import random
import sqlite3
import threading

Source: GitHub Commit - Security Patch

The async module received a similar fix:

python
from __future__ import annotations

import asyncio
+import json
import random
from collections.abc import AsyncIterator, Callable, Iterator, Sequence
from contextlib import asynccontextmanager

Source: GitHub Commit - Security Patch

Detection Methods for CVE-2025-64439

Indicators of Compromise

  • Unexpected or malformed checkpoint data in SQLite databases associated with LangGraph
  • Checkpoint files containing unusual Unicode sequences or surrogate values designed to trigger msgpack fallback
  • Anomalous process spawning from Python processes running LangGraph checkpointing operations
  • Unexpected network connections originating from checkpoint deserialization contexts

Detection Strategies

  • Monitor for unusual deserialization patterns in LangGraph checkpoint operations, particularly fallbacks from msgpack to JSON mode
  • Implement file integrity monitoring on SQLite checkpoint databases to detect unauthorized modifications
  • Deploy runtime application self-protection (RASP) solutions to detect and block deserialization attacks
  • Audit logs for checkpoint load operations that process externally-sourced or modified data

Monitoring Recommendations

  • Enable verbose logging for LangGraph checkpoint operations to capture serialization mode switches
  • Monitor system calls and process creation events from processes handling checkpoint data
  • Implement anomaly detection for checkpoint file sizes and modification patterns
  • Set up alerts for failed msgpack serialization attempts followed by JSON fallback mode activation

How to Mitigate CVE-2025-64439

Immediate Actions Required

  • Upgrade LangGraph checkpoint library to version 3.0.0 or later immediately
  • Audit existing checkpoint data for signs of tampering or malicious payloads
  • Restrict access to SQLite checkpoint databases to trusted processes only
  • Implement network segmentation to limit exposure of checkpoint storage systems

Patch Information

The vulnerability is fixed in LangGraph checkpoint version 3.0.0. The patch restricts "json" type deserialization to prevent arbitrary code execution through crafted payloads. Organizations should upgrade to this version as soon as possible.

  • Fixed Version:3.0.0
  • Patch Commit:c5744f583b11745cd406f3059903e17bbcdcc8ac
  • Security Advisory:GHSA-wwqv-p2pp-99h5
  • Release Notes:LangGraph Checkpoint 3.0.0

Workarounds

  • If immediate upgrade is not possible, implement strict access controls on checkpoint databases to prevent unauthorized modifications
  • Consider disabling JSON fallback mode in custom serializer configurations if your environment supports it
  • Deploy network-level controls to restrict access to systems hosting checkpoint data
  • Implement integrity verification for checkpoint data before deserialization
bash
# Upgrade LangGraph checkpoint to patched version
pip install --upgrade langgraph-checkpoint>=3.0.0

# Verify installed version
pip show langgraph-checkpoint | grep Version

# Audit dependencies for vulnerable versions
pip list | grep langgraph

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechLanggraph

  • SeverityHIGH

  • CVSS Score7.4

  • EPSS Probability0.81%

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

  • GitHub Commit History

  • GitHub Release Note

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-28277: LangGraph SQLite Checkpoint RCE Flaw

  • CVE-2026-27794: LangGraph Checkpoint RCE Vulnerability
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