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

CVE-2023-0466: OpenSSL Policy Check Bypass Vulnerability

CVE-2023-0466 is a certificate policy check bypass in OpenSSL that allows invalid certificates to pass verification. This article covers the technical details, affected versions, security impact, and mitigation.

Updated: May 15, 2026

CVE-2023-0466 Overview

CVE-2023-0466 is a certificate validation flaw in OpenSSL affecting the X509_VERIFY_PARAM_add0_policy() function. The function's documentation states that calling it implicitly enables the certificate policy check during X.509 certificate verification. The implementation does not enable the check, allowing certificates with invalid or incorrect policies to pass verification. Applications relying on the documented behavior receive a false assurance that policy validation is occurring. The issue is classified under CWE-295: Improper Certificate Validation.

Critical Impact

Applications that depend on X509_VERIFY_PARAM_add0_policy() to enforce certificate policy constraints accept certificates with invalid policies, weakening trust decisions during TLS and PKI operations.

Affected Products

  • OpenSSL 3.0.0 through 3.0.8
  • OpenSSL 1.1.1 through 1.1.1t
  • OpenSSL 1.0.2 through 1.0.2zg (premium support customers)

Discovery Timeline

  • 2023-03-28 - CVE-2023-0466 published to NVD and disclosed in OpenSSL Security Advisory
  • 2025-02-19 - Last updated in NVD database

Technical Details for CVE-2023-0466

Vulnerability Analysis

The vulnerability is a mismatch between documented API behavior and actual implementation in OpenSSL's certificate verification logic. The X509_VERIFY_PARAM_add0_policy() function adds a policy OID to the verification parameters. Its documentation indicates this call should implicitly set the X509_V_FLAG_POLICY_CHECK flag so that the policy check runs during chain validation. The implementation only adds the policy to the internal list without enabling the flag.

Developers reading the documentation assume that policy enforcement is active after calling the function. In practice, certificates that fail the policy constraint are accepted as valid. The OpenSSL project decided not to change the runtime behavior because suddenly enabling the check would break deployments that depend on the existing leniency. The fix is documentation-only, and applications must explicitly enable enforcement.

Root Cause

The root cause is an inconsistency between the function's manual page and its implementation. Certificate policy checks are disabled by default in OpenSSL and are not commonly used by applications. The function was expected to be the activation point for policy checking but only mutates the policy list, leaving the X509_V_FLAG_POLICY_CHECK verification flag unset.

Attack Vector

An attacker presenting a certificate with invalid or unauthorized policy OIDs can pass verification on a system that relies on X509_VERIFY_PARAM_add0_policy() for policy enforcement. The attack vector is network-based, requires no authentication, and targets trust decisions in TLS clients, code signing verifiers, or other PKI-dependent applications that enforce policy constraints. Real-world impact depends on whether the application uses policy validation as a security boundary.

No public proof-of-concept exploit is available, and CISA has not added this CVE to the Known Exploited Vulnerabilities catalog. The vulnerability mechanism is described in the OpenSSL Security Advisory dated 28 March 2023. Patch commits are available at OpenSSL commit 0d16b7e9, commit 51e8a84c, and commit fc814a30.

Detection Methods for CVE-2023-0466

Indicators of Compromise

  • Successful TLS handshakes or certificate validations using certificates whose policy OIDs do not match the application's intended policy set.
  • Application logs showing acceptance of certificates that should fail policy constraint validation under documented behavior.

Detection Strategies

  • Inventory deployed OpenSSL versions across hosts and containers, flagging versions prior to OpenSSL 1.1.1t and 3.0.8.
  • Review application source code for calls to X509_VERIFY_PARAM_add0_policy() that are not paired with X509_VERIFY_PARAM_set_flags() setting X509_V_FLAG_POLICY_CHECK.
  • Use software composition analysis tooling to identify vendored or statically linked OpenSSL libraries embedded in third-party software.

Monitoring Recommendations

  • Monitor PKI and TLS termination points for unexpected certificate policy OIDs in client or server certificates presented during sessions.
  • Track certificate verification telemetry from applications that perform policy-based authorization decisions and alert on anomalous policy values.
  • Capture and review OpenSSL build and version metadata as part of regular vulnerability management scans.

How to Mitigate CVE-2023-0466

Immediate Actions Required

  • Upgrade OpenSSL to a fixed release: 1.1.1t or later for the 1.1.1 branch and 3.0.8 or later for the 3.0 branch, where available from your distribution.
  • Audit application code that calls X509_VERIFY_PARAM_add0_policy() and add an explicit call to X509_VERIFY_PARAM_set_flags() with X509_V_FLAG_POLICY_CHECK, or use X509_VERIFY_PARAM_set1_policies().
  • Apply distribution security updates from the Debian Security Advisory DSA-5417, Debian LTS Announcement, and Gentoo GLSA 202402-08.
  • Review vendor advisories for embedded OpenSSL, including the NetApp Security Advisory.

Patch Information

The OpenSSL project addressed CVE-2023-0466 through documentation updates and committed fixes referenced in commit 0d16b7e9, commit 51e8a84c, and commit fc814a30. Because the project chose not to alter runtime behavior to preserve compatibility, application developers are responsible for explicitly enabling policy validation. Full details are documented in the OpenSSL Security Advisory of 28 March 2023.

Workarounds

  • Replace calls to X509_VERIFY_PARAM_add0_policy() with X509_VERIFY_PARAM_set1_policies() when policy enforcement is required.
  • Where source modifications are not possible, explicitly call X509_VERIFY_PARAM_set_flags(param, X509_V_FLAG_POLICY_CHECK) after adding policies.
  • Restrict trust stores to issuing certificate authorities whose issuance practices already constrain policy OIDs, reducing reliance on runtime policy enforcement.
bash
# Verify installed OpenSSL version
openssl version -a

# Debian/Ubuntu: apply distribution updates
sudo apt update && sudo apt install --only-upgrade openssl libssl1.1 libssl3

# 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
  • TypeInformation Disclosure

  • Vendor/TechOpenssl

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.83%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-295
  • Technical References
  • Openwall OSS-Security Update

  • OpenSSL Commit Diff

  • Debian LTS Announcement

  • Gentoo GLSA Advisory

  • NetApp Security Advisory

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

  • OpenSSL Commit Diff

  • OpenSSL Commit Diff

  • OpenSSL Security Advisory
  • Related CVEs
  • CVE-2026-8721: Perl PKCS12 Password Truncation Vulnerability

  • CVE-2024-13176: ECDSA Timing Side-Channel Vulnerability

  • CVE-2026-31790: OpenSSL Information Disclosure Flaw

  • CVE-2026-2673: OpenSSL TLS 1.3 Key Exchange 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