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

CVE-2026-28815: Swift Crypto Information Disclosure Flaw

CVE-2026-28815 is an information disclosure vulnerability in Swift Crypto triggered by malformed X-Wing HPKE keys causing out-of-bounds reads. This article covers technical details, affected versions, and patches.

Published: April 10, 2026

CVE-2026-28815 Overview

CVE-2026-28815 is an out-of-bounds read vulnerability affecting Apple's swift-crypto library. A remote attacker can supply a short X-Wing HPKE encapsulated key and trigger an out-of-bounds read in the C decapsulation path, potentially causing a crash or memory disclosure depending on runtime protections. This issue is fixed in swift-crypto version 4.3.1.

Critical Impact

Remote attackers can exploit this vulnerability without authentication to cause denial of service through application crashes or potentially disclose sensitive memory contents from the affected system.

Affected Products

  • Apple swift-crypto versions prior to 4.3.1
  • Applications using the X-Wing HPKE decapsulation functionality
  • Systems processing untrusted encapsulated keys through the C decapsulation path

Discovery Timeline

  • 2026-04-03 - CVE-2026-28815 published to NVD
  • 2026-04-03 - Last updated in NVD database

Technical Details for CVE-2026-28815

Vulnerability Analysis

This vulnerability is classified as CWE-125 (Out-of-Bounds Read) and affects the X-Wing HPKE (Hybrid Public Key Encryption) implementation within swift-crypto. The flaw resides in the C decapsulation path, which fails to properly validate the length of incoming encapsulated keys before processing them. When a malformed, shortened key is provided, the decapsulation routine attempts to read beyond the bounds of the allocated buffer, leading to undefined behavior.

The impact of this vulnerability is primarily availability-focused, with a network-based attack vector requiring no privileges or user interaction. Successful exploitation can cause application crashes, resulting in denial of service. In certain runtime configurations without adequate memory protections, there is also potential for information disclosure through memory leakage.

Root Cause

The root cause lies in insufficient input validation within the C decapsulation code path of the X-Wing HPKE implementation. The code does not adequately verify that the provided encapsulated key meets the expected length requirements before attempting to process it. This missing boundary check allows an attacker to supply a truncated key that causes the decapsulation routine to read memory beyond the actual buffer boundaries.

Attack Vector

The attack can be executed remotely over a network without requiring authentication, user interaction, or special privileges. An attacker crafts a malicious request containing a shortened X-Wing HPKE encapsulated key and sends it to an application using the vulnerable swift-crypto library. When the application attempts to decapsulate this malformed key, the C code path reads beyond the allocated buffer, causing either:

  1. An application crash if memory protections detect the invalid access
  2. Disclosure of adjacent memory contents if the read succeeds and the data is returned to the attacker

The vulnerability mechanism involves the decapsulation function receiving an undersized encapsulated key input. Without proper length validation, the function proceeds to read the expected number of bytes from the buffer, extending past its actual boundaries. For technical details regarding the specific code paths affected, refer to the GitHub Security Advisory.

Detection Methods for CVE-2026-28815

Indicators of Compromise

  • Unexpected application crashes or segmentation faults in services utilizing swift-crypto HPKE functionality
  • Anomalous network requests containing malformed or truncated encapsulated key data
  • Memory access violations logged by runtime protection mechanisms
  • Unusual patterns of HPKE decapsulation failures in application logs

Detection Strategies

  • Monitor application logs for crashes or errors related to HPKE decapsulation operations
  • Implement input validation rules to flag requests with abnormally short encapsulated key payloads
  • Deploy memory safety monitoring tools to detect out-of-bounds read attempts
  • Use network intrusion detection to identify malformed cryptographic protocol messages

Monitoring Recommendations

  • Enable verbose logging for cryptographic operations within applications using swift-crypto
  • Configure crash reporting and analysis tools to capture and alert on swift-crypto related failures
  • Establish baseline metrics for HPKE operations to detect anomalous patterns indicating exploitation attempts
  • Review application error rates for services processing external cryptographic inputs

How to Mitigate CVE-2026-28815

Immediate Actions Required

  • Upgrade swift-crypto to version 4.3.1 or later immediately
  • Audit all applications and services that depend on swift-crypto for X-Wing HPKE functionality
  • Implement additional input validation to reject encapsulated keys that do not meet minimum length requirements
  • Consider temporarily disabling X-Wing HPKE features if upgrade is not immediately possible

Patch Information

The vulnerability has been addressed in swift-crypto version 4.3.1. Organizations should update their dependencies to this version or later. The fix implements proper length validation for encapsulated keys before the decapsulation process begins, preventing the out-of-bounds read condition.

For detailed patch information, see the GitHub Security Advisory.

Workarounds

  • Implement application-level input validation to verify encapsulated key lengths before passing to swift-crypto
  • Deploy network-level filtering to block requests with malformed cryptographic payloads
  • Enable runtime memory protections such as ASLR and stack canaries to limit exploitation impact
  • Consider using request rate limiting for endpoints that process HPKE operations to reduce attack surface
bash
# Update swift-crypto dependency to patched version
# In Package.swift, update the dependency:
# .package(url: "https://github.com/apple/swift-crypto.git", from: "4.3.1")

# Verify installed version after update
swift package show-dependencies | grep swift-crypto

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechSwift Crypto

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-125
  • Technical References
  • GitHub Security Advisory
  • Latest CVEs
  • CVE-2026-8468: Elixir Plug Library DoS Vulnerability

  • CVE-2026-8295: simdjson Information Disclosure Vulnerability

  • CVE-2025-68421: Comarch ERP Optima Auth Bypass Vulnerability

  • CVE-2025-68420: Comarch ERP Optima Privilege Escalation
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