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-2026-28390

CVE-2026-28390: OpenSSL CMS DoS Vulnerability

CVE-2026-28390 is a denial of service flaw in OpenSSL CMS EnvelopedData processing that causes NULL pointer dereference. This post explains its impact, affected versions, and mitigation steps.

Published: April 10, 2026

CVE-2026-28390 Overview

CVE-2026-28390 is a Null Pointer Dereference vulnerability in OpenSSL's CMS (Cryptographic Message Syntax) processing functionality. During processing of a crafted CMS EnvelopedData message with KeyTransportRecipientInfo, a NULL pointer dereference can occur when the optional parameters field of the RSA-OAEP SourceFunc algorithm identifier is missing.

Applications that process attacker-controlled CMS data may crash before authentication or cryptographic operations occur, resulting in a Denial of Service condition. This vulnerability specifically affects applications and services that call CMS_decrypt() on untrusted input, such as S/MIME email processing or CMS-based protocols.

Critical Impact

Applications processing untrusted CMS EnvelopedData messages with RSA-OAEP encryption are vulnerable to crash-based denial of service attacks without requiring authentication.

Affected Products

  • OpenSSL (versions prior to security patches)
  • Applications using CMS_decrypt() on untrusted input
  • S/MIME processing services and CMS-based protocol implementations

Discovery Timeline

  • April 7, 2026 - CVE-2026-28390 published to NVD
  • April 8, 2026 - Last updated in NVD database

Technical Details for CVE-2026-28390

Vulnerability Analysis

This vulnerability exists in OpenSSL's CMS decryption functionality within the rsa_cms_decrypt function located in crypto/cms/cms_rsa.c. When processing a CMS EnvelopedData message that uses KeyTransportRecipientInfo with RSA-OAEP encryption, the code examines the optional parameters field of the RSA-OAEP SourceFunc algorithm identifier without first verifying that the field is present.

The root cause is a missing NULL check before accessing the parameters field. When an attacker crafts a malicious CMS message where this optional field is deliberately omitted, the code attempts to dereference a NULL pointer, causing the application to crash. This crash occurs before any authentication or cryptographic validation takes place, making it trivially exploitable by any attacker who can supply CMS data to a vulnerable application.

The FIPS modules in OpenSSL versions 3.6, 3.5, 3.4, 3.3, and 3.0 are not affected by this issue, as the vulnerable code is outside the OpenSSL FIPS module boundary.

Root Cause

The vulnerability stems from CWE-476 (NULL Pointer Dereference). The rsa_cms_decrypt function in crypto/cms/cms_rsa.c fails to validate that the optional RSA-OAEP parameters field exists before attempting to access it. When processing KeyTransportRecipientInfo structures, the code assumes the presence of algorithm parameters that are actually optional according to the CMS specification.

Attack Vector

An attacker can exploit this vulnerability by sending a specially crafted CMS EnvelopedData message to any application that processes untrusted CMS data. Attack scenarios include:

  • Sending malicious S/MIME encrypted emails to mail servers or clients that perform decryption
  • Submitting crafted CMS data to web services that process encrypted payloads
  • Exploiting CMS-based authentication or key exchange protocols

The attack requires no authentication and can be performed remotely by any attacker capable of delivering CMS data to the target application.

c
// Security patch in crypto/cms/cms_rsa.c - Fix NULL deref in rsa_cms_decrypt
     X509_ALGOR *cmsalg;
     int nid;
     int rv = -1;
-    unsigned char *label = NULL;
+    const unsigned char *label = NULL;
     int labellen = 0;
     const EVP_MD *mgf1md = NULL, *md = NULL;
     RSA_OAEP_PARAMS *oaep;
+    const ASN1_OBJECT *aoid;
+    const void *parameter = NULL;
+    int ptype = 0;
 
     pkctx = CMS_RecipientInfo_get0_pkey_ctx(ri);
     if (pkctx == NULL)

Source: GitHub OpenSSL Commit #01194a8

Detection Methods for CVE-2026-28390

Indicators of Compromise

  • Unexpected application crashes in processes handling CMS or S/MIME data
  • Core dumps or crash logs showing NULL pointer dereference in rsa_cms_decrypt or related CMS functions
  • Repeated service restarts for mail servers or CMS-processing applications
  • Segmentation faults occurring during CMS decryption operations

Detection Strategies

  • Monitor application logs for segmentation faults or NULL pointer exceptions in OpenSSL CMS processing functions
  • Implement crash monitoring for services that handle S/MIME or CMS-encrypted data
  • Deploy network intrusion detection rules to identify malformed CMS EnvelopedData structures with missing RSA-OAEP parameters
  • Use application performance monitoring to detect abnormal crash rates in CMS-processing services

Monitoring Recommendations

  • Enable core dump collection and analysis for applications using OpenSSL CMS functions
  • Configure alerting on repeated crashes of S/MIME or CMS-processing services
  • Monitor OpenSSL version inventory across infrastructure to identify unpatched systems
  • Implement log aggregation to correlate crash events with incoming CMS data sources

How to Mitigate CVE-2026-28390

Immediate Actions Required

  • Upgrade OpenSSL to the latest patched version addressing CVE-2026-28390
  • Identify all applications and services using CMS_decrypt() on untrusted input
  • Prioritize patching for internet-facing S/MIME gateways and CMS-processing services
  • Review application architecture to limit exposure of CMS decryption functions to untrusted input

Patch Information

OpenSSL has released security patches to address this vulnerability. Multiple commits have been made across different OpenSSL branches to fix the NULL pointer dereference in rsa_cms_decrypt:

  • GitHub OpenSSL Commit #01194a8
  • GitHub OpenSSL Commit #2e39b7a
  • GitHub OpenSSL Commit #af2a5fe
  • GitHub OpenSSL Commit #ea7b4ea
  • GitHub OpenSSL Commit #fd2f1a6

For complete details, refer to the OpenSSL Security Advisory April 2026.

Workarounds

  • Implement input validation to reject CMS EnvelopedData messages with missing RSA-OAEP parameters before passing to CMS_decrypt()
  • Deploy application-level rate limiting to mitigate denial of service impact
  • Consider using FIPS-validated OpenSSL modules (3.0, 3.3, 3.4, 3.5, 3.6) which are not affected by this vulnerability
  • Isolate CMS processing into sandboxed environments to limit crash impact on critical services
bash
# Check OpenSSL version to verify patch status
openssl version -a

# Verify if your application uses CMS functions
ldd /path/to/application | grep ssl
nm /path/to/application | grep -i cms_decrypt

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 #01194a8

  • GitHub OpenSSL Commit #2e39b7a

  • GitHub OpenSSL Commit #af2a5fe

  • GitHub OpenSSL Commit #ea7b4ea

  • GitHub OpenSSL Commit #fd2f1a6

  • OpenSSL Security Advisory April 2026
  • Related CVEs
  • CVE-2026-28389: OpenSSL CMS DoS Vulnerability

  • CVE-2026-28388: OpenSSL Delta CRL DoS Vulnerability

  • CVE-2026-28386: OpenSSL AES-CFB128 DoS Vulnerability

  • CVE-2026-22795: OpenSSL PKCS#12 Parsing DoS Vulnerability
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