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

CVE-2025-69420: OpenSSL TimeStamp DoS Vulnerability

CVE-2025-69420 is a type confusion denial of service vulnerability in OpenSSL's TimeStamp Response verification that causes NULL pointer dereference. This article covers the technical details, affected versions, and mitigation.

Published: January 30, 2026

CVE-2025-69420 Overview

A type confusion vulnerability has been identified in OpenSSL's TimeStamp Response verification code. The vulnerability occurs when an ASN1_TYPE union member is accessed without first validating its type, causing an invalid or NULL pointer dereference when processing a malformed TimeStamp Response file. An application calling TS_RESP_verify_response() with a malicious TimeStamp Response can be caused to dereference an invalid or NULL pointer, resulting in a Denial of Service condition.

The vulnerable functions ossl_ess_get_signing_cert() and ossl_ess_get_signing_cert_v2() access the signing certificate attribute value without validating its type. When the type is not V_ASN1_SEQUENCE, this results in accessing invalid memory through the ASN1_TYPE union, causing a crash.

Critical Impact

Applications using OpenSSL's TimeStamp Response verification are vulnerable to Denial of Service attacks when processing malformed TimeStamp Response files. Attackers can crash vulnerable applications by providing crafted timestamp responses.

Affected Products

  • OpenSSL 3.6
  • OpenSSL 3.5
  • OpenSSL 3.4
  • OpenSSL 3.3
  • OpenSSL 3.0
  • OpenSSL 1.1.1

Discovery Timeline

  • 2026-01-27 - CVE CVE-2025-69420 published to NVD
  • 2026-01-27 - OpenSSL releases security patches
  • 2026-01-29 - Last updated in NVD database

Technical Details for CVE-2025-69420

Vulnerability Analysis

This vulnerability is classified as Type Confusion (CWE-754: Improper Check for Unusual or Exceptional Conditions). The root issue lies in the TimeStamp Response verification code path where the signing certificate attribute is retrieved and processed without proper type validation.

When an application calls TS_RESP_verify_response() to verify a TimeStamp Response, the code internally invokes ossl_ess_get_signing_cert() or ossl_ess_get_signing_cert_v2() to extract the signing certificate from the response. These functions use PKCS7_get_signed_attribute() to retrieve the signing certificate attribute, but only check if the attribute is NULL—they fail to verify that the attribute's type field is V_ASN1_SEQUENCE before accessing the union's sequence member.

Exploiting this vulnerability requires an attacker to provide a malformed TimeStamp Response to an application that verifies timestamp responses. While the TimeStamp protocol (RFC 3161) is not widely deployed, applications that do implement timestamp verification are vulnerable to crash-based Denial of Service attacks.

The FIPS modules in versions 3.5, 3.4, 3.3, and 3.0 are not affected by this issue, as the TimeStamp Response implementation is outside the OpenSSL FIPS module boundary. OpenSSL 1.0.2 is also not affected.

Root Cause

The root cause is insufficient type validation in the ossl_ess_get_signing_cert() and ossl_ess_get_signing_cert_v2() functions within crypto/ts/ts_rsp_verify.c. These functions access the attr->value.sequence member of an ASN1_TYPE union without first checking that attr->type == V_ASN1_SEQUENCE. When the actual type differs from the expected sequence type, the code accesses memory through an incorrect union member, leading to invalid memory access or NULL pointer dereference.

Attack Vector

The attack vector is network-based, requiring no privileges or user interaction. An attacker must deliver a malformed TimeStamp Response to a vulnerable application that processes timestamp responses. This could occur in scenarios where:

  1. An application requests timestamps from an attacker-controlled or compromised timestamp authority
  2. A man-in-the-middle intercepts and modifies legitimate timestamp responses
  3. Malicious timestamp response files are processed from untrusted sources

The following patch demonstrates the fix applied to validate the attribute type before accessing the union member:

c
     const unsigned char *p;
 
     attr = PKCS7_get_signed_attribute(si, NID_id_smime_aa_signingCertificate);
-    if (attr == NULL)
+    if (attr == NULL || attr->type != V_ASN1_SEQUENCE)
         return NULL;
     p = attr->value.sequence->data;
     return d2i_ESS_SIGNING_CERT(NULL, &p, attr->value.sequence->length);

Source: GitHub OpenSSL Commit 27c7012

Detection Methods for CVE-2025-69420

Indicators of Compromise

  • Unexpected application crashes or segmentation faults in processes using OpenSSL timestamp verification
  • Core dumps showing crash locations in ossl_ess_get_signing_cert() or ossl_ess_get_signing_cert_v2() functions
  • Log entries indicating timestamp verification failures preceding application termination
  • Presence of malformed TimeStamp Response files with incorrect ASN.1 type encodings

Detection Strategies

  • Monitor applications using OpenSSL for unexpected terminations, particularly those processing timestamp responses
  • Implement application-level logging around TS_RESP_verify_response() calls to detect malformed input
  • Deploy network monitoring to detect anomalous timestamp response traffic patterns
  • Use crash analysis tools to identify signature patterns consistent with this vulnerability

Monitoring Recommendations

  • Enable crash reporting and core dump collection for applications using OpenSSL timestamp verification
  • Monitor system logs for repeated crashes in timestamp-related services
  • Implement file integrity monitoring on timestamp response storage locations
  • Track OpenSSL library versions across the environment to identify vulnerable deployments

How to Mitigate CVE-2025-69420

Immediate Actions Required

  • Inventory all systems and applications using OpenSSL versions 1.1.1, 3.0, 3.3, 3.4, 3.5, or 3.6
  • Prioritize patching applications that actively use TimeStamp Response verification functionality
  • Apply the vendor-provided security patches immediately
  • Review application logs for evidence of exploitation attempts

Patch Information

OpenSSL has released security patches addressing this vulnerability across all affected version branches. Multiple commits have been published to fix the type confusion issue:

  • GitHub OpenSSL Commit 27c7012
  • GitHub OpenSSL Commit 4e254b4
  • GitHub OpenSSL Commit 564fd9c
  • GitHub OpenSSL Commit 5eb0770
  • GitHub OpenSSL Commit a99349e

For detailed patch information, refer to the OpenSSL Security Advisory 20260127.

Workarounds

  • If timestamp verification is not required, disable or remove timestamp processing functionality from applications
  • Implement input validation on timestamp responses before passing to OpenSSL verification functions
  • Deploy application-level exception handling to gracefully handle crashes in timestamp verification code paths
  • Consider upgrading to OpenSSL 1.0.2 if feasible, as this version is not affected by the vulnerability
bash
# Check OpenSSL version to determine if patching is required
openssl version -a

# Verify timestamp verification is in use (check for TS_RESP_verify_response usage)
strings /path/to/application | grep -i "ts_resp\|timestamp"

# After patching, verify the new OpenSSL version
openssl version

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechOpenssl

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.07%

  • 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-754
  • Technical References
  • GitHub OpenSSL Commit 27c7012

  • GitHub OpenSSL Commit 4e254b4

  • GitHub OpenSSL Commit 564fd9c

  • GitHub OpenSSL Commit 5eb0770

  • GitHub OpenSSL Commit a99349e

  • OpenSSL Security Advisory 20260127
  • Related CVEs
  • CVE-2026-22795: OpenSSL PKCS#12 Parsing DoS Vulnerability

  • CVE-2025-69421: OpenSSL PKCS#12 DoS Vulnerability

  • CVE-2025-66199: OpenSSL TLS 1.3 DoS Vulnerability

  • CVE-2026-22796: OpenSSL PKCS#7 Signature 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