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-2975

CVE-2023-2975: OpenSSL AES-SIV Information Disclosure

CVE-2023-2975 is an information disclosure vulnerability in OpenSSL's AES-SIV cipher implementation that causes empty associated data entries to be ignored during authentication. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: February 11, 2026

CVE-2023-2975 Overview

CVE-2023-2975 is a cryptographic vulnerability in OpenSSL's AES-SIV cipher implementation that causes the library to incorrectly handle empty associated data entries. When applications attempt to authenticate empty data entries as associated data, the OpenSSL implementation silently returns success without performing the actual authentication operation. This flaw allows attackers to manipulate authenticated encryption by removing, adding, or reordering empty associated data entries without detection.

Critical Impact

Applications relying on AES-SIV for authenticated encryption may be vulnerable to integrity bypass attacks when using empty associated data entries, potentially allowing data manipulation to go undetected.

Affected Products

  • OpenSSL (versions using AES-SIV cipher implementation)
  • NetApp Management Services for Element Software and NetApp HCI
  • NetApp ONTAP Select Deploy Administration Utility

Discovery Timeline

  • July 14, 2023 - CVE-2023-2975 published to NVD
  • April 23, 2025 - Last updated in NVD database

Technical Details for CVE-2023-2975

Vulnerability Analysis

The vulnerability resides in OpenSSL's implementation of the AES-SIV (Synthetic Initialization Vector) cipher mode. AES-SIV is designed to provide both encryption and authentication of data, including the ability to authenticate multiple associated data entries alongside the encrypted content. The implementation flaw manifests when applications call EVP_EncryptUpdate() or EVP_CipherUpdate() with a NULL output buffer pointer and a zero-length input buffer to authenticate empty associated data.

Instead of properly processing the empty data entry through the authentication algorithm, the OpenSSL implementation immediately returns a success status without performing any cryptographic operation. This means empty associated data entries are never actually included in the authentication tag calculation, leaving them unauthenticated despite the application's intent.

Root Cause

The root cause is an improper integrity check (CWE-354) combined with an authentication bypass condition (CWE-287) in the AES-SIV cipher implementation. The code path handling zero-length associated data entries contains a logic flaw that bypasses the authentication operation entirely. When the input buffer length is zero and the output buffer is NULL (the correct API usage for authenticating empty data), the function returns success without updating the internal authentication state.

Attack Vector

The attack vector is network-based and requires no privileges or user interaction. An attacker who can intercept or modify encrypted communications using AES-SIV with empty associated data entries could:

  1. Remove empty associated data entries from the authenticated message
  2. Add arbitrary empty entries to the associated data
  3. Reorder empty entries among other associated data elements

Since these empty entries are not actually authenticated, such modifications would not be detected by the receiving application that validates the authentication tag. The impact is limited to integrity compromise without affecting confidentiality or availability.

The vulnerability mechanism involves the improper handling of edge cases in the EVP_EncryptUpdate() function when processing associated data for AES-SIV mode. When an application passes a NULL output buffer with zero input length (the documented method for authenticating empty data), the implementation fails to incorporate this empty entry into the SIV authentication calculation. Technical details are available in the OpenSSL Security Advisory.

Detection Methods for CVE-2023-2975

Indicators of Compromise

  • Applications using AES-SIV cipher mode with empty associated data entries in EVP API calls
  • Calls to EVP_EncryptUpdate() or EVP_CipherUpdate() with NULL output buffer and zero-length input
  • Encrypted communications where empty associated data integrity cannot be verified

Detection Strategies

  • Audit application code for usage of AES-SIV cipher mode with empty associated data entries
  • Review cryptographic implementations that rely on authenticating empty data elements
  • Implement version checking for OpenSSL libraries to identify vulnerable installations
  • Monitor for applications using the affected EVP cipher API patterns

Monitoring Recommendations

  • Inventory all systems running vulnerable OpenSSL versions (check using openssl version)
  • Review application logs for cryptographic operation failures that may indicate exploitation attempts
  • Implement software composition analysis (SCA) to track OpenSSL dependencies across the environment
  • Monitor vendor security advisories for related updates from NetApp and other downstream vendors

How to Mitigate CVE-2023-2975

Immediate Actions Required

  • Upgrade OpenSSL to patched versions that address the AES-SIV authentication bypass
  • Review applications for usage of AES-SIV with empty associated data entries and assess risk
  • Apply vendor patches for NetApp Management Services and ONTAP Select Deploy Administration Utility
  • If unable to patch immediately, consider avoiding empty associated data entries in AES-SIV operations

Patch Information

OpenSSL has released patches to address this vulnerability. The fixes ensure that empty associated data entries are properly processed through the authentication algorithm. Commit patches are available:

  • OpenSSL Commit 00e2f5eea299
  • OpenSSL Commit 6a83f0c95881

For detailed patch information, refer to the OpenSSL Security Advisory July 2023. NetApp users should consult the NetApp Security Advisory NTAP-20230725-0004 for platform-specific guidance.

Workarounds

  • Avoid using empty associated data entries when using AES-SIV cipher mode until patched
  • If empty entries are required, use placeholder non-empty values as associated data instead
  • Consider using alternative authenticated encryption modes (e.g., AES-GCM) if AES-SIV is not strictly required
  • Implement application-level integrity checks as a defense-in-depth measure
bash
# Check OpenSSL version for vulnerability assessment
openssl version -a

# Verify installed OpenSSL package version (Debian/Ubuntu)
dpkg -l | grep openssl

# Verify installed OpenSSL package version (RHEL/CentOS)
rpm -qa | grep 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.18%

  • 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-354

  • CWE-287
  • Technical References
  • Openwall OSS-Security Mailing List

  • Openwall OSS-Security Mailing List

  • Gentoo GLSA 202402-08

  • NetApp Security Advisory NTAP-20230725-0004
  • Vendor Resources
  • OpenSSL Commit Diff Update

  • OpenSSL Commit Diff Update

  • OpenSSL Security Advisory July 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