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
    • 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 Certificate Policy Bypass Issue

CVE-2023-0466 is a certificate policy verification flaw in OpenSSL that allows certificates with invalid policies to pass verification. This article covers the technical details, affected systems, and mitigation.

Published: February 11, 2026

CVE-2023-0466 Overview

CVE-2023-0466 is a Certificate Validation Bypass vulnerability in OpenSSL affecting the X509_VERIFY_PARAM_add0_policy() function. The function is documented to implicitly enable certificate policy checking during certificate verification, however, the actual implementation fails to enable this check. This discrepancy allows certificates with invalid or incorrect policies to pass certificate verification, potentially undermining the security of applications that rely on policy-based certificate validation.

Critical Impact

Applications using X509_VERIFY_PARAM_add0_policy() expecting automatic policy enforcement may accept certificates with invalid or incorrect policies, potentially allowing unauthorized access or man-in-the-middle attacks in environments requiring strict certificate policy compliance.

Affected Products

  • OpenSSL (multiple versions)
  • Systems and applications using affected OpenSSL versions for certificate verification
  • Linux distributions including Debian and Gentoo with vulnerable OpenSSL packages

Discovery Timeline

  • 2023-03-28 - CVE-2023-0466 published to NVD
  • 2025-02-19 - Last updated in NVD database

Technical Details for CVE-2023-0466

Vulnerability Analysis

The vulnerability stems from an implementation defect in OpenSSL's certificate verification subsystem. The X509_VERIFY_PARAM_add0_policy() function is expected to automatically enable certificate policy checking when policies are added to the verification parameters. However, the implementation does not set the X509_V_FLAG_POLICY_CHECK flag, which is required to activate policy validation during the certificate verification process.

This creates a situation where developers following the documented API behavior would expect policy checking to occur, but in practice, no policy validation takes place. Certificates with policies that don't match the expected criteria, or certificates with entirely invalid policies, would still pass verification. The OpenSSL project deliberately chose not to fix this behavior to avoid breaking existing deployments, instead documenting alternative approaches.

Certificate policy checks are disabled by default in OpenSSL and are not commonly used by applications, which limits the overall impact. However, organizations with strict compliance requirements that rely on certificate policy validation may be affected.

Root Cause

The root cause is a documentation-implementation mismatch in the X509_VERIFY_PARAM_add0_policy() function. While the documentation states that calling this function will implicitly enable policy checking, the actual code path does not invoke X509_VERIFY_PARAM_set_flags() with the X509_V_FLAG_POLICY_CHECK flag. This oversight means the policy check remains disabled even after policies have been explicitly added to the verification parameters.

Attack Vector

An attacker could exploit this vulnerability in scenarios where certificate policy validation is a critical security control. The attack would involve presenting a certificate that contains incorrect or invalid policy extensions to a server or client that uses the vulnerable X509_VERIFY_PARAM_add0_policy() function expecting policy enforcement.

The exploitation is possible over the network without requiring authentication or user interaction. The impact is limited to integrity concerns, as the vulnerability allows bypass of a specific validation check rather than enabling code execution or data exfiltration directly.

Applications that require strict certificate policy compliance for regulatory or security reasons—such as those implementing Extended Validation (EV) certificate chains or specific organizational certificate policies—are most at risk. To properly enforce policies, applications must use X509_VERIFY_PARAM_set1_policies() or explicitly call X509_VERIFY_PARAM_set_flags() with the X509_V_FLAG_POLICY_CHECK flag.

Detection Methods for CVE-2023-0466

Indicators of Compromise

  • Applications accepting certificates that should be rejected based on certificate policy requirements
  • Certificate verification succeeding for certificates with mismatched or invalid policy OIDs
  • Unexpected certificate chains being validated in environments with strict policy requirements

Detection Strategies

  • Audit application code for usage of X509_VERIFY_PARAM_add0_policy() without explicit policy flag enabling
  • Review OpenSSL version inventories across infrastructure to identify vulnerable installations
  • Monitor certificate validation logs for anomalies in policy-sensitive environments
  • Implement certificate transparency log monitoring for unexpected certificate acceptance

Monitoring Recommendations

  • Deploy SentinelOne agents to identify systems running vulnerable OpenSSL versions
  • Configure alerts for applications using deprecated or vulnerable OpenSSL API patterns
  • Establish baseline certificate validation behavior and monitor for deviations
  • Regularly audit TLS/SSL configurations across the environment

How to Mitigate CVE-2023-0466

Immediate Actions Required

  • Review all application code that performs certificate verification with policy requirements
  • Replace X509_VERIFY_PARAM_add0_policy() with X509_VERIFY_PARAM_set1_policies() where policy checking is required
  • Explicitly enable policy checking by calling X509_VERIFY_PARAM_set_flags() with X509_V_FLAG_POLICY_CHECK
  • Update OpenSSL to the latest patched versions available for your distribution

Patch Information

OpenSSL has released commits addressing this vulnerability. The fix maintains backward compatibility by not changing the existing behavior of X509_VERIFY_PARAM_add0_policy(), but clarifies the documentation and provides proper alternatives. Relevant patches are available via the OpenSSL Git repository and the official OpenSSL Security Advisory.

Distribution-specific updates are available from Debian Security, Gentoo GLSA, and other major Linux distributions.

Workarounds

  • Use X509_VERIFY_PARAM_set1_policies() instead of X509_VERIFY_PARAM_add0_policy() for policy-based verification
  • Explicitly enable policy checking with X509_VERIFY_PARAM_set_flags(param, X509_V_FLAG_POLICY_CHECK)
  • Implement additional certificate validation at the application layer as a defense-in-depth measure
  • Consider using alternative certificate validation libraries if policy checking is critical
c
// Proper policy checking configuration
X509_VERIFY_PARAM *param = X509_VERIFY_PARAM_new();
// Add required policies
X509_VERIFY_PARAM_set1_policies(param, policy_set);
// Explicitly enable policy checking
X509_VERIFY_PARAM_set_flags(param, X509_V_FLAG_POLICY_CHECK);
// Apply to SSL context or verification context
SSL_CTX_set1_param(ctx, param);

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.71%

  • 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 Security List Post

  • OpenSSL Commit Change #73398de

  • Debian LTS Announcement

  • Gentoo GLSA #202402-08

  • NetApp Security Advisory #ntap-20230414-0001

  • Debian Security Announcement DSA-5417
  • Vendor Resources
  • OpenSSL Commit Change #0d16b7e

  • OpenSSL Commit Change #51e8a84c

  • OpenSSL Commit Change #fc814a3

  • OpenSSL Security Advisory March 2023
  • Related CVEs
  • CVE-2026-31790: OpenSSL Information Disclosure Flaw

  • CVE-2026-2673: OpenSSL TLS 1.3 Key Exchange Vulnerability

  • CVE-2025-69418: OpenSSL OCB Information Disclosure Flaw

  • CVE-2025-15469: OpenSSL Dgst Data Truncation 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