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-39325

CVE-2023-39325: Golang Go HTTP/2 DoS Vulnerability

CVE-2023-39325 is a denial of service vulnerability in Golang Go's HTTP/2 implementation that allows attackers to exhaust server resources through rapid request creation and resets. This article covers technical details, impact, and fixes.

Published: February 11, 2026

CVE-2023-39325 Overview

CVE-2023-39325 is a resource exhaustion vulnerability affecting Go's HTTP/2 implementation that enables denial of service attacks through rapid stream creation and reset. A malicious HTTP/2 client can rapidly create requests and immediately reset them, causing excessive server resource consumption. While the total number of requests is bounded by the http2.Server.MaxConcurrentStreams setting, resetting an in-progress request allows the attacker to create a new request while the existing one is still executing, effectively bypassing concurrency limits.

This vulnerability is part of the broader "HTTP/2 Rapid Reset" attack class that impacted numerous HTTP/2 implementations in 2023, making it particularly significant for organizations running Go-based services.

Critical Impact

Attackers can cause denial of service by exhausting server resources through rapid HTTP/2 stream resets, potentially affecting all Go-based web services and applications using the affected net/http2 package.

Affected Products

  • Golang Go (versions prior to patched releases)
  • Golang HTTP/2 library (golang.org/x/net/http2)
  • Fedora 37, 38, and 39
  • NetApp Astra Trident
  • NetApp Astra Trident Autosupport

Discovery Timeline

  • 2023-10-11 - CVE-2023-39325 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2023-39325

Vulnerability Analysis

This vulnerability exploits a weakness in how Go's HTTP/2 server implementation handles concurrent stream management. Under normal operation, the MaxConcurrentStreams setting limits the number of simultaneous requests a client can make on a single HTTP/2 connection (defaulting to 250 streams). However, the vulnerability arises because the server does not properly account for handler goroutines that are still executing when their associated streams are reset by the client.

When an attacker initiates a request and immediately sends an RST_STREAM frame, the server's concurrency counter decrements, allowing a new stream to be opened. Meanwhile, the handler goroutine for the cancelled request may still be executing, consuming server resources. By rapidly repeating this pattern, an attacker can spawn an unbounded number of handler goroutines, leading to memory exhaustion, CPU saturation, and eventual service unavailability.

The fix introduces a new mechanism that bounds the number of simultaneously executing handler goroutines to the stream concurrency limit. New requests arriving when at the limit are queued until a handler exits. If the request queue grows too large, the server terminates the connection entirely to protect against resource exhaustion.

Root Cause

The root cause is classified as CWE-770: Allocation of Resources Without Limits or Throttling. The HTTP/2 server implementation failed to properly correlate the stream concurrency limit with the actual number of executing request handlers. The decoupling between stream state and handler execution state allowed attackers to bypass intended resource limits through rapid stream reset operations.

Attack Vector

The attack is network-based and can be executed remotely without authentication. An attacker establishes an HTTP/2 connection to a vulnerable Go server and performs the following sequence:

  1. Open an HTTP/2 stream and send request headers
  2. Immediately send an RST_STREAM frame to cancel the request
  3. Open a new stream before the previous handler has completed
  4. Repeat steps 1-3 at high frequency

This pattern causes the server to accumulate goroutines faster than they can complete, eventually exhausting available memory or causing excessive CPU usage from context switching. The attack requires minimal bandwidth compared to traditional volumetric DDoS attacks, making it particularly efficient.

The default stream concurrency limit is 250 streams per HTTP/2 connection. This value may be adjusted using the golang.org/x/net/http2 package through the Server.MaxConcurrentStreams setting and the ConfigureServer function.

Detection Methods for CVE-2023-39325

Indicators of Compromise

  • Unusual patterns of HTTP/2 RST_STREAM frames being sent immediately after request initiation
  • Rapid growth in the number of goroutines on Go-based servers
  • Elevated memory consumption on HTTP/2 servers without corresponding increase in legitimate traffic
  • High rate of incomplete HTTP/2 streams with short durations

Detection Strategies

  • Monitor HTTP/2 connection metrics for abnormal RST_STREAM frame rates relative to completed requests
  • Implement application performance monitoring (APM) to track goroutine counts and memory allocation patterns
  • Deploy network-based intrusion detection systems with signatures for HTTP/2 rapid reset attack patterns
  • Review server logs for connections with high stream creation rates combined with minimal response data

Monitoring Recommendations

  • Set up alerting thresholds for goroutine count increases that exceed normal operational baselines
  • Monitor HTTP/2 server connection duration and stream completion ratios
  • Track memory utilization trends on servers running Go-based HTTP/2 services
  • Implement rate limiting on HTTP/2 stream creation at the load balancer or reverse proxy level

How to Mitigate CVE-2023-39325

Immediate Actions Required

  • Update Go to the latest patched version that includes the fix for CVE-2023-39325
  • Update the golang.org/x/net/http2 package if manually configuring HTTP/2 servers
  • Consider reducing MaxConcurrentStreams from the default 250 to a lower value appropriate for your workload
  • Deploy a reverse proxy or load balancer with HTTP/2 rapid reset attack protection capabilities

Patch Information

Golang has released patches addressing this vulnerability. The fix ensures HTTP/2 servers bound the number of simultaneously executing handler goroutines to the stream concurrency limit. New requests arriving when at the limit are queued until a handler exits, and if the request queue grows too large, the server terminates the connection.

For detailed patch information, refer to:

  • Go.dev Changelist #534215
  • Go.dev Changelist #534235
  • Go.dev Issue #63417
  • Go Vulnerability Database GO-2023-2102

Additional vendor advisories are available from Gentoo GLSA 202311-09 and NetApp Advisory NTAP-20231110-0008.

Workarounds

  • Deploy HTTP/2-aware load balancers or reverse proxies in front of Go servers to filter malicious traffic patterns
  • Temporarily disable HTTP/2 and fall back to HTTP/1.1 if patching is not immediately possible
  • Implement connection-level rate limiting to restrict the number of streams a single client can create over time
  • Configure firewall rules to limit the rate of new connections from individual IP addresses
bash
# Example: Configure Go HTTP/2 server with reduced MaxConcurrentStreams
# In your Go application, use the http2 package to configure the server:
# 
# import "golang.org/x/net/http2"
#
# server := &http.Server{Addr: ":443", Handler: handler}
# http2.ConfigureServer(server, &http2.Server{
#     MaxConcurrentStreams: 100,  // Reduce from default 250
# })

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechGolang

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.15%

  • 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-770
  • Technical References
  • Google Groups Announcement

  • Fedora Package Announcement #3OVW5V

  • Fedora Package Announcement #3SZN67

  • Fedora Package Announcement #3WJ4QV

  • Fedora Package Announcement #4BUK2Z

  • Fedora Package Announcement #5RSKA2

  • Fedora Package Announcement #AVZDNSMV

  • Fedora Package Announcement #CHHITS4

  • Fedora Package Announcement #CLB4TW7

  • Fedora Package Announcement #D2BBIDR

  • Fedora Package Announcement #ECRC75B

  • Fedora Package Announcement #FTMJ3NJ

  • Fedora Package Announcement #GSY7SXFF

  • Fedora Package Announcement #HZQIELEI

  • Fedora Package Announcement #IPWCNYB5

  • Fedora Package Announcement #KEOTKBUP

  • Fedora Package Announcement #KSEGD2IW

  • Fedora Package Announcement #L5E5JSJB

  • Fedora Package Announcement #MZQYOOKH

  • Fedora Package Announcement #NG7IMPL5

  • Fedora Package Announcement #ODBY7RVM

  • Fedora Package Announcement #OXGWPQOJ

  • Fedora Package Announcement #PJCUNGIQ

  • Fedora Package Announcement #QF5QSYAO

  • Fedora Package Announcement #QXOU2JZ

  • Fedora Package Announcement #R3UETKPU

  • Fedora Package Announcement #REMHVVIB

  • Fedora Package Announcement #T7N5GV4C

  • Fedora Package Announcement #ULQQONMS

  • Fedora Package Announcement #UTT7DG3Q

  • Fedora Package Announcement #W2LZSWTV

  • Fedora Package Announcement #WCNCBYKZ

  • Fedora Package Announcement #XFOIBB4Y

  • Fedora Package Announcement #XTNLSL44

  • Fedora Package Announcement #YJWHBLVZ

  • Fedora Package Announcement #YRKEXKAN

  • Fedora Package Announcement #ZSVEMQV5

  • Gentoo GLSA 202311-09

  • NetApp Advisory NTAP-20231110-0008
  • Vendor Resources
  • Go.dev Cl #534215

  • Go.dev Cl #534235

  • Go.dev Issue #63417

  • Go.dev vuln GO-2023-2102
  • Related CVEs
  • CVE-2025-47911: Go html.Parse DoS Vulnerability

  • CVE-2025-58190: Golang x/net/html DoS Vulnerability

  • CVE-2025-58187: Golang Go DOS Vulnerability

  • CVE-2025-58188: Golang Go 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