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

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

CVE-2025-69421 is a denial of service vulnerability in OpenSSL's PKCS#12 file processing that causes NULL pointer dereference crashes. This article covers the technical details, affected versions, and mitigation strategies.

Published: January 30, 2026

CVE-2025-69421 Overview

CVE-2025-69421 is a NULL pointer dereference vulnerability in OpenSSL's PKCS#12 file processing functionality. The vulnerability exists in the PKCS12_item_decrypt_d2i_ex() function, which fails to validate whether the oct parameter is NULL before dereferencing it. When processing a malformed PKCS#12 file via PKCS12_unpack_p7encdata(), an attacker can trigger this condition, causing an application crash.

This vulnerability is classified as a Denial of Service (DoS) issue and cannot be escalated to achieve code execution or memory disclosure. Exploitation requires an attacker to provide a specially crafted malformed PKCS#12 file to an application that processes such files.

Critical Impact

Applications processing PKCS#12 files are vulnerable to denial of service attacks through application crashes when handling malformed input files.

Affected Products

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

Discovery Timeline

  • 2026-01-27 - CVE-2025-69421 published to NVD
  • 2026-01-29 - Last updated in NVD database

Technical Details for CVE-2025-69421

Vulnerability Analysis

The vulnerability stems from insufficient input validation in OpenSSL's PKCS#12 processing code. The PKCS12_item_decrypt_d2i_ex() function assumes that the oct parameter will always contain a valid pointer when called. However, when PKCS12_unpack_p7encdata() processes a malformed PKCS#12 file, this parameter can be NULL, leading to a NULL pointer dereference when the function attempts to use this value.

The FIPS modules in OpenSSL versions 3.6, 3.5, 3.4, 3.3, and 3.0 are not affected by this vulnerability because the PKCS#12 implementation exists outside the OpenSSL FIPS module boundary.

Root Cause

The root cause is a missing NULL pointer check (CWE-476) in the PKCS12_item_decrypt_d2i_ex() function. The function does not validate the oct parameter before dereferencing it, creating a condition where malformed input can trigger undefined behavior resulting in application termination.

Attack Vector

An attacker must craft a malformed PKCS#12 file and deliver it to an application that processes PKCS#12 files. The attack is limited to denial of service scenarios as the vulnerability cannot be leveraged for code execution or information disclosure. The malformed file must be specifically constructed to cause the oct parameter to be NULL when PKCS12_unpack_p7encdata() calls the vulnerable function.

The vulnerability can be triggered when applications perform operations such as:

  • Importing certificates from PKCS#12 files
  • Processing encrypted private keys in PKCS#12 format
  • Validating or parsing untrusted PKCS#12 containers

Detection Methods for CVE-2025-69421

Indicators of Compromise

  • Unexpected application crashes during PKCS#12 file processing operations
  • Core dumps or crash reports indicating NULL pointer dereference in OpenSSL library functions
  • Repeated service restarts for applications that handle certificate imports

Detection Strategies

  • Monitor application logs for crashes related to PKCS#12 processing or certificate import operations
  • Implement file validation and scanning for malformed PKCS#12 files before processing
  • Deploy crash monitoring for services that process user-supplied certificate files
  • Review system logs for segmentation faults in processes using OpenSSL

Monitoring Recommendations

  • Enable crash reporting and analysis for applications processing certificate files
  • Monitor for unusual patterns of PKCS#12 file submissions that could indicate exploitation attempts
  • Implement rate limiting on certificate import endpoints to reduce denial of service impact
  • Set up alerts for repeated crashes in certificate processing services

How to Mitigate CVE-2025-69421

Immediate Actions Required

  • Update OpenSSL to the latest patched version for your release branch
  • Review applications that process PKCS#12 files from untrusted sources
  • Implement input validation before passing PKCS#12 files to OpenSSL functions
  • Consider implementing service restart policies to recover from potential crashes

Patch Information

OpenSSL has released security patches addressing this vulnerability across all affected versions. The patches add proper NULL pointer validation in the PKCS12_item_decrypt_d2i_ex() function before dereferencing the oct parameter. For detailed patch information, refer to the OpenSSL Security Advisory.

Multiple commit fixes are available for different OpenSSL versions:

  • Commit 3524a29
  • Commit 36ecb49
  • Commit 4bbc8d4
  • Commit 6439869
  • Commit a2dbc53

Workarounds

  • Validate PKCS#12 files before processing using alternative parsing methods
  • Implement application-level crash recovery and service restart mechanisms
  • Restrict PKCS#12 file processing to trusted sources only where possible
  • Deploy web application firewalls or input validation layers to filter malformed files
bash
# Check OpenSSL version and update
openssl version
# Upgrade to patched version via package manager
# For Debian/Ubuntu:
sudo apt update && sudo apt upgrade openssl
# For RHEL/CentOS:
sudo yum update openssl

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechOpenssl

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.03%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-476
  • Technical References
  • GitHub OpenSSL Commit Update

  • GitHub OpenSSL Commit Update

  • GitHub OpenSSL Commit Update

  • GitHub OpenSSL Commit Update

  • GitHub OpenSSL Commit Update

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

  • CVE-2025-69420: OpenSSL TimeStamp 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