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
    • 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-2025-1247

CVE-2025-1247: Quarkus REST Information Disclosure Flaw

CVE-2025-1247 is an information disclosure vulnerability in Quarkus REST that causes request parameter leakage between concurrent requests. Attackers can manipulate data or access sensitive information. This article covers technical details, affected versions, impact, and mitigation strategies.

Updated: January 22, 2026

CVE-2025-1247 Overview

A critical vulnerability has been identified in Quarkus REST that allows request parameters to leak between concurrent requests when endpoints use field injection without a proper CDI (Contexts and Dependency Injection) scope. This flaw, classified under CWE-488 (Exposure of Data Element to Wrong Session), enables attackers to manipulate request data, impersonate users, or gain unauthorized access to sensitive information processed by vulnerable Quarkus REST applications.

The vulnerability stems from improper session handling in the Quarkus REST framework, where field-injected request parameters may persist and leak across different user sessions during concurrent request processing. This creates a race condition scenario where one user's request data becomes accessible to another user's session.

Critical Impact

Attackers can exploit this vulnerability to manipulate request data, impersonate legitimate users, or access sensitive information belonging to other users through concurrent request parameter leakage.

Affected Products

  • Quarkus REST (versions prior to patched releases)
  • Red Hat build of Quarkus (see RHSA-2025:1884, RHSA-2025:1885, RHSA-2025:2067)
  • Applications using field injection without CDI scope in REST endpoints

Discovery Timeline

  • February 13, 2025 - CVE-2025-1247 published to NVD
  • March 3, 2025 - Last updated in NVD database

Technical Details for CVE-2025-1247

Vulnerability Analysis

The vulnerability exists in how Quarkus REST handles field injection for request parameters when endpoints are implemented without specifying a CDI scope. In Java EE and Jakarta EE applications, CDI scopes such as @RequestScoped, @SessionScoped, or @ApplicationScoped define the lifecycle and visibility of managed beans. When a REST endpoint uses field injection (via @Inject or parameter annotations like @QueryParam, @PathParam) without declaring an appropriate scope, the framework may reuse bean instances across multiple concurrent requests.

This architectural flaw creates a window where request parameters from one user's HTTP request can be read by another user's concurrent request handler. The attack surface is particularly dangerous in high-concurrency environments where multiple users interact with the same REST endpoints simultaneously.

Root Cause

The root cause is classified as CWE-488: Exposure of Data Element to Wrong Session. When Quarkus REST endpoints use field injection without an explicit CDI scope annotation, the injected field values are not properly isolated between concurrent requests. The framework fails to properly scope the lifecycle of injected request parameters, allowing data from one session to leak into another session's execution context.

This occurs because without a CDI scope, the endpoint class may be treated as a singleton or use an improper default scope, causing field values to be shared across request threads rather than being isolated per-request.

Attack Vector

The attack exploits the network-accessible REST endpoints with relatively low complexity requirements. An authenticated attacker with low privileges can send carefully timed concurrent requests to vulnerable endpoints. Due to the field injection leak, the attacker's request may receive parameter values intended for another user's request, or conversely, the attacker's malicious parameters may be processed in another user's security context.

The exploitation scenario involves an attacker identifying REST endpoints that use field injection without proper CDI scoping. By sending concurrent requests with specific timing, the attacker can cause their injected parameters to leak into another user's request processing, potentially allowing:

  • Access to sensitive data from other users' requests
  • Impersonation by having their session process another user's authentication context
  • Data manipulation by injecting parameters into another user's transaction

Detection Methods for CVE-2025-1247

Indicators of Compromise

  • Unexpected parameter values appearing in application logs during request processing
  • Users reporting seeing other users' data intermittently in application responses
  • Inconsistent request behavior that varies based on server load and concurrency levels
  • Authentication or authorization anomalies where actions are attributed to wrong users

Detection Strategies

  • Review application code for REST endpoints using field injection (@Inject, @QueryParam, @PathParam, @HeaderParam) without CDI scope annotations (@RequestScoped, @Dependent)
  • Monitor application logs for parameter value inconsistencies across concurrent requests
  • Implement request correlation IDs and audit trails to detect cross-session data access
  • Deploy application security testing tools to identify endpoints vulnerable to session data leakage

Monitoring Recommendations

  • Enable detailed request logging including correlation IDs to track parameter values across the request lifecycle
  • Implement anomaly detection for user behavior patterns that indicate session mixing or data leakage
  • Monitor concurrent request metrics and correlate spikes with data integrity issues
  • Establish baseline request patterns and alert on deviations that may indicate exploitation attempts

How to Mitigate CVE-2025-1247

Immediate Actions Required

  • Apply the latest security patches from Red Hat advisories RHSA-2025:1884, RHSA-2025:1885, and RHSA-2025:2067
  • Audit all Quarkus REST endpoints for field injection usage without CDI scope declarations
  • Add @RequestScoped or @Dependent annotations to all REST resource classes using field injection
  • Review and test all REST endpoints under concurrent load conditions to verify parameter isolation

Patch Information

Red Hat has released security advisories addressing this vulnerability. Organizations using Quarkus REST should apply the patches referenced in the following advisories:

  • RHSA-2025:1884 - Red Hat build of Quarkus security update
  • RHSA-2025:1885 - Red Hat build of Quarkus security update
  • RHSA-2025:2067 - Red Hat build of Quarkus security update

Additional details are available in Red Hat Bug Report #2345172 and the Red Hat CVE Details page.

Workarounds

  • Add explicit @RequestScoped annotation to all REST resource classes that use field injection to ensure proper request isolation
  • Refactor REST endpoints to use constructor injection or method parameter injection instead of field injection where possible
  • Implement request-scoped wrapper services for handling sensitive request parameters
  • Consider using @Dependent scope for stateless REST resources that require per-injection instance creation
bash
# Example: Adding RequestScoped annotation to REST endpoints
# Review all REST resource files and ensure proper CDI scope
grep -r "@Path" src/main/java --include="*.java" | \
  xargs -I {} grep -L "@RequestScoped\|@Dependent" {} | \
  while read file; do
    echo "WARNING: $file may need CDI scope annotation"
  done

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechQuarkus

  • SeverityHIGH

  • CVSS Score8.3

  • EPSS Probability0.10%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-488
  • Technical References
  • Red Hat Security Advisory RHSA-2025:1884

  • Red Hat Security Advisory RHSA-2025:1885

  • Red Hat Security Advisory RHSA-2025:2067

  • Red Hat CVE Details CVE-2025-1247

  • Red Hat Bug Report #2345172
  • Related CVEs
  • CVE-2024-2700: Quarkus Information Disclosure Vulnerability

  • CVE-2025-66560: Quarkus REST DoS Vulnerability

  • CVE-2025-1634: Quarkus RESTEasy DoS Vulnerability

  • CVE-2023-4853: Quarkus Auth Bypass Vulnerability
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