A Leader in the 2025 Gartner® Magic Quadrant™ for Endpoint Protection Platforms. Five years running.A Leader in the Gartner® Magic Quadrant™Read the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI Security Portfolio
      Leading the Way in AI-Powered Security Solutions
    • 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
      Digital Forensics, IRR & Breach Readiness
    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
    • 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-15467

CVE-2025-15467: OpenSSL CMS Buffer Overflow Vulnerability

CVE-2025-15467 is a stack buffer overflow in OpenSSL's CMS AuthEnvelopedData parsing that can lead to crashes or remote code execution. This article covers technical details, affected versions, impact, and mitigation.

Published: January 30, 2026

CVE-2025-15467 Overview

CVE-2025-15467 is a critical stack buffer overflow vulnerability in OpenSSL affecting the parsing of CMS (Cryptographic Message Syntax) AuthEnvelopedData messages. When processing messages with maliciously crafted AEAD (Authenticated Encryption with Associated Data) parameters, the Initialization Vector (IV) encoded in ASN.1 parameters is copied into a fixed-size stack buffer without proper length validation. This allows an attacker to supply an oversized IV, triggering a stack-based out-of-bounds write that occurs before any authentication or tag verification takes place.

The vulnerability is particularly dangerous because it can be exploited without valid key material—the overflow happens during parsing, prior to cryptographic verification. Applications and services parsing untrusted CMS or PKCS#7 content using AEAD ciphers (such as S/MIME AuthEnvelopedData with AES-GCM) are vulnerable to this attack.

Critical Impact

This stack buffer overflow may lead to denial of service through application crash, or potentially enable remote code execution depending on platform and toolchain mitigations. The pre-authentication nature of the vulnerability significantly increases its severity.

Affected Products

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

Discovery Timeline

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

Technical Details for CVE-2025-15467

Vulnerability Analysis

This vulnerability exists in OpenSSL's CMS implementation when handling AuthEnvelopedData structures that utilize AEAD ciphers such as AES-GCM. The core issue stems from improper handling of the Initialization Vector during ASN.1 parameter parsing. When a CMS message is processed, the IV is extracted from the encoded ASN.1 parameters and copied directly into a fixed-size buffer allocated on the stack.

The critical flaw is the absence of bounds checking—the code does not verify that the IV length conforms to the expected size before performing the copy operation. An attacker can craft a malicious CMS message containing an IV that exceeds the buffer's capacity, resulting in adjacent stack memory being overwritten.

What makes this vulnerability particularly severe is its pre-authentication exploitation window. The buffer overflow occurs during the initial parsing phase, before any cryptographic authentication or tag verification is performed. This means an attacker does not need access to valid encryption keys or authentication material to trigger the vulnerability.

It is important to note that the FIPS modules in versions 3.6, 3.5, 3.4, 3.3, and 3.0 are not affected, as the CMS implementation falls outside the OpenSSL FIPS module boundary. Additionally, OpenSSL versions 1.1.1 and 1.0.2 are not vulnerable to this issue.

Root Cause

The root cause is classified as CWE-787 (Out-of-bounds Write). The vulnerability originates from missing input validation when copying the IV parameter from ASN.1-encoded AEAD cipher parameters into a fixed-size stack buffer. The code assumes the IV will be of a specific expected length but fails to enforce this constraint before the memory copy operation, allowing attacker-controlled data to overflow the buffer boundaries.

Attack Vector

The attack vector is network-based, requiring no authentication or user interaction. An attacker can exploit this vulnerability by sending a specially crafted CMS or PKCS#7 message to any application or service that processes untrusted cryptographic content. Common attack surfaces include:

  • Email servers and clients processing S/MIME encrypted messages
  • Web applications handling CMS-signed or encrypted data
  • Certificate processing systems
  • Any service accepting PKCS#7 or CMS content from untrusted sources

The attacker constructs a malicious CMS AuthEnvelopedData message with an oversized IV in the AEAD parameters. When the target application parses this message using vulnerable OpenSSL versions, the stack buffer overflow is triggered immediately during parsing, potentially allowing the attacker to overwrite return addresses or other critical stack data, depending on exploit sophistication and platform protections.

Detection Methods for CVE-2025-15467

Indicators of Compromise

  • Monitor for unexpected application crashes in services processing CMS/PKCS#7 content, particularly those handling S/MIME messages
  • Look for segmentation faults or access violations in processes linked against vulnerable OpenSSL versions (3.0, 3.3, 3.4, 3.5, 3.6)
  • Examine logs for malformed CMS message handling errors with unusually large IV parameters
  • Check for anomalous network traffic containing oversized ASN.1 structures in encrypted message payloads

Detection Strategies

  • Deploy network intrusion detection signatures to identify CMS messages with abnormally large AEAD IV parameters
  • Implement application-level monitoring to detect parsing failures in CMS/PKCS#7 processing routines
  • Use SentinelOne's behavioral AI to detect exploitation attempts through stack-based buffer overflow patterns
  • Enable crash dump analysis to identify exploitation attempts targeting this vulnerability

Monitoring Recommendations

  • Continuously monitor OpenSSL-dependent services for unexpected terminations or restart patterns
  • Implement file integrity monitoring on OpenSSL library files to verify patched versions are deployed
  • Configure application performance monitoring to alert on CMS parsing anomalies
  • Enable detailed logging for all services processing untrusted cryptographic content

How to Mitigate CVE-2025-15467

Immediate Actions Required

  • Identify all systems running vulnerable OpenSSL versions (3.0, 3.3, 3.4, 3.5, 3.6) and prioritize patching
  • Apply the security patches released by OpenSSL immediately to all affected systems
  • If immediate patching is not possible, consider temporarily disabling or restricting services that process untrusted CMS/PKCS#7 content
  • Review application architecture to identify all OpenSSL dependencies, including those in third-party libraries

Patch Information

OpenSSL has released security patches to address this vulnerability. Multiple commits have been published to remediate the issue across affected branches. Organizations should apply the appropriate patch for their deployed OpenSSL version:

  • OpenSSL Commit 2c8f0e5
  • OpenSSL Commit 5f26d42
  • OpenSSL Commit 6ced0fe
  • OpenSSL Commit ce39170
  • OpenSSL Commit d0071a0

For complete details, refer to the OpenSSL Security Advisory and the Openwall OSS-Security Discussion.

Workarounds

  • Restrict network access to services processing CMS/PKCS#7 content to trusted sources only
  • Implement input validation at the application layer to reject CMS messages with abnormally large IV parameters before passing to OpenSSL
  • Deploy network-level filtering to block malformed CMS messages at the perimeter
  • Consider using OpenSSL 1.1.1 or 1.0.2 for critical systems if upgrading to patched 3.x versions is not immediately feasible (note: evaluate support status)
bash
# Verify OpenSSL version on your system
openssl version -a

# Check for vulnerable versions (3.0, 3.3, 3.4, 3.5, 3.6)
# If vulnerable, update using your package manager:

# Debian/Ubuntu
sudo apt update && sudo apt upgrade openssl libssl-dev

# RHEL/CentOS/Fedora
sudo dnf update openssl openssl-devel

# Verify the update was successful
openssl version -a

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechOpenssl

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.12%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-787
  • 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

  • Openwall OSS-Security Discussion
  • Related CVEs
  • CVE-2025-11187: OpenSSL Buffer Overflow Vulnerability

  • CVE-2025-69419: OpenSSL Buffer Overflow Vulnerability

  • CVE-2022-3786: OpenSSL Buffer Overflow Vulnerability

  • CVE-2022-3602: OpenSSL Buffer Overflow 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
  • English
  • 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