A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-2026-42766

CVE-2026-42766: OpenSSL CMS Decryption DoS Vulnerability

CVE-2026-42766 is a denial of service flaw in OpenSSL's CMS password-based decryption that causes NULL pointer dereference and application crashes. This article covers technical details, affected versions, and mitigation.

Published: June 11, 2026

CVE-2026-42766 Overview

CVE-2026-42766 is a NULL pointer dereference vulnerability [CWE-476] in the OpenSSL Cryptographic Message Syntax (CMS) implementation. The flaw resides in the password-based CMS decryption path. The PasswordRecipientInfo.keyDerivationAlgorithm field is marked OPTIONAL in the ASN.1 specification, yet the OpenSSL CMS code dereferences this field without verifying its presence. An attacker who supplies a specially crafted password-encrypted CMS message to an application performing password-based CMS decryption can trigger an application crash, resulting in Denial of Service.

Critical Impact

Remote attackers can crash applications that decrypt password-encrypted CMS messages by supplying input that omits the optional keyDerivationAlgorithm field, leading to Denial of Service.

Affected Products

  • OpenSSL implementations exposing password-based CMS decryption (non-FIPS code paths)
  • Applications processing password-encrypted CMS messages via OpenSSL
  • Note: FIPS modules in OpenSSL 4.0, 3.6, 3.5, 3.4, and 3.0 are not affected, as the vulnerable code lies outside the FIPS module boundary

Discovery Timeline

  • 2026-06-09 - OpenSSL publishes the OpenSSL Security Advisory
  • 2026-06-09 - CVE-2026-42766 published to NVD
  • 2026-06-10 - Last updated in NVD database

Technical Details for CVE-2026-42766

Vulnerability Analysis

The vulnerability sits in OpenSSL's CMS implementation when handling password-encrypted content. CMS supports several recipient information structures, and PasswordRecipientInfo enables encryption of content under a password-derived key. Inside this structure, the keyDerivationAlgorithm field is defined as OPTIONAL in the ASN.1 schema, meaning a valid encoded message may omit it entirely.

The OpenSSL CMS decryption logic assumes this field is always populated. When the routine receives a parsed PasswordRecipientInfo lacking keyDerivationAlgorithm, it accesses the absent field directly. The dereference of the resulting NULL pointer terminates the process. Any application invoking password-based CMS decryption on attacker-controlled input is exposed.

Root Cause

The root cause is a missing presence check before dereferencing an OPTIONAL ASN.1 field [CWE-476]. The CMS decryption path treats PasswordRecipientInfo.keyDerivationAlgorithm as mandatory in code while the specification permits absence, producing a contract mismatch between parser output and consumer expectations.

Attack Vector

Exploitation requires the attacker to supply a crafted CMS blob to a target application that performs password-based CMS decryption. The vector is network-reachable wherever the application accepts CMS messages from untrusted sources, such as email gateways, document processing services, or file ingestion pipelines. No authentication or user interaction is required, but attack complexity is elevated because the attacker must reach a code path that calls password-based CMS decryption with attacker-controlled bytes.

The vulnerability mechanism is described in detail in the OpenSSL Security Advisory and the upstream fixes in GitHub OpenSSL Commit 056d06c1 and GitHub OpenSSL Commit 12bc26ff.

Detection Methods for CVE-2026-42766

Indicators of Compromise

  • Unexpected crashes or segmentation faults in processes linking against OpenSSL while parsing CMS data
  • Repeated termination of services that ingest S/MIME, CMS, or PKCS#7 password-encrypted payloads
  • Core dumps with stack frames inside OpenSSL CMS password-recipient decryption routines

Detection Strategies

  • Inventory binaries linked against vulnerable OpenSSL versions and flag those invoking CMS password-based decryption APIs
  • Inspect ingress channels (mail, file upload, API endpoints) for CMS messages with PasswordRecipientInfo structures missing the keyDerivationAlgorithm field
  • Correlate process crash events with preceding receipt of CMS-formatted input to identify exploitation attempts

Monitoring Recommendations

  • Enable crash reporting and core dump collection on services that perform CMS decryption
  • Monitor for abnormal restart loops on daemons handling encrypted message ingestion
  • Alert on parsing errors and unhandled exceptions emitted by OpenSSL CMS routines in application logs

How to Mitigate CVE-2026-42766

Immediate Actions Required

  • Identify all systems and applications that perform password-based CMS decryption using OpenSSL
  • Apply the official OpenSSL patches referenced in the security advisory as soon as updated packages are available from your distribution
  • Restrict exposure of CMS decryption endpoints to trusted senders until patching is complete

Patch Information

OpenSSL has merged fixes that validate the presence of PasswordRecipientInfo.keyDerivationAlgorithm before dereference. The relevant upstream commits are 056d06c1, 12bc26ff, 3ff64913, ab52d88c, and da26f368. Refer to the OpenSSL Security Advisory for version-specific guidance.

Workarounds

  • Disable password-based CMS decryption where the workflow does not require it, preferring certificate-based recipient info instead
  • Pre-validate inbound CMS messages with a hardened parser that rejects PasswordRecipientInfo structures missing required algorithm identifiers
  • Run CMS-processing services under supervisors that contain crashes and rate-limit restarts to reduce the operational impact of attempted exploitation
bash
# Verify the installed OpenSSL version and check for password-based CMS usage
openssl version -a

# Audit binaries linked against libcrypto for CMS symbol usage
ldd /path/to/application | grep -i crypto
nm -D /path/to/application 2>/dev/null | grep -i 'CMS_decrypt\|PasswordRecipientInfo'

# Update OpenSSL via the system package manager once the vendor ships fixed packages
# Debian/Ubuntu
sudo apt update && sudo apt install --only-upgrade openssl libssl3

# RHEL/Rocky/Alma
sudo dnf update openssl openssl-libs

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechOpenssl

  • SeverityMEDIUM

  • CVSS Score5.9

  • EPSS Probability0.07%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-476
  • Technical References
  • GitHub OpenSSL Commit

  • GitHub OpenSSL Commit

  • GitHub OpenSSL Commit

  • GitHub OpenSSL Commit

  • GitHub OpenSSL Commit

  • OpenSSL Security Advisory
  • Related CVEs
  • CVE-2026-35188: OpenSSL TLS OCSP Stapling DOS Vulnerability

  • CVE-2026-9076: OpenSSL CMS Decryption DoS Vulnerability

  • CVE-2026-42771: OpenSSL Email Validation DoS Vulnerability

  • CVE-2026-42767: OpenSSL CMP Client DoS Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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