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

CVE-2023-1255: OpenSSL AES-XTS DoS Vulnerability

CVE-2023-1255 is a denial of service vulnerability in OpenSSL's AES-XTS cipher affecting 64-bit ARM platforms. The flaw can cause crashes when decrypting specific ciphertext sizes. This article covers technical details, affected versions, impact, and mitigation.

Published: February 4, 2026

CVE-2023-1255 Overview

CVE-2023-1255 is an out-of-bounds read vulnerability in OpenSSL's AES-XTS cipher decryption implementation specifically affecting 64-bit ARM platforms. The bug causes the decryption routine to read past the input buffer under specific ciphertext size conditions, potentially leading to application crashes and denial of service.

The AES-XTS algorithm is commonly used for disk encryption, and this vulnerability affects applications utilizing this cipher mode on ARM64 architecture. The decryption implementation reads past the end of the ciphertext buffer when the ciphertext size is 4 mod 5 in 16-byte blocks (e.g., 144 bytes or 1024 bytes). If the memory region following the ciphertext buffer is unmapped, the out-of-bounds read triggers a crash.

Critical Impact

Applications using AES-XTS decryption on 64-bit ARM platforms can experience denial of service crashes when processing ciphertext of specific sizes, particularly impacting disk encryption systems and security-critical storage applications.

Affected Products

  • OpenSSL 3.0.0 through 3.0.8
  • OpenSSL 3.1.0
  • OpenSSL on 64-bit ARM platforms using AES-XTS cipher

Discovery Timeline

  • April 20, 2023 - CVE-2023-1255 published to NVD
  • February 4, 2025 - Last updated in NVD database

Technical Details for CVE-2023-1255

Vulnerability Analysis

This vulnerability is classified as CWE-125 (Out-of-Bounds Read), affecting the AES-XTS cipher decryption implementation in OpenSSL when running on 64-bit ARM platforms. The root cause lies in improper bounds checking within the ARM64-optimized assembly code for AES-XTS decryption operations.

The vulnerability requires specific conditions to trigger: the ciphertext size must be congruent to 4 mod 5 when counted in 16-byte blocks. This means ciphertext sizes such as 144 bytes, 1024 bytes, or similar values that meet this mathematical condition can cause the decryption routine to read beyond the allocated buffer boundary.

While the network attack vector indicates remote exploitation potential, the complexity is high due to the specific conditions required. An attacker would need to control both the size and memory location of the ciphertext buffer being processed by the vulnerable application. This makes practical exploitation difficult, though the impact could be significant in environments where disk encryption services are exposed.

Root Cause

The vulnerability stems from a bug in the 64-bit ARM platform-specific implementation of the AES-XTS cipher decryption routine. The assembly code optimized for ARM64 architecture fails to properly validate buffer boundaries when processing ciphertext blocks. Specifically, the loop handling the final blocks of ciphertext does not correctly account for the buffer size when the total size falls into the problematic modulo class, causing the routine to read additional bytes beyond the allocated input buffer.

Attack Vector

An attacker can exploit this vulnerability by causing an application to decrypt ciphertext with a specifically crafted size on a 64-bit ARM platform. The attack scenario involves:

  1. Targeting an application that uses OpenSSL's AES-XTS decryption on ARM64 architecture
  2. Providing ciphertext with a size that is 4 mod 5 in 16-byte blocks
  3. Ensuring the memory following the ciphertext buffer is unmapped

If the attacker can influence the ciphertext input to an affected application—such as through a file encryption service, encrypted storage system, or any network service using AES-XTS—they may cause the application to crash, resulting in denial of service. The vulnerability does not allow for code execution or information disclosure beyond the crash itself.

Detection Methods for CVE-2023-1255

Indicators of Compromise

  • Unexpected application crashes on 64-bit ARM systems using OpenSSL for AES-XTS decryption
  • Segmentation fault signals (SIGSEGV) in processes linked against vulnerable OpenSSL versions
  • Core dumps indicating out-of-bounds memory access in OpenSSL cryptographic operations
  • Service interruptions in disk encryption or storage services on ARM64 platforms

Detection Strategies

  • Monitor for crash reports and core dumps associated with OpenSSL-linked applications on ARM64 systems
  • Implement version detection for OpenSSL libraries to identify vulnerable installations (versions 3.0.0-3.0.8 and 3.1.0)
  • Deploy endpoint detection rules to flag repeated crashes in cryptographic services
  • Audit application logs for memory access violations during decryption operations

Monitoring Recommendations

  • Enable kernel crash monitoring on ARM64 servers running OpenSSL-based services
  • Configure alerting for service restarts of disk encryption daemons and storage services
  • Monitor memory-related system errors on ARM platforms using security telemetry
  • Implement availability monitoring for critical services using AES-XTS encryption

How to Mitigate CVE-2023-1255

Immediate Actions Required

  • Upgrade OpenSSL to version 3.0.9 or 3.1.1 or later on all 64-bit ARM systems
  • Inventory all ARM64 deployments using OpenSSL for disk encryption or AES-XTS operations
  • Apply vendor-provided patches from downstream distributions (Linux, BSD, etc.)
  • Prioritize patching for internet-facing services and disk encryption infrastructure

Patch Information

OpenSSL has released patches addressing this vulnerability. The fixes are available in the OpenSSL Git repository with commit 02ac9c9420275868472f33b01def01218742b8bb for the 3.0 branch and commit bc2f61ad70971869b242fc1cb445b98bad50074a for the 3.1 branch.

Users should upgrade to:

  • OpenSSL 3.0.9 or later (for 3.0.x branch)
  • OpenSSL 3.1.1 or later (for 3.1.x branch)

For detailed information, refer to the OpenSSL Security Advisory and the NetApp Security Advisory for NetApp product-specific guidance.

Workarounds

  • Restrict network access to services using AES-XTS decryption on ARM64 platforms until patching is complete
  • Implement input validation to reject ciphertext sizes that match the vulnerable pattern (4 mod 5 in 16-byte blocks)
  • Consider temporarily switching to non-ARM platforms for critical encryption services if immediate patching is not possible
  • Deploy application-level crash recovery mechanisms to minimize service disruption
bash
# Check OpenSSL version on ARM64 systems
openssl version -a

# Verify platform architecture
uname -m

# Update OpenSSL on Debian/Ubuntu ARM64 systems
sudo apt update && sudo apt upgrade openssl libssl3

# Update OpenSSL on RHEL/CentOS ARM64 systems
sudo dnf update openssl

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechOpenssl

  • SeverityMEDIUM

  • CVSS Score5.9

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-125
  • Technical References
  • NetApp Security Advisory

  • OpenSSL Security Advisory
  • Vendor Resources
  • OpenSSL Commit Diff Analysis

  • OpenSSL Commit Diff Analysis
  • Related CVEs
  • CVE-2026-28389: OpenSSL CMS DoS Vulnerability

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

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

  • CVE-2026-28390: OpenSSL CMS 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