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-2020-25633

CVE-2020-25633: RESTEasy Information Disclosure Flaw

CVE-2020-25633 is an information disclosure flaw in RESTEasy client that exposes sensitive server information through WebApplicationException responses. This article covers technical details, affected versions, and mitigation.

Published: March 4, 2026

CVE-2020-25633 Overview

A flaw was found in the RESTEasy client in all versions of RESTEasy up to 4.5.6.Final. This vulnerability allows client users to obtain the server's potentially sensitive information when the server receives a WebApplicationException from the RESTEasy client call. The vulnerability is classified as CWE-209 (Generation of Error Message Containing Sensitive Information), making it an Information Disclosure vulnerability that impacts data confidentiality.

Critical Impact

Server-side sensitive information may be exposed to client users through improperly handled WebApplicationException error messages, potentially revealing internal system details, configuration information, or other confidential data.

Affected Products

  • Red Hat RESTEasy (all versions up to 4.5.6.Final)
  • Quarkus (versions using vulnerable RESTEasy)
  • Applications built on RESTEasy client framework

Discovery Timeline

  • 2020-09-18 - CVE-2020-25633 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2020-25633

Vulnerability Analysis

This vulnerability exists in the RESTEasy client's exception handling mechanism. When a WebApplicationException is thrown during a RESTEasy client call, the error handling logic may inadvertently include sensitive server-side information in the response that gets transmitted back to the client.

The flaw stems from improper information filtering in error messages. The RESTEasy framework, which is a JAX-RS implementation used for building RESTful web services in Java, fails to properly sanitize exception details before they are returned to the calling client. This allows potentially sensitive server information—such as stack traces, internal paths, configuration details, or other debug information—to leak through exception responses.

The vulnerability can be exploited remotely over the network without requiring authentication or user interaction, making it accessible to any network-adjacent attacker who can trigger the vulnerable code path.

Root Cause

The root cause is CWE-209: Generation of Error Message Containing Sensitive Information. The RESTEasy client does not properly filter or sanitize the content of WebApplicationException objects before exposing error details to client applications. When the server encounters an error condition and throws this exception type, the full exception context—which may contain sensitive internal details—is transmitted to the client without adequate sanitization.

Attack Vector

The attack vector is network-based. An attacker can exploit this vulnerability by:

  1. Making RESTEasy client calls that trigger error conditions on the server
  2. Capturing the WebApplicationException responses returned to the client
  3. Analyzing the error messages for sensitive information such as internal server paths, configuration details, stack traces, or other confidential data

This information disclosure can be leveraged for reconnaissance to plan more sophisticated attacks against the target system.

The vulnerability requires no special privileges or user interaction to exploit—an attacker simply needs network access to interact with the affected RESTEasy client application.

Detection Methods for CVE-2020-25633

Indicators of Compromise

  • Unusual patterns of client requests that intentionally trigger error conditions
  • Elevated frequency of WebApplicationException occurrences in application logs
  • Client applications receiving verbose error responses containing internal server details
  • Log entries showing sensitive information being included in exception responses

Detection Strategies

  • Monitor RESTEasy client application logs for WebApplicationException occurrences and review the content being returned
  • Implement application-level logging to track when detailed error messages are being transmitted to clients
  • Use network monitoring tools to inspect HTTP responses for potentially sensitive information in error payloads
  • Conduct code reviews to identify locations where WebApplicationException handling may expose sensitive data

Monitoring Recommendations

  • Enable detailed logging for RESTEasy client exception handling to track error message content
  • Implement alerting on unusual patterns of error responses from RESTEasy-based services
  • Regularly audit application logs for inadvertent information disclosure in error messages
  • Deploy application performance monitoring (APM) tools to track exception handling behavior

How to Mitigate CVE-2020-25633

Immediate Actions Required

  • Upgrade RESTEasy to a patched version beyond 4.5.6.Final
  • Review and sanitize custom exception handlers to prevent sensitive information leakage
  • Implement application-level filtering of error message content before client transmission
  • Configure RESTEasy to use generic error messages in production environments

Patch Information

Red Hat has addressed this vulnerability in RESTEasy versions released after 4.5.6.Final. Organizations should upgrade to the latest stable release of RESTEasy to remediate this vulnerability. For detailed patch information and guidance, refer to the Red Hat Bug Report CVE-2020-25633.

For Quarkus users, ensure you are using a version that includes the patched RESTEasy dependency.

Workarounds

  • Implement custom exception mappers that filter sensitive information from WebApplicationException responses
  • Configure application servers to suppress detailed error messages in production environments
  • Use a reverse proxy or API gateway to filter and sanitize error responses before they reach clients
  • Add exception handling wrappers around RESTEasy client calls to intercept and sanitize error details
bash
# Configuration example - Verify RESTEasy version in Maven projects
# Check pom.xml for RESTEasy dependency version
grep -r "resteasy" pom.xml | grep -i version

# Update RESTEasy to patched version in pom.xml
# Ensure version is higher than 4.5.6.Final
# Example Maven dependency update:
# <dependency>
#     <groupId>org.jboss.resteasy</groupId>
#     <artifactId>resteasy-client</artifactId>
#     <version>4.6.0.Final</version>
# </dependency>

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechRedhat Resteasy

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.28%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-209
  • Vendor Resources
  • Red Hat Bug Report CVE-2020-25633
  • Related CVEs
  • CVE-2023-0482: Redhat Resteasy Information Disclosure
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