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

CVE-2025-53192: Apache Commons OGNL RCE Vulnerability

CVE-2025-53192 is a remote code execution flaw in Apache Commons OGNL that allows attackers to bypass blocklist restrictions and execute arbitrary code. This article covers technical details, affected versions, and mitigations.

Published: April 1, 2026

CVE-2025-53192 Overview

CVE-2025-53192 is an Improper Neutralization of Expression/Command Delimiters vulnerability in Apache Commons OGNL (Object-Graph Navigation Language). This vulnerability affects all versions of Apache Commons OGNL and is classified as UNSUPPORTED WHEN ASSIGNED, meaning the affected software has been retired and no official patches will be released.

When using the Ognl.getValue() API, the OGNL engine parses and evaluates the provided expression with powerful capabilities, including the ability to access and invoke arbitrary methods. Although OgnlRuntime attempts to restrict certain dangerous classes and methods (such as java.lang.Runtime) through a blocklist, these restrictions are not comprehensive. Attackers may be able to bypass the blocklist restrictions by leveraging class objects that are not covered and potentially achieve arbitrary code execution.

Critical Impact

This vulnerability allows remote attackers to potentially execute arbitrary code by bypassing blocklist restrictions in Apache Commons OGNL. Since the project is retired with no planned fixes, organizations must migrate to alternative solutions or implement strict access controls.

Affected Products

  • Apache Commons OGNL (all versions)

Discovery Timeline

  • 2025-08-18 - CVE-2025-53192 published to NVD
  • 2025-11-04 - Last updated in NVD database

Technical Details for CVE-2025-53192

Vulnerability Analysis

The vulnerability exists in Apache Commons OGNL's expression evaluation mechanism. OGNL is a powerful expression language for getting and setting properties of Java objects. The Ognl.getValue() method processes user-supplied expressions and evaluates them within the context of the running application. While the library implements blocklist-based protections through OgnlRuntime to prevent access to dangerous classes like java.lang.Runtime, the blocklist approach is inherently incomplete.

The fundamental issue is that blocklist-based security is a losing battle against attackers who can discover alternative code paths to achieve the same malicious objectives. The OGNL expression language provides extensive access to Java's reflection capabilities, allowing attackers to invoke methods, instantiate objects, and traverse object graphs in ways that may not have been anticipated by the blocklist designers.

Root Cause

The root cause of this vulnerability is the reliance on a blocklist-based security model within OgnlRuntime to restrict access to dangerous classes and methods. This approach fails because:

  1. The blocklist cannot anticipate all possible dangerous classes and methods in the Java ecosystem
  2. Attackers can chain together multiple benign operations to achieve malicious outcomes
  3. Third-party libraries on the classpath may expose additional attack surfaces not covered by the blocklist
  4. Java's extensive reflection capabilities provide multiple paths to achieve code execution

The CWE-146 classification (Improper Neutralization of Expression/Command Delimiters) accurately describes how the vulnerability allows malicious expressions to be interpreted as commands rather than data.

Attack Vector

The attack vector is network-based, requiring user interaction. An attacker can exploit this vulnerability by crafting malicious OGNL expressions that bypass the blocklist restrictions implemented in OgnlRuntime. When these expressions are processed by the Ognl.getValue() method, they can leverage class objects not covered by the blocklist to invoke dangerous methods or instantiate malicious objects.

The exploitation typically involves identifying classes present on the application's classpath that provide indirect access to system resources, reflection utilities, or scripting engines. By chaining method calls through these classes, attackers can bypass direct restrictions on classes like java.lang.Runtime while still achieving arbitrary code execution.

Since this vulnerability exists within a retired library component, the attack surface includes any application still using Apache Commons OGNL for expression evaluation, particularly those that process untrusted user input.

Detection Methods for CVE-2025-53192

Indicators of Compromise

  • Unusual OGNL expression patterns in application logs, particularly those referencing reflection APIs, ClassLoader, or scripting engines
  • Unexpected process spawning or outbound network connections from Java applications using OGNL
  • Error messages indicating failed attempts to access restricted classes or methods through OGNL evaluation
  • Evidence of class loading or instantiation of uncommon utility classes through expression evaluation

Detection Strategies

  • Monitor application logs for suspicious OGNL expression evaluation attempts containing reflection-related classes
  • Implement runtime application self-protection (RASP) to detect and block malicious expression injection attempts
  • Use static application security testing (SAST) tools to identify usage of Ognl.getValue() with untrusted input
  • Deploy web application firewalls (WAF) configured to detect OGNL injection patterns in request parameters

Monitoring Recommendations

  • Enable verbose logging for OGNL expression evaluation in development and staging environments
  • Set up alerts for any OGNL-related exceptions or errors in production logs
  • Conduct regular dependency audits to identify applications still using Apache Commons OGNL
  • Implement network monitoring to detect anomalous behavior from Java applications processing user expressions

How to Mitigate CVE-2025-53192

Immediate Actions Required

  • Inventory all applications using Apache Commons OGNL and assess their exposure to untrusted input
  • Restrict access to applications using OGNL expression evaluation to trusted users only
  • Evaluate and migrate to alternative expression languages with better security models
  • Implement strict input validation on any data that may be processed as OGNL expressions

Patch Information

No official patch will be released. Apache has retired the Commons OGNL project, and no fixed version is planned. According to the Apache Security Mailing List Thread, users are recommended to find an alternative expression language or restrict access to OGNL functionality to trusted users only.

The Openwall OSS-Security Discussion provides additional context on the vulnerability disclosure.

Workarounds

  • Migrate away from Apache Commons OGNL to actively maintained expression language libraries with robust security controls
  • Implement allowlist-based validation for any expressions that must be evaluated, permitting only known-safe patterns
  • Deploy applications using OGNL behind authentication and authorization controls to limit exposure to trusted users
  • Consider sandboxing or containerization to limit the impact of potential exploitation
  • Remove OGNL dependencies entirely from applications that do not require expression evaluation functionality
bash
# Configuration example: Check for OGNL dependency in Maven projects
mvn dependency:tree | grep -i ognl

# Remove unused OGNL dependency from pom.xml
# Or add exclusion to parent dependencies that transitively include OGNL

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechApache

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-146
  • Technical References
  • Apache Security Mailing List Thread

  • Openwall OSS-Security Discussion
  • Related CVEs
  • CVE-2016-15057: Apache Continuum RCE Vulnerability

  • CVE-2025-67895: Apache Airflow Edge3 Provider RCE Flaw

  • CVE-2025-58098: Apache HTTP Server SSI RCE Vulnerability

  • CVE-2023-26512: Apache EventMesh RabbitMQ RCE 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