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

CVE-2024-2700: Quarkus Information Disclosure Vulnerability

CVE-2024-2700 is an information disclosure vulnerability in Quarkus Core that exposes environment variables captured during build time. This article covers the technical details, affected versions, and mitigation strategies.

Updated: January 22, 2026

CVE-2024-2700 Overview

A significant information exposure vulnerability was discovered in the quarkus-core component that affects how Quarkus applications handle environment variables during the build process. The vulnerability allows local environment variables from the quarkus.* namespace to be captured and embedded into the compiled application, potentially exposing sensitive development or CI/CD configuration values in production deployments.

Critical Impact

Applications built with Quarkus may inherit dangerous development-time configurations such as database reset commands, TLS certificate trust bypass settings, or other security-sensitive properties that were only intended for testing environments.

Affected Products

  • Quarkus Core (quarkus-core component)
  • Red Hat Build of Quarkus
  • Applications using Quarkus framework with .env file configurations

Discovery Timeline

  • April 4, 2024 - CVE-2024-2700 published to NVD
  • December 12, 2024 - Last updated in NVD database

Technical Details for CVE-2024-2700

Vulnerability Analysis

This vulnerability (CWE-526: Cleartext Storage of Sensitive Information in an Environment Variable) stems from Quarkus's build-time configuration capture mechanism. During the application build process, Quarkus captures local environment variables from the quarkus.* namespace and embeds them directly into the compiled application artifact.

The dangerous aspect of this behavior is that the resulting application inherits these captured values at runtime, regardless of the actual production environment configuration. This creates a scenario where development or CI/CD testing configurations—which are often intentionally insecure for convenience—persist into production deployments.

Critically, this behavior only affects configuration properties within the quarkus.* namespace. Application-specific custom properties are not subject to this capture mechanism.

Root Cause

The root cause lies in Quarkus's ahead-of-time compilation optimization strategy. Quarkus captures configuration at build time to enable faster startup and reduced memory footprint through native compilation. However, this design decision inadvertently captures environment variables that may contain sensitive or dangerous configuration values intended only for the build/test environment.

When developers or CI systems set quarkus.* environment variables (or use the .env facility) for testing purposes—such as enabling database drops on startup, trusting all TLS certificates, or bypassing security validations—these values become permanently embedded in the application binary.

Attack Vector

The attack vector requires local access with low privileges. An attacker with access to the built application artifact or runtime environment could exploit this vulnerability in the following ways:

  1. Configuration Extraction: Examining the built application to discover embedded sensitive configurations
  2. Behavior Exploitation: If dangerous configurations like quarkus.datasource.drop-on-startup=true or TLS trust bypass settings are captured, the production application will execute these insecure behaviors
  3. Supply Chain Risk: Build environments that set permissive security configurations for testing could unknowingly propagate these settings to production artifacts

The vulnerability is particularly concerning in CI/CD pipelines where environment variables are commonly used to configure test databases, enable debug modes, or bypass certificate validation for internal services.

Detection Methods for CVE-2024-2700

Indicators of Compromise

  • Unexpected database schema modifications or data deletions in production environments
  • TLS/SSL certificate validation bypasses in production application logs
  • Application behavior inconsistent with production configuration files
  • Presence of development-only quarkus.* configurations in deployed artifacts

Detection Strategies

  • Audit built Quarkus application artifacts for embedded configuration values using decompilation or configuration dump utilities
  • Compare runtime configuration against expected production settings to identify discrepancies
  • Review CI/CD pipeline environment variables for potentially dangerous quarkus.* settings
  • Implement configuration validation checks that verify expected production values at application startup

Monitoring Recommendations

  • Enable verbose logging for Quarkus configuration loading to track active property sources
  • Monitor for unexpected database operations that may indicate captured development configurations
  • Implement runtime configuration auditing to detect mismatches between expected and actual settings
  • Set up alerts for TLS certificate validation failures or bypasses in production environments

How to Mitigate CVE-2024-2700

Immediate Actions Required

  • Review all Quarkus applications for potentially captured dangerous environment variables
  • Rebuild affected applications in clean environments without development/test quarkus.* environment variables
  • Implement explicit configuration overrides in production deployments for security-sensitive properties
  • Audit CI/CD pipelines to ensure dangerous configurations are not set during release builds

Patch Information

Red Hat has released multiple security advisories addressing this vulnerability. Apply the appropriate patches based on your deployment:

  • Red Hat Security Advisory RHSA-2024:2106
  • Red Hat Security Advisory RHSA-2024:2705
  • Red Hat Security Advisory RHSA-2024:3527
  • Red Hat Security Advisory RHSA-2024:4028
  • Red Hat Security Advisory RHSA-2024:4873
  • Red Hat Security Advisory RHSA-2024:11023

For detailed CVE analysis, refer to the Red Hat CVE Analysis for CVE-2024-2700.

Workarounds

  • Use explicit application.properties or application.yaml files for configuration instead of environment variables for sensitive quarkus.* settings
  • Implement a clean build environment policy that prohibits setting dangerous quarkus.* environment variables during release builds
  • Override potentially dangerous captured values with safe defaults using runtime configuration profiles
  • Add build-time validation scripts to detect and fail builds when dangerous environment variables are present
bash
# Configuration example - Explicit production overrides in application.properties
# Place this in src/main/resources/application.properties for production profile
%prod.quarkus.hibernate-orm.database.generation=none
%prod.quarkus.tls.trust-all=false
%prod.quarkus.datasource.jdbc.url=${PROD_DATABASE_URL}

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 Score7.0

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-526
  • Technical References
  • Red Hat Security Advisory RHSA-2024:11023

  • Red Hat Security Advisory RHSA-2024:2106

  • Red Hat Security Advisory RHSA-2024:2705

  • Red Hat Security Advisory RHSA-2024:3527

  • Red Hat Security Advisory RHSA-2024:4028

  • Red Hat Security Advisory RHSA-2024:4873

  • Red Hat CVE Analysis CVE-2024-2700

  • Red Hat Bug Report #2273281
  • Related CVEs
  • CVE-2025-1247: Quarkus REST Information Disclosure Flaw

  • 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