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-2024-12225

CVE-2024-12225: Quarkus WebAuthn Auth Bypass Vulnerability

CVE-2024-12225 is an authentication bypass flaw in Quarkus WebAuthn module that allows attackers to obtain login cookies and potentially access user accounts. This article covers technical details, affected versions, and mitigation.

Published: April 8, 2026

CVE-2024-12225 Overview

A critical authentication bypass vulnerability was discovered in the Quarkus quarkus-security-webauthn module. The vulnerability exists because the Quarkus WebAuthn module publishes default REST endpoints for user registration and login while simultaneously allowing developers to provide custom REST endpoints. When developers implement custom REST endpoints, the default endpoints remain accessible, creating a dangerous security gap. This flaw potentially allows attackers to obtain a login cookie without a corresponding user in the Quarkus application, or more critically, could allow an attacker to log in as an existing user simply by knowing that user's username.

Critical Impact

Attackers can bypass authentication and gain unauthorized access to applications by exploiting exposed default WebAuthn endpoints, potentially impersonating legitimate users with no additional credentials required.

Affected Products

  • Quarkus (all versions with quarkus-security-webauthn module)
  • Applications using custom WebAuthn REST endpoints alongside default endpoints
  • Red Hat products incorporating vulnerable Quarkus versions

Discovery Timeline

  • May 6, 2025 - CVE-2024-12225 published to NVD
  • July 31, 2025 - Last updated in NVD database

Technical Details for CVE-2024-12225

Vulnerability Analysis

This vulnerability is classified under CWE-288 (Authentication Bypass Using an Alternate Path or Channel). The core issue stems from architectural oversight in the Quarkus WebAuthn module where the module's default REST endpoints for user registration and authentication remain active even when developers implement their own custom endpoints.

In typical Quarkus WebAuthn implementations, developers may create custom REST endpoints to handle user registration and login flows with application-specific logic. However, the framework fails to disable or restrict access to the built-in default endpoints when custom implementations are detected. This creates two parallel authentication paths—the intended custom path and the unintended default path.

An attacker can exploit this by directly accessing the default endpoints, bypassing any custom security logic, validation, or business rules implemented in the custom endpoints. The impact is severe: attackers can either create sessions for non-existent users or, depending on application design, authenticate as existing users by only knowing their username.

Root Cause

The root cause lies in the Quarkus WebAuthn module's failure to implement mutual exclusivity between default and custom REST endpoints. When a developer registers custom endpoints for WebAuthn authentication flows, the framework should automatically disable or protect the default endpoints. Instead, both sets of endpoints remain simultaneously active and accessible, creating an alternate authentication path that attackers can abuse.

This design flaw means that any application-specific security measures, such as additional verification steps, rate limiting, or multi-factor authentication implemented in custom endpoints, can be completely bypassed by targeting the default endpoints directly.

Attack Vector

The attack is network-based and requires no authentication or user interaction to execute. An attacker targeting a vulnerable Quarkus application would:

  1. Identify that the application uses the Quarkus WebAuthn module
  2. Enumerate the default WebAuthn REST endpoints that remain exposed
  3. Submit authentication requests directly to the default endpoints, bypassing custom security controls
  4. Obtain a valid session cookie by providing only a username of a legitimate user
  5. Use the obtained cookie to access the application with the privileges of the impersonated user

The attack complexity is low because the default endpoints follow predictable patterns, and no special privileges or credentials are required beyond knowledge of a valid username.

Detection Methods for CVE-2024-12225

Indicators of Compromise

  • Unexpected authentication requests to default WebAuthn endpoints such as /q/webauthn/login or /q/webauthn/register
  • Session cookies issued without corresponding custom endpoint activity in application logs
  • User accounts reporting unauthorized access despite using strong WebAuthn credentials
  • Anomalous login patterns where users appear to authenticate from unfamiliar locations or devices without standard WebAuthn challenge-response sequences

Detection Strategies

  • Implement monitoring for HTTP requests targeting default Quarkus WebAuthn REST endpoints
  • Configure web application firewalls (WAF) to alert on requests to /q/webauthn/* paths if custom endpoints are in use
  • Enable detailed authentication logging to track the source endpoint of all session creation events
  • Deploy SentinelOne Singularity Platform to monitor for suspicious authentication patterns and lateral movement following potential authentication bypass

Monitoring Recommendations

  • Audit all incoming requests to WebAuthn-related endpoints and correlate with expected custom endpoint traffic patterns
  • Set up alerts for session cookie creation events that do not follow the expected custom authentication flow
  • Monitor for high-frequency authentication attempts that may indicate automated exploitation
  • Review application logs for authentication events that lack the expected custom validation markers

How to Mitigate CVE-2024-12225

Immediate Actions Required

  • Review your Quarkus application to determine if the quarkus-security-webauthn module is in use with custom REST endpoints
  • Explicitly disable or restrict access to default WebAuthn endpoints at the application or reverse proxy level
  • Implement network segmentation to limit access to authentication endpoints from untrusted sources
  • Audit authentication logs for any evidence of exploitation via default endpoints

Patch Information

Organizations should consult the Red Hat CVE Advisory for official patch information and guidance. Additional technical details and tracking information are available in the Red Hat Bug Report. Update to the latest patched version of Quarkus as soon as it becomes available and verify that default WebAuthn endpoints are properly secured after patching.

Workarounds

  • Configure explicit access controls to block requests to default WebAuthn endpoints such as /q/webauthn/login and /q/webauthn/register
  • Use a reverse proxy or WAF to filter and deny traffic to default WebAuthn paths
  • Implement IP allowlisting for authentication endpoints if upgrading is not immediately possible
  • Consider temporarily disabling the WebAuthn module entirely if custom authentication alternatives are available
bash
# Example: Block default WebAuthn endpoints using reverse proxy (nginx)
location ~ ^/q/webauthn/ {
    deny all;
    return 403;
}

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechQuarkus

  • SeverityCRITICAL

  • CVSS Score9.1

  • EPSS Probability0.40%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-288
  • Vendor Resources
  • Red Hat CVE Advisory

  • Red Hat Bug Report
  • Related CVEs
  • CVE-2023-4853: Quarkus Auth Bypass Vulnerability

  • CVE-2026-40180: Quarkus OpenAPI Path Traversal Flaw

  • CVE-2025-66560: Quarkus REST DoS Vulnerability

  • CVE-2025-1634: Quarkus RESTEasy 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