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

CVE-2025-66564: Sigstore Timestamp Authority DoS Vulnerability

CVE-2025-66564 is a denial of service flaw in Sigstore Timestamp Authority caused by excessive memory allocation from malicious requests. This article covers the technical details, affected versions, impact, and mitigation.

Published: April 15, 2026

CVE-2025-66564 Overview

CVE-2025-66564 is a resource exhaustion vulnerability in the Sigstore Timestamp Authority, a service for issuing RFC 3161 timestamps. Prior to version 2.0.3, the api.ParseJSONRequest and api.getContentType functions improperly handle untrusted input data, leading to excessive memory allocations that can result in denial of service conditions.

The vulnerability stems from how the application processes string splitting operations on user-controlled data. When parsing an optionally-provided OID via strings.Split on period characters, or when processing the Content-Type header by splitting on an application string, malicious requests can trigger O(n) memory allocations where n represents the length of the malicious input.

Critical Impact

Attackers can exploit this vulnerability remotely without authentication to cause denial of service through memory exhaustion by sending crafted requests with excessively long OID values or malformed Content-Type headers.

Affected Products

  • Linuxfoundation Sigstore Timestamp Authority versions prior to 2.0.3

Discovery Timeline

  • 2025-12-04 - CVE-2025-66564 published to NVD
  • 2026-03-17 - Last updated in NVD database

Technical Details for CVE-2025-66564

Vulnerability Analysis

This vulnerability is classified under CWE-405 (Asymmetric Resource Consumption), which describes scenarios where an attacker can cause disproportionate resource consumption relative to the effort required to trigger it.

The core issue lies in the unsafe handling of string splitting operations within two critical API functions. The api.ParseJSONRequest function processes an optionally-provided OID field from request payloads. This OID data, which is untrusted user input, is split using Go's strings.Split function with period characters as delimiters. Similarly, the api.getContentType function splits the Content-Type header on an application string.

When an attacker crafts a request containing an excessively long OID with many period characters (e.g., thousands of periods), each split operation creates new string allocations in memory. The memory consumption grows linearly with the input size, making this an effective denial of service vector. The same principle applies to malformed Content-Type headers.

Root Cause

The root cause is improper input validation before performing string splitting operations on untrusted data. The functions do not implement any bounds checking or input length restrictions before calling strings.Split, allowing attackers to trigger unbounded memory allocations proportional to the input size.

Attack Vector

This vulnerability is exploitable over the network without requiring authentication or user interaction. An attacker can send specially crafted HTTP requests to the Timestamp Authority service containing:

  1. An extremely long OID field in the JSON payload with numerous period characters
  2. A malformed Content-Type header designed to maximize string allocations

The attack requires minimal attacker resources but can consume significant server memory, potentially causing service degradation or complete denial of service. Since the Sigstore Timestamp Authority is a critical component in software supply chain security infrastructure, exploitation could disrupt code signing and verification workflows.

Detection Methods for CVE-2025-66564

Indicators of Compromise

  • Unusual spikes in memory consumption on servers running Sigstore Timestamp Authority
  • HTTP requests with abnormally long OID values in JSON payloads
  • Malformed or excessively long Content-Type headers in incoming requests
  • Service crashes or restarts due to out-of-memory conditions

Detection Strategies

  • Monitor HTTP request sizes and reject payloads exceeding reasonable thresholds at the network edge
  • Implement application-level logging to track unusually long OID values or Content-Type headers
  • Configure memory usage alerts for Timestamp Authority service processes
  • Review web server access logs for patterns of requests with oversized headers or payloads

Monitoring Recommendations

  • Set up memory utilization monitoring with alerting thresholds for the Timestamp Authority service
  • Implement request rate limiting to mitigate volumetric attacks
  • Monitor for repeated connection attempts from single sources with malformed requests

How to Mitigate CVE-2025-66564

Immediate Actions Required

  • Upgrade Sigstore Timestamp Authority to version 2.0.3 or later immediately
  • Review network logs for any signs of exploitation attempts
  • Implement request size limits at the load balancer or reverse proxy level
  • Consider temporarily rate limiting requests to the Timestamp Authority service

Patch Information

The vulnerability is fixed in Sigstore Timestamp Authority version 2.0.3. The fix is available in commit 0cae34e197d685a14904e0bad135b89d13b69421. For detailed information about the security fix, refer to the GitHub Security Advisory GHSA-4qg8-fj49-pxjh.

Workarounds

  • Deploy a reverse proxy or WAF in front of the Timestamp Authority service to filter requests with oversized payloads or headers
  • Implement input validation at the network edge to reject OID fields exceeding reasonable length limits
  • Configure memory limits for the container or process running the Timestamp Authority to prevent system-wide impact
  • Consider network segmentation to limit exposure of the Timestamp Authority service to trusted clients only

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechSigstore

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.02%

  • 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-405
  • Vendor Resources
  • GitHub Commit Reference

  • GitHub Security Advisory GHSA-4qg8-fj49-pxjh
  • Related CVEs
  • CVE-2026-39984: Sigstore Timestamp Authority Bypass Flaw

  • CVE-2026-31830: sigstore-ruby Verification Bypass Vulnerability

  • CVE-2026-24137: Sigstore Framework Path Traversal Flaw
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