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

CVE-2026-39852: Quarkus Auth Bypass Vulnerability

CVE-2026-39852 is an authentication bypass flaw in Quarkus that exploits path normalization inconsistencies to evade security policies. Attackers can access protected endpoints without authorization. This article covers technical details, affected versions, impact assessment, and available patches.

Published: May 7, 2026

CVE-2026-39852 Overview

CVE-2026-39852 is an authorization bypass vulnerability in Quarkus, a Java framework for building cloud-native applications. The flaw stems from a path normalization inconsistency between the Quarkus security layer and the RESTEasy Reactive routing layer. The security layer evaluates authorization on the raw URL path including matrix parameters, while the routing layer strips matrix parameters before endpoint matching. Attackers can append a semicolon and arbitrary text to a URL such as /api/admin;anything to bypass HTTP path-based authorization policies while still reaching the protected endpoint. The issue is fixed in Quarkus versions 3.20.6.1, 3.27.3.1, 3.33.1.1, 3.35.1.1, 3.34.7, and 3.35.2.

Critical Impact

Unauthenticated or lower-privileged attackers can bypass HTTP authorization policies and reach protected administrative endpoints over the network without user interaction.

Affected Products

  • Quarkus versions prior to 3.20.6.1
  • Quarkus versions prior to 3.27.3.1, 3.33.1.1, 3.35.1.1
  • Quarkus versions prior to 3.34.7 and 3.35.2

Discovery Timeline

  • 2026-05-05 - CVE-2026-39852 published to NVD
  • 2026-05-07 - Last updated in NVD database

Technical Details for CVE-2026-39852

Vulnerability Analysis

The vulnerability is classified under [CWE-863] Incorrect Authorization. Quarkus enforces HTTP path-based authorization policies before requests reach the routing layer. The security layer inspects the raw request URI, retaining matrix parameters introduced by semicolons. RESTEasy Reactive then performs route matching on a normalized path that strips those matrix parameters. This mismatch creates a parser differential between two trust boundaries within the same request pipeline.

An attacker who knows the path of a protected endpoint can craft a URL that the security layer treats as a different, unprotected resource. The routing layer then dispatches the request to the original protected handler. The result is direct, unauthenticated access to functionality that the application owner intended to restrict.

Root Cause

The root cause is divergent URL parsing semantics across two components in the request handling chain. The security filter compares the unnormalized path against configured policies such as those protecting /api/admin. The router applies RFC 3986 matrix parameter stripping before endpoint dispatch. A request to /api/admin;anything therefore evaluates as not matching the protected pattern at the policy layer but matches the admin handler at the routing layer.

Attack Vector

Exploitation requires only network access to the vulnerable application and a single crafted HTTP request. The attacker appends a semicolon followed by arbitrary characters to the path segment of any protected URL. No authentication, privileges, or user interaction are required. Detailed technical analysis is available in the Quarkus GitHub Security Advisory GHSA-rc95-pcm8-65v9.

Detection Methods for CVE-2026-39852

Indicators of Compromise

  • HTTP request log entries containing semicolons within path segments targeting protected routes, for example /api/admin;x or /management;test.
  • Successful HTTP 200 responses to administrative endpoints from clients that have not completed authentication or lack expected role claims.
  • Unexpected access to RESTEasy Reactive endpoints originating from external IP addresses outside normal administrative source ranges.

Detection Strategies

  • Inspect access logs and reverse-proxy logs for path components containing the ; character, especially preceding sensitive routes.
  • Correlate authentication audit events with handler invocation logs to identify cases where a protected handler executed without a corresponding successful authorization decision.
  • Deploy WAF or API gateway rules that flag or reject requests where matrix parameters appear in path segments associated with administrative APIs.

Monitoring Recommendations

  • Forward Quarkus application and access logs into a centralized analytics platform and alert on semicolon characters in path segments targeting non-public endpoints.
  • Track baseline access patterns for administrative routes and alert on anomalous request volumes or unauthenticated source identities.
  • Monitor for elevated 4xx-to-2xx ratio shifts on admin paths, which may indicate probing followed by successful bypass.

How to Mitigate CVE-2026-39852

Immediate Actions Required

  • Upgrade Quarkus to one of the fixed versions: 3.20.6.1, 3.27.3.1, 3.33.1.1, 3.35.1.1, 3.34.7, or 3.35.2, selecting the release line aligned with your current deployment.
  • Audit application access logs for historical requests containing semicolons in path segments targeting protected endpoints to identify possible prior exploitation.
  • Review and tighten HTTP authorization policy definitions to confirm coverage of all sensitive routes after upgrade.

Patch Information

The Quarkus maintainers released fixes in versions 3.20.6.1, 3.27.3.1, 3.33.1.1, 3.35.1.1, 3.34.7, and 3.35.2. The corrections align path normalization between the security layer and RESTEasy Reactive routing so that matrix parameters are handled consistently during authorization evaluation. See the Quarkus GitHub Security Advisory GHSA-rc95-pcm8-65v9 for the official remediation notice.

Workarounds

  • Place a reverse proxy or API gateway in front of Quarkus and configure it to reject or normalize requests whose path segments contain ; characters before forwarding.
  • Implement role-based authorization checks within handler methods using annotations such as @RolesAllowed rather than relying solely on HTTP path-based policies.
  • Restrict network exposure of administrative endpoints to trusted internal networks until the patched version is deployed.
bash
# Example NGINX rule to block matrix parameters on admin paths until patched
location ~* "^/api/admin.*;" {
    return 400;
}

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

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/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-863
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-42333: Quarkus OpenAPI 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