Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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
    • AI 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-2025-61725

CVE-2025-61725: ParseAddress Function DoS Vulnerability

CVE-2025-61725 is a denial-of-service flaw in the ParseAddress function that causes excessive CPU consumption through repeated string concatenation when parsing large domain-literals. This article covers technical details, impact, and mitigation strategies.

Published: March 11, 2026

CVE-2025-61725 Overview

CVE-2025-61725 is a Denial of Service vulnerability affecting the Go programming language's ParseAddress function. The vulnerability exists in how domain-literal address components are constructed through repeated string concatenation. When processing large domain-literal components, this inefficient algorithm can lead to excessive CPU consumption, causing service degradation or complete denial of service for applications that parse email addresses.

Critical Impact

Applications using Go's ParseAddress function to process untrusted email addresses are vulnerable to CPU exhaustion attacks, potentially leading to service unavailability.

Affected Products

  • Go standard library (net/mail package)
  • Applications using Go's ParseAddress function for email address parsing
  • Services that accept and parse user-supplied email addresses

Discovery Timeline

  • 2025-10-29 - CVE CVE-2025-61725 published to NVD
  • 2025-12-09 - Last updated in NVD database

Technical Details for CVE-2025-61725

Vulnerability Analysis

This vulnerability is classified as a CPU Exhaustion denial of service issue. The root cause lies in the algorithmic complexity of the ParseAddress function when handling domain-literal components in email addresses. Domain-literals are the bracketed portions of email addresses that can contain IP addresses or other domain specifications (e.g., user@[192.168.1.1]).

The function uses repeated string concatenation to build these domain-literal components. In Go, strings are immutable, meaning each concatenation operation creates a new string object and copies the existing content. When processing maliciously crafted input with large domain-literal sections, this results in O(n²) time complexity, where n is the size of the input.

An attacker can exploit this by sending specially crafted email addresses with extremely large domain-literal components. The parsing operation will consume excessive CPU cycles, potentially blocking other operations and degrading overall application performance.

Root Cause

The vulnerability stems from inefficient string handling in the ParseAddress function. Rather than using a more efficient method such as strings.Builder or pre-allocated byte slices for constructing domain-literal components, the implementation relies on naive string concatenation. This approach has quadratic time complexity for large inputs, making it susceptible to algorithmic complexity attacks.

Attack Vector

The attack can be executed remotely over the network. An attacker needs to send a specially crafted email address to any application endpoint that parses email addresses using the vulnerable ParseAddress function. This could include:

  • User registration forms
  • Email validation services
  • Mail server components
  • Contact form handlers
  • API endpoints that accept email parameters

The attack requires no authentication or user interaction, making it straightforward to exploit. A single malicious request with an oversized domain-literal component can cause significant CPU consumption, and sustained attacks can lead to complete service denial.

The vulnerability mechanism involves constructing email addresses with abnormally large domain-literal sections that trigger the inefficient string concatenation behavior. For detailed technical information, see the Go Dev Vulnerability Report and the Go Dev Issue Report.

Detection Methods for CVE-2025-61725

Indicators of Compromise

  • Unusually high CPU utilization on application servers without corresponding increase in legitimate traffic
  • Slow response times or timeouts on endpoints that process email addresses
  • Incoming requests containing abnormally long email address strings with large bracketed domain-literal sections
  • Application logs showing parsing operations taking excessive time

Detection Strategies

  • Monitor CPU utilization patterns on systems running Go applications that parse email addresses
  • Implement request logging that captures the size of email address parameters for anomaly detection
  • Set up alerting for parsing operations that exceed expected duration thresholds
  • Review application dependencies to identify usage of the net/mail package's ParseAddress function

Monitoring Recommendations

  • Configure resource monitoring to alert on sustained CPU spikes that correlate with email parsing operations
  • Implement request rate limiting on endpoints that accept email addresses as input
  • Use application performance monitoring (APM) tools to track parsing function execution times
  • Establish baseline metrics for normal email address parsing operations to identify anomalies

How to Mitigate CVE-2025-61725

Immediate Actions Required

  • Identify all Go applications in your environment that use the net/mail package for email address parsing
  • Apply the official patch by updating to a patched version of Go as described in the Go Dev Issue Announcement
  • Implement input validation to reject email addresses exceeding reasonable length limits before parsing
  • Consider adding timeouts around parsing operations to prevent single requests from consuming excessive resources

Patch Information

The Go team has released a fix for this vulnerability. Administrators should update their Go installations to the patched version as soon as possible. Detailed patch information is available in the Go Dev Issue Announcement and the Golang Announce Mailing List.

Workarounds

  • Implement strict input validation that limits the maximum length of email address strings before they reach the ParseAddress function
  • Add timeout mechanisms around email parsing operations to prevent indefinite CPU consumption
  • Use rate limiting on endpoints that accept email addresses to reduce the impact of sustained attacks
  • Consider using alternative email validation approaches that don't rely on the vulnerable function until patching is complete

For applications that cannot be immediately patched, implementing a pre-validation step is recommended:

go
// Pre-validation workaround example
// Limit email address length before parsing
const maxEmailLength = 254 // RFC 5321 maximum

func validateEmailLength(email string) error {
    if len(email) > maxEmailLength {
        return errors.New("email address exceeds maximum length")
    }
    return nil
}

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechN/A

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.03%

  • 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 Issue Announcement

  • Go Dev Issue Report

  • Golang Announce Mailing List

  • Go Dev Vulnerability Report

  • Openwall OSS Security Post
  • Latest CVEs
  • CVE-2025-52793: Esselink.nu Settings CSRF Vulnerability

  • CVE-2025-52772: Virtual Moderator CSRF Vulnerability

  • CVE-2025-48279: WC MyParcel Belgium XSS Vulnerability

  • CVE-2025-39381: KiotViet Sync CSRF 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