Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-5466

CVE-2026-5466: wolfSSL ECCSI Auth Bypass Vulnerability

CVE-2026-5466 is an authentication bypass flaw in wolfSSL's ECCSI signature verifier that allows attackers to forge signatures for any message and identity. This post covers technical details, impact, and mitigation.

Published: April 17, 2026

CVE-2026-5466 Overview

A critical cryptographic vulnerability exists in wolfSSL's ECCSI (Elliptic Curve-Based Certificateless Signatures for Identity-Based Encryption) signature verification implementation. The wc_VerifyEccsiHash function decodes the r and s scalars from the signature blob via mp_read_unsigned_bin without validating that they lie within the valid range of [1, q-1]. This improper verification of cryptographic signature (CWE-347) allows an attacker to craft forged signatures that verify against any message for any identity using only publicly-known constants.

Critical Impact

Complete signature verification bypass enabling universal signature forgery across all ECCSI-protected communications and identities.

Affected Products

  • wolfSSL library (versions utilizing ECCSI signature verification)
  • Applications and services implementing wolfSSL ECCSI cryptographic functions
  • Identity-based encryption systems relying on wolfSSL's wc_VerifyEccsiHash function

Discovery Timeline

  • 2026-04-10 - CVE CVE-2026-5466 published to NVD
  • 2026-04-13 - Last updated in NVD database

Technical Details for CVE-2026-5466

Vulnerability Analysis

The vulnerability resides in wolfSSL's ECCSI signature verification routine, specifically within the wc_VerifyEccsiHash function. ECCSI is an identity-based signature scheme where the r and s components are critical scalar values that must conform to strict mathematical constraints defined by the elliptic curve parameters.

In a properly implemented ECCSI verification, the r and s values extracted from a signature must be validated to ensure they fall within the range [1, q-1], where q is the order of the elliptic curve's base point. Without this boundary check, the verification algorithm may accept mathematically invalid signatures that should be rejected.

The flaw enables attackers to construct specially crafted signatures using publicly available curve constants that will pass verification for arbitrary messages and identities. This fundamentally breaks the authentication guarantees that ECCSI is designed to provide, as the verification no longer proves that the signature was created by a legitimate identity holder.

Root Cause

The root cause is a missing bounds validation in the wc_VerifyEccsiHash function. When the function calls mp_read_unsigned_bin to decode the r and s scalars from the signature blob, it fails to subsequently verify that these values satisfy the mathematical requirement of being in the range [1, q-1]. This is a classic case of improper verification of cryptographic signature (CWE-347), where critical validation steps are omitted from the signature verification process.

Attack Vector

The attack requires adjacent network access to exploit. An attacker with knowledge of the ECCSI public parameters (which are by design publicly available) can craft a malicious signature blob containing carefully chosen r and s values that fall outside the valid range but still cause the verification to succeed.

The attack methodology involves:

  1. Obtaining the public ECCSI parameters for the target system
  2. Crafting a signature blob with r and/or s values that exploit the missing boundary checks
  3. Submitting the forged signature along with any arbitrary message
  4. The vulnerable wc_VerifyEccsiHash function accepts the invalid signature as authentic

This attack does not require prior authentication or user interaction, making it particularly dangerous for systems relying on ECCSI for identity verification.

Detection Methods for CVE-2026-5466

Indicators of Compromise

  • Unusual ECCSI signature verification patterns where signatures verify for unexpected identities
  • Log entries showing signature verifications with anomalous r or s scalar values (if detailed logging is enabled)
  • Authentication events where the claimed identity does not match expected patterns
  • Unexpected successful authentications in ECCSI-protected services

Detection Strategies

  • Implement application-layer logging to capture ECCSI signature verification attempts and their parameters
  • Monitor for authentication anomalies where verified identities do not match expected user behavior
  • Deploy network monitoring to detect unusual patterns in ECCSI-based authentication traffic
  • Use SentinelOne Singularity to monitor for exploitation attempts targeting wolfSSL-based applications

Monitoring Recommendations

  • Enable verbose logging on applications using wolfSSL ECCSI functionality to capture signature parameters
  • Establish baseline authentication patterns and alert on deviations that may indicate signature forgery
  • Monitor for rapid successive signature verifications that could indicate attack reconnaissance

How to Mitigate CVE-2026-5466

Immediate Actions Required

  • Review all applications and services using wolfSSL's ECCSI signature verification functionality
  • Apply the latest wolfSSL patches that address the scalar bounds checking issue
  • Consider temporarily disabling ECCSI-based authentication until patches can be applied
  • Audit recent authentication logs for any suspicious verification patterns

Patch Information

The wolfSSL development team has addressed this vulnerability. The fix adds proper bounds checking to validate that r and s scalars fall within the valid range [1, q-1] before proceeding with signature verification. For technical details on the patch implementation, refer to the wolfSSL GitHub Pull Request #10102.

Organizations should update to the patched version of wolfSSL as soon as it becomes available through their distribution channels.

Workarounds

  • Implement application-level validation of ECCSI signature parameters before calling wc_VerifyEccsiHash
  • Consider using alternative signature schemes supported by wolfSSL that are not affected by this vulnerability
  • Deploy additional authentication layers to reduce reliance on ECCSI as a single point of trust
  • Restrict network access to ECCSI-protected services to trusted adjacent networks only
bash
# Verify wolfSSL version and rebuild with patched source
# Clone the patched wolfSSL repository
git clone https://github.com/wolfssl/wolfssl.git
cd wolfssl
git checkout main  # Ensure you have the latest patched version

# Rebuild wolfSSL with ECCSI support
./autogen.sh
./configure --enable-eccsi
make
sudo make install

# Verify the installation
wolfssl-config --version

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechWolfssl

  • SeverityHIGH

  • CVSS Score7.6

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:A/AC:L/AT:P/PR:N/UI:N/VC:H/VI:H/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-347
  • Technical References
  • GitHub Pull Request
  • Related CVEs
  • CVE-2026-2645: wolfSSL TLS Auth Bypass Vulnerability

  • CVE-2025-15346: wolfSSL-py mTLS Auth Bypass Vulnerability

  • CVE-2026-5448: wolfSSL X.509 Buffer Overflow Vulnerability

  • CVE-2026-5393: wolfSSL Information Disclosure 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