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

CVE-2025-47911: Go html.Parse DoS Vulnerability

CVE-2025-47911 is a denial of service vulnerability in golang.org/x/net/html's Parse function caused by quadratic parsing complexity. Attackers can exploit this with crafted HTML to cause DoS. This article covers technical details, affected versions, impact analysis, and mitigation strategies.

Published: February 6, 2026

CVE-2025-47911 Overview

The html.Parse function in golang.org/x/net/html contains a quadratic parsing complexity vulnerability that can be exploited to cause denial of service (DoS). When processing certain specially crafted HTML inputs, the parser exhibits O(n²) time complexity, allowing an attacker to consume excessive CPU resources and potentially render applications unresponsive.

Critical Impact

Applications using the Go HTML parser to process untrusted HTML content are vulnerable to algorithmic complexity attacks that can exhaust server resources and cause service disruptions.

Affected Products

  • golang.org/x/net/html package (Go HTML parsing library)
  • Go applications utilizing the html.Parse function for HTML processing
  • Web services and content processing pipelines handling untrusted HTML input

Discovery Timeline

  • 2026-02-05 - CVE CVE-2025-47911 published to NVD
  • 2026-02-05 - Last updated in NVD database

Technical Details for CVE-2025-47911

Vulnerability Analysis

This vulnerability represents an algorithmic complexity attack affecting the HTML parsing functionality in Go's extended networking library. The html.Parse function, which is widely used for parsing HTML documents in Go applications, exhibits quadratic time complexity (O(n²)) when processing certain malformed or adversarial HTML structures.

The performance degradation becomes particularly severe when parsing HTML with deeply nested or repeated elements that trigger worst-case behavior in the parsing algorithm. An attacker can craft relatively small HTML payloads that require disproportionately large amounts of CPU time to process, effectively creating an asymmetric attack where minimal attacker effort results in significant resource consumption on the target system.

This type of vulnerability is especially dangerous in web applications and API services that accept HTML input from untrusted sources, such as content management systems, HTML sanitizers, email processors, or web scrapers.

Root Cause

The root cause lies in the algorithmic implementation of the HTML parser's handling of certain input patterns. Specific HTML constructs cause the parser to perform nested iterations over the input data, resulting in quadratic time complexity rather than the expected linear time complexity for well-formed input. This inefficient handling of edge cases creates an exploitable condition where carefully constructed input dramatically increases processing time.

Attack Vector

An attacker can exploit this vulnerability by submitting specially crafted HTML content to any application endpoint that processes HTML using the vulnerable golang.org/x/net/html package. The attack requires no authentication and can be performed remotely over the network. The attacker crafts HTML input designed to trigger the worst-case parsing behavior, causing the server to spend excessive CPU cycles processing the malicious payload.

Attack scenarios include:

  • Submitting malicious HTML through form inputs or API endpoints
  • Sending crafted HTML in HTTP request bodies
  • Embedding malicious HTML in data feeds consumed by vulnerable applications
  • Targeting HTML processing pipelines in content aggregation services

The vulnerability mechanism involves quadratic parsing complexity in the html.Parse function. When the parser encounters certain HTML structures, it performs operations that scale with the square of the input size, allowing small payloads to cause significant processing delays. For detailed technical analysis, refer to the Go.dev Vulnerability GO-2026-4440 and the associated GitHub Issue #4440.

Detection Methods for CVE-2025-47911

Indicators of Compromise

  • Unusual spikes in CPU utilization on servers processing HTML content
  • Extended response times or timeouts on HTML processing endpoints
  • Application logs showing prolonged execution in HTML parsing functions
  • Memory and goroutine accumulation in Go applications under load

Detection Strategies

  • Monitor CPU utilization patterns for sustained high usage during HTML processing operations
  • Implement request timeout thresholds for endpoints that parse HTML content
  • Deploy application performance monitoring (APM) to track html.Parse function execution times
  • Analyze incoming request sizes and processing time ratios to identify anomalous patterns

Monitoring Recommendations

  • Configure alerting for CPU usage exceeding normal thresholds on HTML processing services
  • Track and baseline typical HTML parsing duration to identify deviations
  • Implement logging for HTML input sizes and corresponding processing times
  • Monitor for repeated requests from single sources containing HTML payloads

How to Mitigate CVE-2025-47911

Immediate Actions Required

  • Identify all applications using golang.org/x/net/html for HTML parsing
  • Update to the patched version of the golang.org/x/net package as referenced in Go.dev Code Review #709876
  • Implement input size limits on endpoints accepting HTML content
  • Add processing timeouts to prevent extended resource consumption

Patch Information

The Go security team has addressed this vulnerability in an updated release of the golang.org/x/net package. Organizations should update their dependencies to incorporate the fix. Review the Google Group Announcement for official patch guidance and version information.

To update the affected package, run:

bash
go get -u golang.org/x/net/html

Workarounds

  • Implement strict input size limits on HTML content before parsing
  • Add context-based timeouts around html.Parse calls to prevent indefinite processing
  • Consider pre-processing or validating HTML structure before full parsing
  • Deploy rate limiting on endpoints that accept HTML input from untrusted sources
bash
# Configuration example for implementing timeouts in Go applications
# Add context with timeout before HTML parsing operations
# Example: ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
# Ensure proper input size validation before passing to html.Parse
# Set maximum request body size in HTTP server configuration

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechGolang

  • SeverityNONE

  • CVSS ScoreN/A

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • GitHub Issue #4440

  • Go.dev Code Review #709876

  • Google Group Announcement

  • Go.dev Vulnerability GO-2026-4440
  • Related CVEs
  • CVE-2025-58190: Golang x/net/html DoS Vulnerability

  • CVE-2025-58187: Golang Go DOS Vulnerability

  • CVE-2025-58188: Golang Go DOS Vulnerability

  • CVE-2025-61723: Golang Go DOS Vulnerability
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