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

CVE-2025-61723: Golang Go DOS Vulnerability

CVE-2025-61723 is a denial of service flaw in Golang Go caused by non-linear processing time when parsing invalid PEM inputs. This article covers the technical details, affected versions, impact, and mitigation.

Published: April 1, 2026

CVE-2025-61723 Overview

CVE-2025-61723 is a Denial of Service vulnerability affecting Golang Go that stems from non-linear processing time when parsing certain invalid PEM inputs. This algorithmic complexity attack enables remote attackers to cause resource exhaustion by submitting specially crafted PEM data to applications that parse untrusted input.

Critical Impact

Applications parsing untrusted PEM inputs may become unresponsive or crash when processing maliciously crafted data, leading to service disruption.

Affected Products

  • Golang Go (various versions)

Discovery Timeline

  • 2025-10-29 - CVE CVE-2025-61723 published to NVD
  • 2026-01-29 - Last updated in NVD database

Technical Details for CVE-2025-61723

Vulnerability Analysis

This vulnerability falls under CWE-770 (Allocation of Resources Without Limits or Throttling). The core issue lies in how Go's PEM parsing implementation handles certain malformed inputs. When processing invalid PEM data, the parsing algorithm exhibits non-linear time complexity relative to input size. This means that as the size of the malicious input increases, the processing time grows disproportionately, potentially causing extended CPU consumption and service unavailability.

The vulnerability affects any Go application that accepts and parses PEM-encoded data from untrusted sources, such as certificate handling services, TLS termination proxies, or authentication systems that process client certificates.

Root Cause

The root cause is an algorithmic complexity flaw in the PEM parsing logic. When encountering specific patterns of invalid input, the parser enters a processing loop that scales non-linearly with input size. This represents a classic algorithmic complexity attack vector where an attacker can consume disproportionate server resources with relatively small but carefully constructed payloads.

Attack Vector

The vulnerability is exploitable over the network without requiring authentication or user interaction. An attacker can target any network-exposed service that parses PEM data from untrusted sources. The attack works by submitting malformed PEM input that triggers the non-linear parsing behavior.

Attack scenarios include:

  • Sending crafted PEM data to TLS certificate validation endpoints
  • Submitting malicious certificate signing requests (CSRs)
  • Targeting authentication services that parse client-provided certificates
  • Exploiting API endpoints that accept PEM-encoded cryptographic material

Since no exploit code is currently available in public repositories and no proof-of-concept has been published, the specific input patterns required to trigger this behavior are not publicly documented. For technical details, refer to the Go.dev Issue Tracker Report.

Detection Methods for CVE-2025-61723

Indicators of Compromise

  • Abnormally high CPU utilization in Go services that process PEM data
  • Extended request processing times for endpoints accepting PEM input
  • Service timeouts or unresponsiveness when handling certificate-related operations
  • Spike in resource consumption without corresponding increase in legitimate traffic

Detection Strategies

  • Monitor CPU usage patterns on services parsing PEM data for sudden spikes or sustained high utilization
  • Implement application-level logging to track PEM parsing operation durations
  • Deploy anomaly detection for request processing times on certificate handling endpoints
  • Configure alerting for Go runtime metrics indicating processing bottlenecks

Monitoring Recommendations

  • Enable request timeout monitoring for PEM parsing operations
  • Track memory and CPU metrics at the application container or process level
  • Implement distributed tracing to identify slow PEM parsing calls
  • Monitor error rates and timeout frequencies on certificate processing endpoints

How to Mitigate CVE-2025-61723

Immediate Actions Required

  • Update Golang Go to a patched version as indicated in the vendor advisory
  • Implement input size limits on PEM data accepted from untrusted sources
  • Add request timeouts for PEM parsing operations to prevent resource exhaustion
  • Review applications to identify all instances where untrusted PEM data is processed

Patch Information

The Go team has released a fix addressing this algorithmic complexity issue. The patch is available via Go.dev Change Log Entry. Detailed vulnerability information can be found in the Go.dev Vulnerability Report. The Google Groups Announcement provides additional context on affected versions and upgrade guidance.

Workarounds

  • Implement strict input validation and size limits on PEM data before parsing
  • Add processing timeouts to terminate PEM parsing operations that exceed expected duration
  • Deploy rate limiting on endpoints that accept PEM input from untrusted sources
  • Consider using a reverse proxy to filter and validate PEM input before it reaches the Go application
  • Isolate PEM parsing operations in separate goroutines with timeout controls
bash
# Configuration example for input size limits and timeouts
# Add to application configuration or reverse proxy

# Example: Limit PEM input size in nginx proxy
client_max_body_size 64k;

# Example: Set timeout for upstream PEM processing
proxy_read_timeout 30s;
proxy_connect_timeout 10s;

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.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
  • CWE References
  • CWE-770
  • Technical References
  • Go.dev Issue Tracker Report

  • Google Groups Announcement

  • OpenWall OSS Security Mailing
  • Vendor Resources
  • Go.dev Change Log Entry

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