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

CVE-2026-5446: wolfSSL ARIA-GCM Nonce Reuse Vulnerability

CVE-2026-5446 is a nonce reuse flaw in wolfSSL's ARIA-GCM implementation for TLS 1.2 and DTLS 1.2 that compromises encryption security. This article covers the technical details, affected configurations, impact, and mitigation.

Published: April 9, 2026

CVE-2026-5446 Overview

A cryptographic vulnerability has been identified in wolfSSL affecting ARIA-GCM cipher suites used in TLS 1.2 and DTLS 1.2 connections. The flaw results in the reuse of an identical 12-byte GCM nonce for every application-data record, which fundamentally compromises the security guarantees of authenticated encryption.

The vulnerability stems from the stateless nature of wc_AriaEncrypt, which passes the caller-supplied IV verbatim to the MagicCrypto SDK without maintaining an internal counter. In non-FIPS builds, the explicit IV is zero-initialized at session setup and never incremented, leading to catastrophic nonce reuse.

Critical Impact

GCM nonce reuse enables attackers to recover authentication keys and decrypt ciphertext, potentially compromising confidentiality and integrity of TLS-protected communications in affected deployments.

Affected Products

  • wolfSSL builds configured with --enable-aria
  • Deployments using the proprietary MagicCrypto SDK (non-default, opt-in configuration)
  • Korean regulatory deployments requiring ARIA cipher support

Discovery Timeline

  • 2026-04-09 - CVE-2026-5446 published to NVD
  • 2026-04-09 - Last updated in NVD database

Technical Details for CVE-2026-5446

Vulnerability Analysis

This vulnerability represents a critical failure in cryptographic nonce management within wolfSSL's ARIA-GCM implementation. In Galois/Counter Mode (GCM) authenticated encryption, the nonce (initialization vector) must be unique for each encryption operation under the same key. Reusing the same nonce with the same key allows an attacker to perform bitwise XOR operations on captured ciphertexts to recover plaintext and, more critically, to forge authentication tags.

The root issue is that wc_AriaEncrypt operates statelessly, meaning it does not track how many times it has been invoked or maintain any counter state between calls. This contrasts sharply with the AES-GCM implementation (wc_AesGcmEncrypt_ex), which properly maintains an internal invocation counter independent of the call-site guard.

The vulnerability is limited to builds with specific configuration flags (--enable-aria) and requires the proprietary MagicCrypto SDK, making it a non-default configuration primarily used in Korean regulatory compliance scenarios. Standard AES-GCM cipher suites are not affected by this vulnerability.

Root Cause

The vulnerability originates from improper initialization vector handling in the ARIA-GCM cipher suite implementation. The explicit IV is zero-initialized during TLS session setup and the wolfSSL code fails to increment this value in non-FIPS builds. Because wc_AriaEncrypt passes the caller-supplied IV directly to the MagicCrypto SDK without modification, every subsequent encryption operation reuses the same 12-byte nonce value.

This design flaw is classified under CWE-323: Reusing a Nonce, Key Pair in Encryption, which represents a fundamental violation of authenticated encryption security requirements.

Attack Vector

The vulnerability is exploitable over the network (AV:N) with low attack complexity. An attacker capable of intercepting TLS/DTLS traffic can exploit the nonce reuse to:

  1. Recover XOR of plaintexts: By XORing two ciphertexts encrypted with the same nonce, the attacker obtains the XOR of the corresponding plaintexts
  2. Compromise authentication: With sufficient captured ciphertexts, the attacker can recover the authentication subkey (H value) used in GCM's GHASH function
  3. Forge valid ciphertexts: Once the authentication key is recovered, the attacker can forge authenticated ciphertexts that will be accepted by the victim

The attack requires low privileges and no user interaction, though exploitation does require the attacker to be positioned to capture encrypted traffic (reflected in the Present attack prerequisites).

The vulnerability manifests during the TLS record layer encryption process where application data is encrypted. Because the IV initialization and increment logic is absent in non-FIPS builds, every TLS record encrypted with ARIA-GCM uses the identical nonce value. For detailed technical analysis, see the wolfSSL Pull Request #10111.

Detection Methods for CVE-2026-5446

Indicators of Compromise

  • Network traffic analysis showing identical GCM nonce values across multiple TLS records
  • TLS handshakes negotiating ARIA-GCM cipher suites (cipher suite identifiers in the 0xC0 range specific to ARIA)
  • Presence of MagicCrypto SDK components in the deployment environment

Detection Strategies

  • Audit wolfSSL compilation flags for --enable-aria configuration
  • Inspect build configurations for MagicCrypto SDK integration
  • Monitor TLS cipher suite negotiations for ARIA-GCM usage patterns
  • Review wolfSSL version and applied security patches

Monitoring Recommendations

  • Implement network monitoring to detect ARIA cipher suite usage in TLS connections
  • Configure alerts for deployments using non-default wolfSSL configurations
  • Establish baseline of cryptographic configurations across the environment
  • Deploy TLS inspection capabilities to identify vulnerable cipher suite negotiations

How to Mitigate CVE-2026-5446

Immediate Actions Required

  • Disable ARIA-GCM cipher suites in wolfSSL configurations until patch is applied
  • Switch to AES-GCM cipher suites which maintain proper nonce counters
  • Review all deployments for --enable-aria build configurations
  • Assess Korean regulatory compliance alternatives that do not require vulnerable configuration

Patch Information

wolfSSL has addressed this vulnerability through code changes that properly manage nonce incrementation for ARIA-GCM operations. The fix ensures that the IV is incremented after each encryption operation, preventing nonce reuse. Organizations should apply the patch available in the wolfSSL GitHub Pull Request #10111.

Workarounds

  • Disable ARIA cipher suites entirely by removing --enable-aria from build configuration
  • Configure TLS server and client to prefer AES-GCM cipher suites over ARIA-GCM
  • Implement cipher suite allow-listing to exclude ARIA-GCM variants
  • Consider enabling FIPS mode if applicable, as the vulnerability specifically affects non-FIPS builds
bash
# Disable ARIA cipher suites in wolfSSL configuration
./configure --disable-aria

# Alternatively, configure TLS to exclude ARIA cipher suites at runtime
# by specifying cipher suite list without ARIA variants
export WOLFSSL_CIPHER_LIST="TLS_AES_256_GCM_SHA384:TLS_AES_128_GCM_SHA256"

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechWolfssl

  • SeverityMEDIUM

  • CVSS Score6.0

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:L/UI:N/VC:H/VI:L/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-323
  • Technical References
  • GitHub Pull Request
  • Related CVEs
  • CVE-2026-4395: wolfSSL Buffer Overflow Vulnerability

  • CVE-2026-3849: wolfSSL Buffer Overflow Vulnerability

  • CVE-2026-3549: TLS 1.3 ECH Buffer Overflow Vulnerability

  • CVE-2026-3547: wolfSSL ALPN 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