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-2023-2650

CVE-2023-2650: OpenSSL ASN.1 DoS Vulnerability

CVE-2023-2650 is a denial of service vulnerability in OpenSSL affecting ASN.1 object identifier processing. Attackers can exploit slow OBJ_obj2txt() operations to cause delays. This article covers technical details, affected versions, impact, and mitigation.

Published: February 11, 2026

CVE-2023-2650 Overview

CVE-2023-2650 is a Denial of Service vulnerability in OpenSSL that affects the processing of specially crafted ASN.1 object identifiers. Applications that use OBJ_obj2txt() directly or utilize OpenSSL subsystems such as OCSP, PKCS7/SMIME, CMS, CMP/CRMF, or TS without message size limits may experience significant delays when processing malicious messages, leading to service disruption.

The vulnerability stems from the way OpenSSL translates ASN.1 OBJECT IDENTIFIERs from DER encoding form to their canonical numeric text representation. When a sub-identifier within the OBJECT IDENTIFIER is excessively large (tens or hundreds of KiBs), the translation to decimal text exhibits O(n²) time complexity, where 'n' represents the size of the sub-identifiers in bytes.

Critical Impact

Network-accessible applications using affected OpenSSL functions can be forced into extended processing delays, causing Denial of Service conditions that impact availability of TLS services, certificate validation, and cryptographic operations.

Affected Products

  • OpenSSL 3.0.x, 3.1.x (impacts OCSP, PKCS7/SMIME, CMS, CMP/CRMF, TS subsystems)
  • OpenSSL 1.1.1 and 1.0.2 (limited impact on display functions)
  • Debian Linux 10.0 and 11.0

Discovery Timeline

  • May 30, 2023 - CVE-2023-2650 published to NVD
  • March 19, 2025 - Last updated in NVD database

Technical Details for CVE-2023-2650

Vulnerability Analysis

The vulnerability exists in OpenSSL's handling of ASN.1 OBJECT IDENTIFIERs, which are composed of a series of sub-identifiers without inherent size limits. The OBJ_obj2txt() function translates these identifiers from DER encoding to decimal text form. When processing sub-identifiers of absurdly large sizes, the conversion algorithm's quadratic time complexity causes severe performance degradation.

In OpenSSL 3.0 and newer versions, the introduction of string-based cryptographic algorithm fetching expanded the attack surface significantly. OBJECT IDENTIFIERs in canonical numeric text form can be used as identifiers for fetching algorithms through the AlgorithmIdentifier ASN.1 structure, which is ubiquitous in cryptographic protocols for specifying signing, verification, encryption, decryption, and digest algorithms.

The impact varies by OpenSSL version. OpenSSL 3.0+ is affected across multiple subsystems including X.509 certificate processing and signature verification. For TLS connections, the impact is mitigated by the 100KiB limit on peer certificate chains, and primarily affects clients or servers with explicit client authentication enabled. Earlier versions (1.1.1 and 1.0.2) are affected only in display operations and are considered low severity.

Root Cause

The root cause is an inefficient algorithm in the OBJ_obj2txt() function that exhibits O(n²) time complexity when converting large sub-identifiers to decimal text representation. The lack of input validation or size limits on individual sub-identifiers within OBJECT IDENTIFIERs allows attackers to craft malicious inputs that trigger worst-case algorithmic behavior, consuming excessive CPU resources during the conversion process.

Attack Vector

An attacker can exploit this vulnerability by sending specially crafted ASN.1 data containing OBJECT IDENTIFIERs with extremely large sub-identifiers to a vulnerable application. Attack vectors include:

  • Sending malformed X.509 certificates during TLS handshakes
  • Submitting crafted OCSP requests or responses
  • Providing malicious PKCS7/SMIME, CMS, or CMP/CRMF messages
  • Exploiting timestamp (TS) protocol implementations

The attack requires no authentication and can be executed remotely over the network, though user interaction may be required depending on the application context. The vulnerability does not compromise confidentiality or integrity—it specifically targets availability through resource exhaustion.

When processing a malicious OBJECT IDENTIFIER, the OBJ_obj2txt() function enters an extended computation loop. For example, an attacker could embed an oversized sub-identifier within an AlgorithmIdentifier structure in a certificate's signature algorithm field. When the application attempts to validate the certificate or translate the algorithm identifier, the quadratic processing time causes the application to become unresponsive.

Detection Methods for CVE-2023-2650

Indicators of Compromise

  • Abnormally high CPU utilization on systems running OpenSSL-dependent services
  • Extended response times or timeouts when processing TLS connections or certificates
  • Application logs showing delays in certificate validation or cryptographic operations
  • Unusual ASN.1 parsing errors or warnings in OpenSSL diagnostic output

Detection Strategies

  • Monitor system resource utilization for processes handling TLS/SSL connections
  • Implement network-level detection for anomalously large ASN.1 structures in certificate exchanges
  • Deploy application performance monitoring to identify sudden latency spikes in cryptographic operations
  • Review OpenSSL debug logs for extended processing times in OBJ_obj2txt() operations

Monitoring Recommendations

  • Configure alerting for CPU consumption anomalies on web servers, mail servers, and TLS termination points
  • Implement request timeout monitoring for services that process X.509 certificates or PKCS7 messages
  • Track certificate validation duration metrics to establish baselines and detect deviations
  • Monitor connection queue depths for TLS-enabled services to identify potential DoS conditions

How to Mitigate CVE-2023-2650

Immediate Actions Required

  • Update OpenSSL to patched versions: 3.1.1, 3.0.9, or 1.1.1u
  • Review and restrict message size limits for applications using OCSP, PKCS7/SMIME, CMS, CMP/CRMF, or TS subsystems
  • Implement connection timeouts and rate limiting on TLS-enabled services
  • Audit applications for direct calls to OBJ_obj2txt() with untrusted data

Patch Information

OpenSSL has released patches addressing this vulnerability across multiple branches. The fixes implement improved algorithmic efficiency and input validation in the OBJ_obj2txt() function. Refer to the OpenSSL Security Advisory 20230530 for official guidance.

Specific commits addressing this issue:

  • OpenSSL Commit #db779b0
  • OpenSSL Commit #9e20994
  • OpenSSL Commit #423a2bc

Debian users should refer to DSA-5417 and the Debian LTS Announcement for distribution-specific updates.

Workarounds

  • Implement strict message size limits for protocols using affected OpenSSL subsystems
  • Configure application-level timeouts for certificate validation and cryptographic operations
  • Deploy reverse proxy or WAF rules to filter requests containing anomalously large ASN.1 structures
  • For TLS servers, ensure client authentication is disabled if not strictly required
bash
# Verify OpenSSL version and check for vulnerability
openssl version -a

# Recommended: Update to patched version
# For Debian/Ubuntu
sudo apt update && sudo apt upgrade openssl libssl1.1 libssl3

# For RHEL/CentOS
sudo yum update openssl

# Verify updated 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

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability91.97%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-770
  • Technical References
  • Openwall OSS Security Post

  • OpenSSL Commit Diff #853c5e5

  • Debian LTS Announcement

  • SonicWall Vulnerability SNWLID-2023-0009

  • Gentoo GLSA 202402-08

  • NetApp Security Advisory NTAP-20230703-0001

  • NetApp Security Advisory NTAP-20231027-0009

  • Debian Security Advisory DSA-5417
  • Vendor Resources
  • OpenSSL Commit Diff #423a2bc

  • OpenSSL Commit Diff #9e20994

  • OpenSSL Commit Diff #db779b0

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

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

  • CVE-2025-69420: OpenSSL TimeStamp DoS Vulnerability

  • CVE-2025-66199: OpenSSL TLS 1.3 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