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-2024-2410

CVE-2024-2410: Google Protobuf Use-After-Free Vulnerability

CVE-2024-2410 is a use-after-free flaw in Google Protobuf's JsonToBinaryStream() function that occurs when parsing chunked JSON input. This article covers the technical details, affected versions, and mitigation.

Published: April 8, 2026

CVE-2024-2410 Overview

CVE-2024-2410 is a critical Use-After-Free vulnerability in the Google Protocol Buffers (protobuf) C++ implementation. The vulnerability exists in the JsonToBinaryStream() function, which is used to parse JSON data from a stream. When input is broken up into separate chunks in a specific way, the parser will attempt to read bytes from a memory chunk that has already been freed, leading to potentially severe security consequences.

Critical Impact

This Use-After-Free vulnerability in Google Protocol Buffers can allow remote attackers to execute arbitrary code, access sensitive information, or cause denial of service by exploiting improper memory handling during JSON stream parsing.

Affected Products

  • Google Protobuf (versions prior to v25.0)
  • Applications using the Protocol Buffers C++ implementation with JsonToBinaryStream() functionality
  • Services processing chunked JSON data through protobuf parsing

Discovery Timeline

  • 2024-05-03 - CVE CVE-2024-2410 published to NVD
  • 2025-07-22 - Last updated in NVD database

Technical Details for CVE-2024-2410

Vulnerability Analysis

This vulnerability is classified as CWE-416 (Use After Free), a memory corruption vulnerability that occurs when a program continues to use a pointer after the memory it references has been freed. In the context of the JsonToBinaryStream() function, the issue manifests during the processing of chunked JSON input streams.

The Protocol Buffers library is a widely-used serialization framework developed by Google, employed across countless applications for efficient data exchange. The JsonToBinaryStream() function provides a mechanism to convert JSON-formatted data into the binary protobuf format directly from a stream, which is particularly useful when handling large payloads or network data that arrives in segments.

The vulnerability arises from improper memory lifecycle management when the JSON parser processes input data that has been divided into discrete chunks. Under specific chunking conditions, the parser maintains references to memory buffers that have already been deallocated, subsequently attempting to read from these dangling pointers.

Root Cause

The root cause of this vulnerability lies in the memory management logic within the JsonToBinaryStream() function's chunked input handling. When JSON data arrives in multiple segments, the parser must manage buffer lifecycles carefully to ensure that no references persist to freed memory regions. In vulnerable versions, certain chunk boundary conditions cause the parser to retain stale pointers to previously processed (and subsequently freed) buffer segments.

This represents a classic Use-After-Free pattern where the temporal relationship between memory deallocation and subsequent access is violated. The parser's internal state incorrectly assumes buffer validity, leading to access of deallocated heap memory when specific chunking patterns are encountered.

Attack Vector

The attack vector for CVE-2024-2410 is network-based, requiring no authentication or user interaction. An attacker can exploit this vulnerability by sending specially crafted JSON data to an application that processes it using the vulnerable JsonToBinaryStream() function.

The exploitation scenario involves:

  1. Identifying a target application that uses Google Protocol Buffers to parse JSON input streams
  2. Crafting malicious JSON payload with specific chunk boundaries designed to trigger the Use-After-Free condition
  3. Sending the crafted input to the target service, causing the parser to access freed memory
  4. Depending on heap layout and exploitation techniques, potentially achieving arbitrary code execution, information disclosure, or service disruption

The vulnerability can be triggered over any protocol that delivers JSON data to a protobuf-based parser, including HTTP APIs, gRPC services, or custom network protocols leveraging protobuf serialization.

Detection Methods for CVE-2024-2410

Indicators of Compromise

  • Abnormal application crashes or segmentation faults in services using Protocol Buffers JSON parsing
  • Memory corruption errors logged by applications processing JSON-to-protobuf conversions
  • Unexpected heap memory access patterns detected by memory sanitizers (ASan, MSan)
  • Unusual network traffic patterns with fragmented JSON payloads targeting protobuf endpoints

Detection Strategies

  • Deploy memory sanitizers (AddressSanitizer, MemorySanitizer) in development and staging environments to detect Use-After-Free conditions
  • Implement application-level monitoring for parsing errors and exceptions in protobuf JSON conversion routines
  • Use intrusion detection systems to identify anomalous JSON payload patterns with unusual chunking characteristics
  • Monitor for application instability patterns that may indicate memory corruption exploitation attempts

Monitoring Recommendations

  • Enable verbose logging for protobuf parsing operations to capture potential exploitation attempts
  • Implement heap integrity checking in production environments where feasible
  • Configure crash reporting systems to capture and analyze memory corruption events
  • Monitor memory allocation patterns for services utilizing JsonToBinaryStream() functionality

How to Mitigate CVE-2024-2410

Immediate Actions Required

  • Upgrade Google Protocol Buffers to version 25.0 or later immediately
  • Inventory all applications and services using the protobuf C++ library with JSON parsing capabilities
  • Prioritize patching for internet-facing services that accept JSON input processed by protobuf
  • Implement input validation and rate limiting as temporary defense-in-depth measures

Patch Information

Google has addressed this vulnerability in Protocol Buffers version 25.0. The fix corrects the memory management logic in the JsonToBinaryStream() function to properly handle buffer lifecycles during chunked input processing. Organizations should update to protobuf v25.0 or later to remediate this vulnerability.

For environments where immediate patching is not feasible, consider implementing additional network-level controls to restrict access to services that process JSON through Protocol Buffers parsing.

Workarounds

  • If upgrading is not immediately possible, consider disabling JSON parsing functionality in favor of native protobuf binary format where applicable
  • Implement network segmentation to limit exposure of vulnerable services to trusted networks only
  • Deploy Web Application Firewalls (WAF) or API gateways to inspect and potentially block suspicious chunked JSON payloads
  • Consider implementing custom input preprocessing to aggregate chunked JSON data before passing to protobuf parser
bash
# Configuration example - Update protobuf dependency
# For CMake-based projects:
# Update CMakeLists.txt to require protobuf >= 25.0
find_package(Protobuf 25.0 REQUIRED)

# For Bazel-based projects:
# Update WORKSPACE to use protobuf v25.0+
# git_repository(
#     name = "com_google_protobuf",
#     remote = "https://github.com/protocolbuffers/protobuf.git",
#     tag = "v25.0",
# )

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

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechGoogle Protobuf

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-416
  • Technical References
  • GitHub Protobuf Release v25.0
  • Related CVEs
  • CVE-2021-22570: Google Protobuf Use-After-Free Flaw

  • CVE-2024-7254: Google Protobuf DOS Vulnerability

  • CVE-2022-3510: Google Protobuf-java DoS Vulnerability

  • CVE-2024-24786: Protobuf JSON Unmarshal DoS 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