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-2025-69418

CVE-2025-69418: OpenSSL OCB Information Disclosure Flaw

CVE-2025-69418 is an information disclosure vulnerability in OpenSSL's low-level OCB API affecting hardware-accelerated code paths. This post covers the technical details, affected versions, and mitigation strategies.

Published: January 30, 2026

CVE-2025-69418 Overview

CVE-2025-69418 is a cryptographic vulnerability in OpenSSL's OCB (Offset Codebook) mode implementation affecting hardware-accelerated code paths including AES-NI. When applications directly use the low-level CRYPTO_ocb128_encrypt() or CRYPTO_ocb128_decrypt() functions with input lengths that are not multiples of 16 bytes, the trailing 1-15 bytes may be left unencrypted and unauthenticated, potentially exposing sensitive data in cleartext.

Critical Impact

The trailing 1-15 bytes of a message may be exposed in cleartext on encryption and are not covered by the authentication tag, allowing an attacker to read or tamper with those bytes without detection.

Affected Products

  • OpenSSL 3.6
  • OpenSSL 3.5
  • OpenSSL 3.4
  • OpenSSL 3.3
  • OpenSSL 3.0
  • OpenSSL 1.1.1

Discovery Timeline

  • January 27, 2026 - CVE-2025-69418 published to NVD
  • January 29, 2026 - Last updated in NVD database

Technical Details for CVE-2025-69418

Vulnerability Analysis

This vulnerability exists in the hardware-accelerated stream path of OpenSSL's OCB mode encryption and decryption routines. The core issue is a pointer management flaw in the crypto/modes/ocb128.c file. When processing data through AES-NI or other hardware acceleration, the code correctly processes full 16-byte blocks but fails to advance the input/output pointers after this processing.

The subsequent tail-handling code, which is responsible for processing any remaining bytes that don't fill a complete 16-byte block, operates on the original base pointers rather than the updated positions. This results in the tail-handling code reprocessing the beginning of the buffer while leaving the actual trailing bytes completely unprocessed.

Critically, the authentication checksum calculation also excludes these true tail bytes, meaning an attacker could potentially modify these trailing bytes without the tampering being detected through the authentication tag verification.

It's important to note that typical OpenSSL consumers using the higher-level EVP (Envelope) API are not affected. The EVP and provider OCB implementations split inputs so that full blocks and trailing partial blocks are processed in separate calls, avoiding the problematic code path. Additionally, TLS does not use OCB ciphersuites, further limiting the exposure. The FIPS modules in versions 3.6, 3.5, 3.4, 3.3, 3.2, 3.1, and 3.0 are also unaffected since OCB mode is not a FIPS-approved algorithm.

Root Cause

The root cause is classified under CWE-325 (Missing Cryptographic Step). The low-level OCB encrypt and decrypt routines in the hardware-accelerated stream path process full 16-byte blocks but fail to advance the input/output pointers after processing. When the tail-handling code executes, it operates on the original base pointers, effectively reprocessing the beginning of the buffer while leaving the actual trailing bytes (1-15 bytes) unprocessed and unprotected by the authentication mechanism.

Attack Vector

The attack vector requires local access and targets applications that directly call CRYPTO_ocb128_encrypt() or CRYPTO_ocb128_decrypt() functions with non-block-aligned lengths in a single call on hardware-accelerated builds. An attacker with visibility into encrypted communications could:

  1. Read the trailing 1-15 bytes of plaintext that were not encrypted
  2. Modify these trailing bytes without detection since they are excluded from the authentication tag
  3. Exploit the lack of integrity protection to tamper with message data

The following patch from the OpenSSL repository addresses the pointer advancement issue:

c
 
     if (num_blocks && all_num_blocks == (size_t)all_num_blocks
         && ctx->stream != NULL) {
-        size_t max_idx = 0, top = (size_t)all_num_blocks;
+        size_t max_idx = 0, top = (size_t)all_num_blocks, processed_bytes = 0;
 
         /*
          * See how many L_{i} entries we need to process data at hand

Source: GitHub OpenSSL Commit 372fc5c7

Detection Methods for CVE-2025-69418

Indicators of Compromise

  • Applications directly calling CRYPTO_ocb128_encrypt() or CRYPTO_ocb128_decrypt() with non-16-byte-aligned input lengths
  • Presence of vulnerable OpenSSL versions (3.6, 3.5, 3.4, 3.3, 3.0, or 1.1.1) in the environment
  • Applications using hardware-accelerated (AES-NI) builds of OpenSSL with low-level OCB API calls

Detection Strategies

  • Inventory all systems running affected OpenSSL versions (3.6, 3.5, 3.4, 3.3, 3.0, 1.1.1) using software composition analysis tools
  • Audit application code for direct usage of CRYPTO_ocb128_encrypt() and CRYPTO_ocb128_decrypt() functions
  • Review cryptographic implementations for non-block-aligned input handling in OCB mode operations

Monitoring Recommendations

  • Monitor for applications using low-level OpenSSL cryptographic APIs rather than the recommended EVP interfaces
  • Track OpenSSL library versions across your infrastructure to ensure timely patching
  • Implement SentinelOne Singularity to detect anomalous cryptographic behavior and unauthorized memory access patterns

How to Mitigate CVE-2025-69418

Immediate Actions Required

  • Update OpenSSL to the patched versions addressing CVE-2025-69418
  • Migrate applications from low-level OCB API calls to the higher-level EVP interface which is not affected
  • Verify that OpenSSL 1.0.2 is used if upgrade is not immediately possible (this version is not affected)

Patch Information

OpenSSL has released patches addressing this vulnerability. Multiple commits have been published to fix the pointer advancement issue in the OCB implementation:

  • OpenSSL Commit 372fc5c7
  • OpenSSL Commit 4016975d
  • OpenSSL Commit 52d23c86
  • OpenSSL Commit a7589230
  • OpenSSL Commit ed40856d

For detailed information, refer to the OpenSSL Security Advisory.

Workarounds

  • Refactor applications to use the EVP API instead of direct CRYPTO_ocb128_encrypt() and CRYPTO_ocb128_decrypt() calls
  • Ensure input data is padded to 16-byte block boundaries before calling low-level OCB functions
  • Consider using alternative authenticated encryption modes (e.g., GCM) that do not have this vulnerability
bash
# Check OpenSSL version and identify affected systems
openssl version -a

# Verify library path for affected installations
ldd /usr/bin/openssl | grep libcrypto

# Search for applications using vulnerable low-level OCB APIs
grep -r "CRYPTO_ocb128_encrypt\|CRYPTO_ocb128_decrypt" /path/to/application/source

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 Score4.0

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-325
  • Technical References
  • GitHub OpenSSL Commit

  • GitHub OpenSSL Commit

  • GitHub OpenSSL Commit

  • GitHub OpenSSL Commit

  • GitHub OpenSSL Commit

  • OpenSSL Security Advisory
  • Related CVEs
  • CVE-2026-2673: OpenSSL TLS 1.3 Key Exchange Vulnerability

  • CVE-2025-15469: OpenSSL Dgst Data Truncation Vulnerability

  • CVE-2023-5363: OpenSSL Information Disclosure Flaw

  • CVE-2025-9231: OpenSSL SM2 Timing Attack 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