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
    • 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-2023-39326

CVE-2023-39326: Golang Go DoS Vulnerability

CVE-2023-39326 is a denial of service vulnerability in Golang Go where malicious HTTP senders can exploit chunk extensions to force receivers to read excessive data from the network. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: February 11, 2026

CVE-2023-39326 Overview

A vulnerability exists in Go's net/http package that allows a malicious HTTP sender to exploit chunk extensions in the chunked transfer encoding to cause receivers to read significantly more bytes from the network than are present in the actual body content. This can lead to resource exhaustion scenarios where servers automatically read up to approximately 1GiB of data when handlers fail to read the entire body of a request.

Critical Impact

Malicious HTTP clients can exploit this vulnerability to force servers into reading excessive amounts of data, potentially causing denial of service through resource exhaustion.

Affected Products

  • Golang Go (versions prior to patched releases)

Discovery Timeline

  • 2023-12-06 - CVE-2023-39326 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2023-39326

Vulnerability Analysis

This vulnerability exploits a feature of HTTP's chunked transfer encoding called chunk extensions. Chunk extensions are a little-used HTTP feature that permit including additional metadata in a request or response body sent using the chunked encoding format. Under normal circumstances, the net/http chunked encoding reader discards this metadata without issue.

The vulnerability arises because a malicious sender can insert large metadata segments with each byte of actual data transferred. Since the chunk reader discards this metadata but still processes it from the network, there is a significant disparity between the bytes read from the network and the actual body content delivered to the application. This amplification effect can force a server to consume substantial network bandwidth and memory resources.

The attack is particularly effective when HTTP handlers fail to read the entire body of a request, as the server will automatically attempt to drain the remaining body content, potentially reading up to 1GiB of crafted malicious data.

Root Cause

The root cause lies in the net/http chunked encoding reader's handling of chunk extensions. The implementation did not enforce any ratio limit between the encoded bytes (including chunk extensions) and the actual body content. This allowed attackers to craft requests where the vast majority of transmitted data consisted of discardable chunk extension metadata rather than actual body content, leading to resource amplification attacks.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker constructs malicious HTTP requests or responses using chunked transfer encoding with excessively large chunk extensions attached to each data chunk. When the target server processes these requests, it must read all the network data even though most of it is discarded metadata.

The attack flow involves:

  1. Attacker sends HTTP request/response with chunked encoding
  2. Each chunk contains minimal actual data but massive chunk extension metadata
  3. Server's net/http reader processes entire stream from network
  4. Metadata is discarded but network/memory resources are consumed
  5. If handler doesn't fully read body, server attempts to drain remaining content automatically

Detection Methods for CVE-2023-39326

Indicators of Compromise

  • Unusual network bandwidth consumption on HTTP endpoints without corresponding application data processing
  • High memory usage in Go applications handling HTTP requests
  • Slow HTTP request processing times with minimal actual data transfer
  • Chunked transfer encoded requests with abnormally large chunk sizes relative to actual content

Detection Strategies

  • Monitor for HTTP requests using chunked transfer encoding with disproportionate network traffic to body content ratios
  • Implement network traffic analysis to detect requests with excessive chunk extension metadata
  • Set up application performance monitoring to detect unusual resource consumption patterns in Go HTTP handlers
  • Review HTTP access logs for requests with abnormally long processing times relative to content length

Monitoring Recommendations

  • Deploy network-level monitoring for chunked transfer encoding abuse patterns
  • Configure resource usage alerts for Go applications serving HTTP traffic
  • Implement request timeout thresholds to limit exposure to slow-drip attacks
  • Monitor connection duration and bytes transferred metrics per request

How to Mitigate CVE-2023-39326

Immediate Actions Required

  • Update Go installations to patched versions that include the fix from Go CL #547335
  • Rebuild and redeploy all Go applications using the updated runtime
  • Review HTTP handler implementations to ensure they properly read or explicitly discard request bodies
  • Consider implementing request body size limits at the reverse proxy or load balancer level

Patch Information

The Go development team has addressed this vulnerability by modifying the chunk reader to produce an error when the ratio of real body content to encoded bytes becomes too small. This prevents attackers from exploiting the amplification effect.

For detailed patch information, refer to:

  • Go.dev CL #547335 - The code change addressing this vulnerability
  • Go.dev Issue #64433 - Original issue tracking
  • Go.dev Vulnerability Advisory - Official vulnerability advisory

Linux distribution users should check for updates:

  • Fedora Package Announcement

Workarounds

  • Implement request body size limits at the reverse proxy or load balancer level to restrict maximum request sizes
  • Configure HTTP handlers to explicitly read and discard request bodies rather than relying on automatic draining
  • Deploy web application firewalls (WAF) with rules to detect and block requests with suspicious chunked encoding patterns
  • Set aggressive timeouts for HTTP request processing to limit resource exhaustion window
bash
# Example: Configure nginx as reverse proxy with body size limits
# Add to nginx.conf or server block
client_max_body_size 10m;
client_body_timeout 30s;
proxy_read_timeout 60s;

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechGolang

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • NVD-CWE-noinfo
  • Technical References
  • Fedora Package Announcement
  • Vendor Resources
  • Go.dev CL #547335

  • Go.dev Issue #64433

  • Google Groups Discussion

  • Go.dev Vulnerability Advisory
  • 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