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

CVE-2025-61726: Go net/url Package DoS Vulnerability

CVE-2025-61726 is a denial of service flaw in Go's net/url package caused by excessive memory consumption when parsing large forms with many query parameters. This article covers technical details, impact, and mitigation.

Published: January 30, 2026

CVE-2025-61726 Overview

CVE-2025-61726 is a resource exhaustion vulnerability in Go's net/url package that fails to limit the number of query parameters in a URL. While URLs typically have size constraints imposed by request header limits, the net/http.Request.ParseForm method can process large URL-encoded forms without restriction. An attacker can exploit this by submitting forms with many unique query parameters, leading to excessive memory consumption and potential denial of service conditions.

Critical Impact

Applications using Go's standard library for URL parsing and form handling may be vulnerable to memory exhaustion attacks, potentially causing service disruption in production environments.

Affected Products

  • Go standard library net/url package
  • Go standard library net/http package
  • Applications using net/http.Request.ParseForm method

Discovery Timeline

  • 2026-01-28 - CVE CVE-2025-61726 published to NVD
  • 2026-01-29 - Last updated in NVD database

Technical Details for CVE-2025-61726

Vulnerability Analysis

This vulnerability is classified as a resource exhaustion denial of service (DoS) issue. The root cause lies in the absence of limits on the number of query parameters that can be parsed from URL-encoded data. When an application calls ParseForm on a request, the underlying implementation allocates memory for each unique parameter key-value pair without imposing any ceiling on the total count.

The attack is network-accessible and requires no authentication or user interaction, making it relatively straightforward to exploit against vulnerable web services. The primary impact is on service availability, as memory exhaustion can cause application crashes or severe performance degradation.

Root Cause

The net/url package's query parsing logic does not enforce a maximum threshold on the number of discrete query parameters it will process. This design oversight allows unbounded memory allocation when parsing attacker-controlled input. The net/http.Request.ParseForm method inherits this behavior, creating a pathway for exploitation through HTTP request handling.

Attack Vector

An attacker can craft malicious HTTP requests containing URL-encoded form data with thousands or millions of unique query parameters. When the target application processes such a request using ParseForm, each parameter consumes memory for storage. By sending repeated requests or a single large payload, an attacker can exhaust available memory resources.

The vulnerability is exploitable remotely over the network. An attacker would construct a request with a large number of unique key-value pairs in the form body or URL query string, then submit this to any endpoint that parses form data. The Go runtime will attempt to allocate memory for all parameters, potentially leading to memory exhaustion.

For technical implementation details, refer to the Go.dev Code Change Notice and the Go.dev Issue Tracker.

Detection Methods for CVE-2025-61726

Indicators of Compromise

  • Unusual memory consumption spikes in Go applications handling HTTP requests
  • HTTP requests with abnormally large query strings or POST bodies
  • Application crashes or out-of-memory (OOM) errors correlating with incoming requests
  • Slow response times or service degradation during traffic with high parameter counts

Detection Strategies

  • Monitor application memory usage for unexpected growth patterns during request processing
  • Implement request size limits at the reverse proxy or load balancer level
  • Enable application-level logging for requests with high parameter counts
  • Deploy runtime monitoring to detect memory allocation anomalies in Go services

Monitoring Recommendations

  • Set up alerts for memory utilization exceeding baseline thresholds on Go application servers
  • Log and analyze requests with unusually large Content-Length headers
  • Monitor for repeated requests from single sources targeting form-processing endpoints
  • Track garbage collection pressure and heap size in Go application metrics

How to Mitigate CVE-2025-61726

Immediate Actions Required

  • Update Go installations to patched versions that address CVE-2025-61726
  • Implement request body size limits at the web server or reverse proxy level
  • Add application-level validation to limit the number of accepted query parameters
  • Review application code for usage of net/http.Request.ParseForm and similar methods

Patch Information

The Go development team has addressed this vulnerability in updated releases. Refer to the Golang Announcement Group Post for official patch release information. The Go.dev Vulnerability Advisory #GO-2026-4341 provides specific version guidance and remediation instructions.

Organizations should prioritize updating their Go runtime and rebuilding affected applications with the patched version.

Workarounds

  • Configure reverse proxies (nginx, HAProxy) to limit maximum request body and URL sizes
  • Implement custom middleware to count and reject requests exceeding a parameter threshold
  • Use http.MaxBytesReader to limit the size of request bodies before parsing
  • Consider rate limiting on endpoints that process form data to reduce attack impact
bash
# Example nginx configuration to limit request body size
# Add to server or location block
client_max_body_size 1m;
client_body_buffer_size 16k;
large_client_header_buffers 4 8k;

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechNet

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.01%

  • 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
  • Technical References
  • Go.dev Code Change Notice

  • Go.dev Issue Tracker Update

  • Golang Announcement Group Post

  • Go.dev Vulnerability Advisory #GO-2026-4341
  • Latest CVEs
  • CVE-2025-70797: LimeSurvey XSS Vulnerability

  • CVE-2025-30650: Juniper Junos OS Auth Bypass Vulnerability

  • CVE-2026-35471: Goshs Path Traversal Vulnerability

  • CVE-2026-35393: Goshs Path Traversal 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