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
    • 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-2023-0217

CVE-2023-0217: OpenSSL DSA Public Key DoS Vulnerability

CVE-2023-0217 is a denial of service vulnerability in OpenSSL triggered by malformed DSA public keys during validation checks. This article covers the technical details, affected versions, impact, and mitigation.

Published: February 11, 2026

CVE-2023-0217 Overview

CVE-2023-0217 is a Null Pointer Dereference vulnerability affecting OpenSSL's EVP_PKEY_public_check() function. An invalid pointer dereference on read can be triggered when an application attempts to validate a malformed DSA public key, most likely resulting in an application crash. This function can be called on public keys supplied from untrusted sources, enabling remote attackers to cause a denial of service attack.

The TLS implementation in OpenSSL does not call this vulnerable function directly. However, applications may invoke EVP_PKEY_public_check() when additional security requirements are imposed by standards such as FIPS 140-3, expanding the potential attack surface for affected deployments.

Critical Impact

Remote attackers can trigger application crashes by supplying malformed DSA public keys to applications using EVP_PKEY_public_check(), causing denial of service conditions.

Affected Products

  • OpenSSL (all vulnerable versions)
  • Applications using EVP_PKEY_public_check() for DSA key validation
  • Systems implementing FIPS 140-3 compliance with OpenSSL

Discovery Timeline

  • 2023-02-07 - OpenSSL Security Advisory published
  • 2023-02-08 - CVE-2023-0217 published to NVD
  • 2025-11-04 - Last updated in NVD database

Technical Details for CVE-2023-0217

Vulnerability Analysis

This vulnerability stems from improper handling of malformed DSA public key data within the EVP_PKEY_public_check() function. When the function processes a specially crafted DSA public key, it fails to properly validate the key structure before dereferencing internal pointers. This leads to an invalid pointer dereference on read, causing memory access violations that result in application termination.

The attack requires no authentication or user interaction, as the vulnerability can be exploited by simply providing a malformed DSA public key to an application that validates keys using the affected function. While the TLS handshake process in OpenSSL does not utilize this specific function, applications enforcing stricter security standards or performing additional key validation are vulnerable.

Root Cause

The root cause is a NULL pointer dereference (CWE-476) occurring when the OpenSSL library attempts to access memory through an invalid pointer during DSA public key validation. The code fails to perform adequate null checks before dereferencing pointers within the DSA key structure, leading to undefined behavior when processing malformed input.

Attack Vector

The attack vector is network-based with low complexity. An attacker can exploit this vulnerability by:

  1. Crafting a malformed DSA public key with specific structural defects
  2. Submitting this key to an application that calls EVP_PKEY_public_check() for validation
  3. Triggering the invalid pointer dereference when the function processes the malicious input
  4. Causing the target application to crash, resulting in denial of service

Applications implementing FIPS 140-3 compliance requirements or custom key validation workflows are particularly susceptible, as they are more likely to invoke the vulnerable function on untrusted key material.

Detection Methods for CVE-2023-0217

Indicators of Compromise

  • Application crashes with segmentation faults during DSA key processing operations
  • Core dumps showing null pointer dereference in OpenSSL's EVP_PKEY_public_check() call stack
  • Unusual volume of DSA key validation requests from external sources
  • Service availability disruptions coinciding with key processing operations

Detection Strategies

  • Monitor application logs for segmentation faults and crash events related to OpenSSL functions
  • Implement input validation and sanitization for all DSA public keys before passing to OpenSSL
  • Deploy application-level monitoring to detect unusual patterns in key validation requests
  • Use memory debugging tools in development environments to identify similar pointer issues

Monitoring Recommendations

  • Configure crash dump collection and analysis for applications using OpenSSL key validation
  • Establish baseline metrics for key validation operations to detect anomalous activity
  • Monitor network traffic for suspicious patterns in key submission attempts
  • Implement alerting for repeated application restarts that may indicate exploitation attempts

How to Mitigate CVE-2023-0217

Immediate Actions Required

  • Update OpenSSL to the latest patched version immediately
  • Identify all applications in your environment that call EVP_PKEY_public_check()
  • Implement rate limiting on endpoints that accept and validate public keys
  • Consider temporarily disabling DSA key validation if not required for operations

Patch Information

OpenSSL has released security updates to address this vulnerability. The fix is available in the OpenSSL Commit Diff (commit 23985bac83fd50c8e29431009302b5442f985096). Organizations should review the OpenSSL Security Advisory 20230207 for version-specific guidance. Additional vendor advisories are available from Gentoo Security Advisory GLSA-202402-08 and SonicWall Vulnerability SNWLID-2023-0003.

Workarounds

  • Avoid calling EVP_PKEY_public_check() on DSA keys from untrusted sources until patched
  • Implement pre-validation checks on key structure before passing to OpenSSL functions
  • Use alternative key validation methods that do not rely on the vulnerable function
  • Deploy web application firewalls or input filtering to reject malformed key submissions
bash
# Configuration example
# Check current OpenSSL version
openssl version -a

# Verify OpenSSL package version on Debian/Ubuntu
dpkg -l | grep openssl

# Verify OpenSSL package version on RHEL/CentOS
rpm -qa | grep openssl

# Update OpenSSL on Debian/Ubuntu
sudo apt-get update && sudo apt-get upgrade openssl

# Update OpenSSL on 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

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.48%

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

  • Gentoo Security Advisory GLSA-202402-08

  • SonicWall Vulnerability SNWLID-2023-0003
  • Vendor Resources
  • OpenSSL Security Advisory 20230207
  • 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-28390: OpenSSL CMS 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