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

CVE-2026-30964: WebAuthn-Lib Auth Bypass Vulnerability

CVE-2026-30964 is an authentication bypass flaw in web-auth/webauthn-lib that allows attackers to circumvent origin validation by exploiting host-only matching. This post covers technical details, affected versions, and mitigation.

Published: March 13, 2026

CVE-2026-30964 Overview

CVE-2026-30964 is an Origin Validation Bypass vulnerability in web-auth/webauthn-lib, an open source set of PHP libraries and a Symfony bundle that allows developers to integrate WebAuthn authentication mechanisms into their web applications. Prior to version 5.2.4, when allowed_origins is configured, the CheckAllowedOrigins function reduces URL-like values to their host component and accepts on host match alone. This flawed validation makes exact origin policies impossible to express, as scheme and port differences are silently ignored.

Critical Impact

Applications relying on strict origin validation for WebAuthn authentication may accept credentials from unintended origins, potentially allowing attackers to bypass authentication controls through scheme or port manipulation.

Affected Products

  • web-auth/webauthn-lib versions prior to 5.2.4
  • web-auth/webauthn-framework versions prior to 5.2.4
  • Symfony applications using affected webauthn-lib versions

Discovery Timeline

  • 2026-03-10 - CVE-2026-30964 published to NVD
  • 2026-03-11 - Last updated in NVD database

Technical Details for CVE-2026-30964

Vulnerability Analysis

This vulnerability stems from improper origin validation in the WebAuthn authentication flow. The CheckAllowedOrigins function is designed to validate that authentication requests originate from trusted sources by comparing the origin against a configured allowlist. However, the implementation incorrectly reduces full URL values to just the host component before performing the comparison.

This behavior means that when an administrator configures allowed_origins to accept only https://example.com:443, the validation will also accept requests from http://example.com (different scheme) or https://example.com:8443 (different port). This directly violates the Same-Origin Policy principles that WebAuthn security relies upon.

The vulnerability is classified under CWE-346 (Origin Validation Error), which describes flaws where a product does not properly verify that the source of data or communication is valid.

Root Cause

The root cause is the flawed parsing logic within the CheckAllowedOrigins validation function. Instead of comparing the complete origin (scheme + host + port), the function extracts only the hostname component and performs matching against that isolated value. This reductive approach fails to account for the security-critical nature of scheme and port in origin determination, as defined by web security standards.

Attack Vector

The attack vector is network-based and requires user interaction. An attacker could exploit this vulnerability by hosting a malicious page on a domain that shares the same hostname as a legitimate allowed origin but uses a different scheme (HTTP vs HTTPS) or port. When a victim visits the attacker's page and attempts to authenticate using WebAuthn, the vulnerable library may incorrectly accept the authentication assertion despite originating from an unauthorized origin.

For example, if an application allows https://app.example.com, an attacker controlling http://app.example.com or https://app.example.com:8080 could potentially bypass origin checks. This could facilitate credential theft or authentication bypass scenarios.

The vulnerability mechanism involves improper URL parsing in the origin validation logic. When a URL like https://example.com:443 is provided to the CheckAllowedOrigins function, it incorrectly strips the scheme and port, comparing only example.com against the allowlist. For detailed technical information, see the GitHub Security Advisory.

Detection Methods for CVE-2026-30964

Indicators of Compromise

  • WebAuthn authentication requests originating from unexpected schemes (HTTP instead of HTTPS)
  • Authentication attempts from non-standard ports that should not be permitted
  • Unusual origin headers in WebAuthn ceremony requests that differ in scheme or port from configured allowed origins
  • Log entries showing successful authentications from origins not explicitly configured in allowlist

Detection Strategies

  • Review application logs for WebAuthn authentication requests and compare origin headers against your strict origin policy
  • Implement additional origin validation at the application layer that performs full URL comparison including scheme and port
  • Audit your allowed_origins configuration to identify where scheme or port restrictions are critical to security
  • Deploy web application firewall rules to flag WebAuthn requests with origin mismatches

Monitoring Recommendations

  • Enable verbose logging for WebAuthn authentication events to capture full origin information
  • Set up alerts for authentication attempts from origins that match hostname but differ in scheme or port
  • Monitor for increases in failed or suspicious authentication patterns that may indicate exploitation attempts
  • Regularly audit WebAuthn-related security logs for anomalies in origin validation

How to Mitigate CVE-2026-30964

Immediate Actions Required

  • Upgrade web-auth/webauthn-lib to version 5.2.4 or later immediately
  • Review all allowed_origins configurations to understand current exposure
  • Audit recent authentication logs for any suspicious origin patterns
  • Consider implementing additional application-layer origin validation as defense in depth

Patch Information

The vulnerability is fixed in version 5.2.4 of web-auth/webauthn-lib. The fix ensures that origin validation properly compares the complete origin including scheme, host, and port components rather than just the hostname.

Security patches are available via the following commits:

  • Commit 535cc3c2dcbd9c3dfd5e00a254ad4a984e5e7839
  • Commit b4cd9a4394c35fcac6080fd2f84f4f58a30abc01

For complete details, refer to the GitHub Security Advisory GHSA-f7pm-6hr8-7ggm.

Workarounds

  • If immediate upgrade is not possible, implement strict origin validation at the reverse proxy or WAF level
  • Configure web server rules to reject requests with unexpected origin headers before they reach the application
  • Temporarily restrict WebAuthn functionality to environments where origin bypass risk is minimal
  • Add application-level middleware that performs full origin comparison including scheme and port validation
bash
# Upgrade web-auth/webauthn-lib via Composer
composer require web-auth/webauthn-lib:^5.2.4

# Verify the installed version
composer show web-auth/webauthn-lib | grep 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/TechWebauthn Lib

  • SeverityMEDIUM

  • CVSS Score5.4

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-346
  • Technical References
  • GitHub Commit Update

  • GitHub Commit Update

  • GitHub Security Advisory
  • Latest CVEs
  • CVE-2025-11419: Keycloak TLS DoS Vulnerability

  • CVE-2025-13947: WebKitGTK Information Disclosure Flaw

  • CVE-2026-40322: SiYuan Knowledge Management RCE Vulnerability

  • CVE-2026-40318: SiYuan Path Traversal 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