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-2023-33953

CVE-2023-33953: gRPC HPACK Parser DoS Vulnerability

CVE-2023-33953 is a denial of service vulnerability in gRPC's HPACK parser that enables unbounded memory buffering and CPU consumption attacks. This article covers the technical details, affected versions, and mitigation.

Published: February 4, 2026

CVE-2023-33953 Overview

CVE-2023-33953 is a denial of service vulnerability in gRPC that stems from HPACK table accounting errors in the HTTP/2 header compression implementation. The vulnerability allows malicious clients to trigger unwanted disconnections between gRPC clients and servers through three distinct attack vectors targeting the HPACK parser.

Critical Impact

Remote attackers can cause unbounded memory consumption and CPU exhaustion in gRPC servers, leading to denial of service conditions without requiring authentication.

Affected Products

  • gRPC (all vulnerable versions)
  • Applications and services built on gRPC framework
  • Google Cloud Platform services utilizing gRPC

Discovery Timeline

  • 2023-08-09 - CVE-2023-33953 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2023-33953

Vulnerability Analysis

This vulnerability presents three distinct denial of service attack vectors targeting the HPACK parser implementation in gRPC. The most severe issue involves unbounded memory buffering where the header size limit check was positioned behind the string reading code, requiring the parser to buffer up to 4 gigabytes of string data before rejecting it as exceeding the 8 or 16KB limit.

The second vector exploits a quirk in HPACK varint encoding that permits an infinite number of leading zeros at the start of an integer. The gRPC HPACK parser was required to read all zeros before completing the parse operation, creating an opportunity for resource exhaustion.

The third vector leverages the metadata overflow check being performed per-frame rather than cumulatively. An attacker could chain HEADERS and CONTINUATION frames (e.g., HEADERS: containing a: 1, CONTINUATION: containing a: 2, etc.) to cause infinite buffering across frame boundaries.

Root Cause

The root cause is improper resource consumption controls (CWE-770) and uncontrolled memory allocation (CWE-789) in the gRPC HPACK parser. The implementation failed to properly bound memory allocation before validating input size constraints, and the per-input-block copy operation combined with the memory copy bug resulted in O(n²) parsing complexity where n is controlled by the attacker.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker can exploit this vulnerability by sending specially crafted HTTP/2 frames to a gRPC server. The attack leverages malformed HPACK-encoded headers that exploit the parser's failure to properly validate and limit resource consumption early in the parsing process.

The unbounded CPU consumption occurs due to a copy operation that happened per-input-block in the parser. Because this could be unbounded due to the memory copy bug, the result is an O(n²) parsing loop where the value of n is entirely selected by the malicious client.

Detection Methods for CVE-2023-33953

Indicators of Compromise

  • Unusual memory growth patterns in gRPC server processes
  • Abnormally large HTTP/2 HEADERS or CONTINUATION frame sequences
  • gRPC server processes consuming excessive CPU during header parsing
  • Unexpected client-server disconnections without application-level errors

Detection Strategies

  • Monitor gRPC server memory utilization for sudden spikes during request processing
  • Implement network-level inspection for HTTP/2 frame sequences with anomalous CONTINUATION frame counts
  • Set up alerting for gRPC server CPU utilization anomalies correlated with incoming traffic patterns
  • Deploy application performance monitoring to detect parsing latency increases

Monitoring Recommendations

  • Enable detailed gRPC server logging to capture frame-level processing metrics
  • Configure resource utilization thresholds for gRPC server processes with automated alerting
  • Implement connection rate limiting at the load balancer level to mitigate amplification
  • Use SentinelOne's Singularity Platform to monitor for resource exhaustion patterns indicative of DoS attacks

How to Mitigate CVE-2023-33953

Immediate Actions Required

  • Upgrade gRPC to the latest patched version addressing this vulnerability
  • Review and update all applications and microservices using gRPC dependencies
  • Implement request size limits at the network perimeter to reduce attack surface
  • Enable rate limiting on gRPC endpoints to mitigate exploitation attempts

Patch Information

Google has released security updates to address this vulnerability. Refer to the Google Cloud Security Bulletin GCP-2023-022 for detailed patch information and affected version ranges. Organizations should prioritize updating gRPC libraries across all affected systems and verify that downstream dependencies have also been patched.

Workarounds

  • Deploy a reverse proxy or load balancer with HTTP/2 frame inspection capabilities to filter malicious requests
  • Configure connection timeouts and memory limits for gRPC server processes to limit impact
  • Implement network-level rate limiting to reduce the effectiveness of DoS attempts
  • Consider temporarily restricting access to gRPC endpoints from untrusted networks until patches are applied
bash
# Example: Configure gRPC server resource limits (implementation-specific)
# Set maximum header list size to prevent unbounded buffering
export GRPC_ARG_MAX_METADATA_SIZE=8192
# Configure maximum receive message length
export GRPC_ARG_MAX_RECEIVE_MESSAGE_LENGTH=4194304

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechGrpc

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.12%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-789

  • CWE-770
  • Vendor Resources
  • Google Cloud Security Bulletin
  • Related CVEs
  • CVE-2023-4785: Grpc Grpc DOS Vulnerability

  • CVE-2023-32732: gRPC HTTP2 Proxy DOS Vulnerability

  • CVE-2024-7246: gRPC Information Disclosure Vulnerability

  • CVE-2023-32731: gRPC HTTP2 Information Disclosure Flaw
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