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

CVE-2026-42333: Quarkus OpenAPI Auth Bypass Vulnerability

CVE-2026-42333 is an authentication bypass flaw in Quarkus OpenAPI Generator that causes credentials to be sent to unintended endpoints. This article covers the technical details, affected versions, impact, and mitigation.

Published: May 18, 2026

CVE-2026-42333 Overview

CVE-2026-42333 affects the Quarkus OpenAPI Generator, a Quarkus extension that generates REST clients and server stubs from OpenAPI specifications. The generated authentication filter matches OpenAPI path templates too broadly when deciding whether to attach credentials. A security scheme configured for one operation can be applied to a different same-method operation whose path only partially resembles the protected template. This causes bearer tokens, API keys, or basic credentials to be transmitted to unintended endpoints. The flaw is classified under [CWE-200] (Exposure of Sensitive Information to an Unauthorized Actor). Maintainers have patched the issue in versions 2.11.1-lts, 2.16.0-lts, and 2.17.0.

Critical Impact

Authentication credentials including bearer tokens, API keys, and basic credentials may be sent to unintended REST endpoints, enabling credential leakage to third-party services.

Affected Products

  • Quarkus OpenAPI Generator versions prior to 2.11.1-lts
  • Quarkus OpenAPI Generator versions prior to 2.16.0-lts
  • Quarkus OpenAPI Generator versions prior to 2.17.0

Discovery Timeline

  • 2026-05-09 - CVE-2026-42333 published to NVD
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-42333

Vulnerability Analysis

The Quarkus OpenAPI Generator produces REST client code from OpenAPI specifications, including authentication filters that attach configured credentials to outgoing requests. The generated filter logic determines which security scheme applies to a given request by matching the request path against OpenAPI path templates. The matching algorithm performs substring or prefix-style comparisons rather than strict template equivalence. As a result, the filter associates credentials with operations whose paths only partially resemble the originally protected template.

When multiple operations share the same HTTP method and have structurally similar paths, the filter cannot reliably distinguish between them. Credentials intended for a single protected operation are attached to other operations that should not receive them. The exposure surface depends on the API definition and the third-party endpoints invoked by the generated client.

Root Cause

The root cause is improper template matching logic in the generated authentication filter. The matcher treats OpenAPI path templates as loose patterns instead of distinct identifiers tied to specific operations. The filter does not bind each security scheme strictly to its declared operation, causing credentials to bleed across operations sharing the same method.

Attack Vector

Exploitation does not require active attacker interaction. Any application built with a vulnerable version of the generator and an OpenAPI specification containing same-method operations with overlapping path structures may transmit credentials to unintended endpoints. A malicious or compromised third-party API endpoint reachable through the generated client would receive credentials intended for a different protected operation. The vulnerability is network-reachable but depends on the structure of the OpenAPI specification consumed by the generator.

The technical fix is documented in the Quarkus OpenAPI Generator Pull Request #1586 and the GitHub Security Advisory GHSA-fr8f-rwjx-f32v.

Detection Methods for CVE-2026-42333

Indicators of Compromise

  • Outbound HTTP requests from Quarkus applications carrying Authorization headers, API key headers, or basic credentials to endpoints not declared as protected in the source OpenAPI specification.
  • Generated client classes from quarkus-openapi-generator referencing an AuthenticationFilter or AuthenticationPropagationFilter with version metadata prior to 2.11.1-lts, 2.16.0-lts, or 2.17.0.
  • Unexpected 401 or 403 responses from external services receiving credentials that do not belong to them.

Detection Strategies

  • Inventory all Quarkus projects and identify the version of io.quarkiverse.openapi.generator:quarkus-openapi-generator declared in pom.xml or build.gradle.
  • Audit OpenAPI specifications consumed by the generator for operations sharing the same HTTP method and structurally similar paths, where only some are protected by a security scheme.
  • Inspect outbound traffic from generated REST clients and verify that credentials are only attached to operations explicitly declared as secured.

Monitoring Recommendations

  • Capture egress traffic from Quarkus services and alert on Authorization headers sent to hostnames or paths outside the documented secured set.
  • Track build-time dependency reports for quarkus-openapi-generator versions and fail builds that resolve to vulnerable releases.
  • Forward application logs and outbound HTTP telemetry to a centralized data lake for correlation against the published advisory.

How to Mitigate CVE-2026-42333

Immediate Actions Required

  • Upgrade quarkus-openapi-generator to 2.11.1-lts, 2.16.0-lts, or 2.17.0 depending on the supported branch.
  • Rotate any bearer tokens, API keys, and basic credentials that may have been transmitted by generated clients prior to patching.
  • Regenerate all REST clients and server stubs from OpenAPI specifications after upgrading the generator.
  • Review OpenAPI specifications for operations with overlapping path structures and confirm each security scheme is bound to the intended operation.

Patch Information

Maintainers released fixes in Quarkus OpenAPI Generator 2.11.1-lts, Quarkus OpenAPI Generator 2.16.0-lts, and Quarkus OpenAPI Generator 2.17.0. The corresponding code change is in Pull Request #1586, and the advisory is published as GHSA-fr8f-rwjx-f32v.

Workarounds

  • Restrict outbound network access from Quarkus applications to only the explicit set of hostnames and paths required by the secured operations.
  • Manually edit generated authentication filters to enforce strict equality between the request operation and the configured security scheme until the upgrade is applied.
  • Split OpenAPI specifications so that secured operations do not share HTTP methods with structurally similar unsecured operations.
bash
# Update the dependency version in Maven pom.xml
mvn versions:set-property \
  -Dproperty=quarkus-openapi-generator.version \
  -DnewVersion=2.17.0

# Regenerate clients and rebuild
mvn clean package

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

  • SeverityMEDIUM

  • CVSS Score6.3

  • EPSS Probability0.10%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:L/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-200
  • Technical References
  • GitHub Pull Request

  • GitHub Release 2.11.1-lts

  • GitHub Release 2.16.0-lts

  • GitHub Release 2.17.0

  • GitHub Security Advisory GHSA-fr8f-rwjx-f32v
  • Related CVEs
  • CVE-2026-39852: Quarkus Auth Bypass Vulnerability

  • CVE-2024-12225: Quarkus WebAuthn Auth Bypass Vulnerability

  • CVE-2023-4853: Quarkus Auth Bypass Vulnerability

  • CVE-2026-40180: Quarkus OpenAPI Path Traversal Flaw
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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