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-2026-28386

CVE-2026-28386: OpenSSL AES-CFB128 DoS Vulnerability

CVE-2026-28386 is a denial of service vulnerability in OpenSSL AES-CFB128 affecting x86-64 systems with AVX-512 and VAES support. This article covers the technical details, affected versions, impact, and mitigation.

Published: April 10, 2026

CVE-2026-28386 Overview

CVE-2026-28386 is an Out-of-Bounds Read vulnerability affecting OpenSSL's AES-CFB128 encryption and decryption implementation on x86-64 systems with AVX-512 and VAES instruction support. When processing partial cipher blocks, the vulnerable code path can trigger an out-of-bounds read of up to 15 bytes, potentially causing application crashes and Denial of Service conditions.

Critical Impact

Applications using AES-CFB128 encryption may crash when processing partial blocks if the input buffer ends at a memory page boundary and the following page is unmapped, leading to Denial of Service.

Affected Products

  • OpenSSL (versions with AVX-512/VAES optimized code paths)
  • OpenSSL FIPS module version 3.6
  • x86-64 systems with AVX-512 and VAES instruction support

Discovery Timeline

  • 2026-04-07 - CVE CVE-2026-28386 published to NVD
  • 2026-04-08 - Last updated in NVD database

Technical Details for CVE-2026-28386

Vulnerability Analysis

This vulnerability exists in OpenSSL's optimized AES-CFB128 implementation that uses AVX-512 and VAES instructions for improved cryptographic performance. The flaw manifests when handling partial cipher blocks—specifically when a previous encryption or decryption call left an incomplete block and the current call provides fewer bytes than needed to complete it.

The out-of-bounds read occurs because the vulnerable code path reads beyond the allocated input buffer boundary. While this over-read can extend up to 15 bytes past the intended buffer, there is no information disclosure risk as the over-read bytes are not written to the output. However, if the input buffer ends at a memory page boundary and the subsequent page is unmapped, the over-read will trigger a segmentation fault, causing the application to crash.

It's important to note that CFB mode is not used in TLS/DTLS protocols, which instead rely on CBC, GCM, CCM, or ChaCha20-Poly1305 cipher modes. This significantly limits the real-world attack surface of this vulnerability.

Root Cause

The root cause lies in the aes-cfb-avx512.pl assembly code that handles partial block processing. The original implementation used unmasked vmovdqu8 instructions to load data from the initialization vector (IV) and input buffer, which would read a full 16-byte XMM register regardless of how many valid bytes were actually present in the partial block.

Attack Vector

The attack vector requires the following specific conditions to be met:

  1. The target application must use OpenSSL's AES-CFB128 cipher mode
  2. The system must be an x86-64 architecture with AVX-512 and VAES instruction support
  3. The application must process partial cipher blocks (incomplete block from previous call)
  4. The input buffer must be positioned at a page boundary with the following page unmapped

The combination of these requirements makes exploitation difficult but possible in specific deployment scenarios where memory layout can be influenced or predicted.

text
     and \$0x0F,%al                   # wrap-around $num in a 16-byte block
 
     leaq ($num,$ivp),%r11            # process $left iv bytes
-    vmovdqu8 (%r11),%xmm0
-    vmovdqu8 ($inp),%xmm1            # process $left input bytes
+    vmovdqu8 (%r11),%xmm0{%k1}{z}
+    vmovdqu8 ($inp),%xmm1{%k1}{z}    # process $left input bytes
     vpxor %xmm0,%xmm1,%xmm2          # CipherFeedBack XOR
     vmovdqu8 %xmm2,($out){%k1}       # write $left output bytes
     vmovdqu8 %xmm2,(%r11){%k1}       # blend $left output bytes into iv

Source: GitHub OpenSSL Commit

The fix adds the {%k1}{z} mask suffix to the vmovdqu8 instructions, ensuring that only the valid bytes (determined by the k1 mask register) are loaded, with any remaining bytes zeroed rather than read from potentially invalid memory locations.

Detection Methods for CVE-2026-28386

Indicators of Compromise

  • Unexplained application crashes in processes using OpenSSL AES-CFB128 encryption
  • Segmentation fault errors in log files associated with cryptographic operations
  • Core dumps showing crashes within OpenSSL's AVX-512 code paths

Detection Strategies

  • Monitor for repeated SIGSEGV signals in applications linked against OpenSSL
  • Implement memory fault detection for applications using AES-CFB128 cipher operations
  • Audit system capabilities for AVX-512 and VAES support using cat /proc/cpuinfo | grep -E "avx512|vaes"
  • Review application logs for cryptographic operation failures during partial block processing

Monitoring Recommendations

  • Deploy application crash monitoring for services using OpenSSL cryptographic functions
  • Enable core dump collection and analysis for affected services
  • Monitor system stability metrics on x86-64 servers with AVX-512/VAES capabilities
  • Set up alerts for recurring segmentation faults in production environments

How to Mitigate CVE-2026-28386

Immediate Actions Required

  • Identify all systems running OpenSSL with AVX-512 and VAES support using grep -E "avx512|vaes" /proc/cpuinfo
  • Inventory applications that utilize AES-CFB128 cipher mode
  • Apply the OpenSSL security patch as soon as available for your distribution
  • Consider disabling AVX-512 optimizations via the OPENSSL_ia32cap environment variable as a temporary workaround

Patch Information

The vulnerability has been addressed in the official OpenSSL commit 61f428a2fc6671ede184a19f71e6e495f0689621. The patch modifies the crypto/aes/asm/aes-cfb-avx512.pl assembly code to use masked memory load instructions, preventing out-of-bounds reads during partial block processing. Review the OpenSSL Security Advisory for additional guidance and affected version information.

Workarounds

  • Disable AVX-512 code paths by setting OPENSSL_ia32cap=:~0x200000 environment variable
  • Switch to alternative cipher modes (GCM, CCM, or ChaCha20-Poly1305) where possible
  • Ensure input buffers are not allocated at memory page boundaries
  • Deploy applications in containers with memory protection boundaries
bash
# Configuration example
# Disable AVX-512 optimizations for OpenSSL as a temporary workaround
export OPENSSL_ia32cap=":~0x200000"

# Verify AVX-512/VAES capability on your system
grep -E "avx512|vaes" /proc/cpuinfo

# Check OpenSSL version
openssl version -a

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechOpenssl

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-125
  • Technical References
  • GitHub OpenSSL Commit

  • OpenSSL Security Advisory
  • Related CVEs
  • CVE-2026-28389: OpenSSL CMS DoS Vulnerability

  • CVE-2026-28388: OpenSSL Delta CRL DoS Vulnerability

  • CVE-2026-28390: OpenSSL CMS DoS Vulnerability

  • CVE-2026-22795: OpenSSL PKCS#12 Parsing 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