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

CVE-2020-11998: Apache ActiveMQ RCE Vulnerability

CVE-2020-11998 is a remote code execution flaw in Apache ActiveMQ caused by a JMX authentication regression. Attackers can execute arbitrary code via malicious MBeans. This article covers technical details, impact, and mitigation.

Updated: May 16, 2026

CVE-2020-11998 Overview

CVE-2020-11998 is a critical vulnerability in Apache ActiveMQ 5.15.12 caused by a regression in the commit intended to prevent Java Management Extensions (JMX) re-bind attacks. The fix passed an empty environment map to RMIConnectorServer instead of the map containing authentication credentials. This leaves the JMX endpoint unauthenticated, allowing remote clients to interact with the broker's management interface. An attacker can create a javax.management.loading.MLet MBean and use it to load arbitrary MBeans from attacker-controlled URLs. When no Java security manager is configured, this results in arbitrary code execution on the host running ActiveMQ.

Critical Impact

Unauthenticated remote attackers can execute arbitrary Java code on vulnerable ActiveMQ brokers by abusing the exposed JMX interface to load malicious MBeans.

Affected Products

  • Apache ActiveMQ 5.15.12
  • Oracle Communications Diameter Signaling Router, Element Manager, Session Report Manager, and Session Route Manager
  • Oracle Enterprise Repository 11.1.1.7.0 and Oracle FLEXCUBE Private Banking 12.0.0 / 12.1.0

Discovery Timeline

  • 2020-09-10 - CVE-2020-11998 published to the National Vulnerability Database (NVD)
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2020-11998

Vulnerability Analysis

Apache ActiveMQ exposes a JMX-based management interface over Remote Method Invocation (RMI). A prior fix attempted to harden this interface against re-bind attacks by enforcing authentication via the environment map passed to RMIConnectorServer. The regression introduced in version 5.15.12 replaced that authenticated map with an empty environment map. The change disables credential checks on the JMX connector while still leaving the RMI registry reachable. Any client that can connect to the JMX port can register MBeans and invoke management operations without supplying credentials.

Root Cause

The root cause is an incorrect parameter passed to the RMIConnectorServer constructor inside the JMX bootstrapping path. The empty Map replaces the structure that previously held jmx.remote.authenticator and credential entries. Without those entries, the connector accepts any incoming JMX session. The vulnerability is tracked under [CWE-NVD-noinfo] in the NVD record because the upstream advisory does not map it to a more specific weakness class.

Attack Vector

An unauthenticated attacker reaches the JMX RMI port over the network. The attacker creates a javax.management.loading.MLet MBean and points it at an attacker-hosted MLet text file. The MLet loader downloads the referenced JAR and registers attacker-supplied MBeans inside the running JVM. Invoking a method on the loaded MBean executes arbitrary Java code with the privileges of the ActiveMQ broker process. Refer to the Apache ActiveMQ CVE-2020-11998 Advisory and the Oracle MLet documentation referenced in the advisory for the protocol-level details.

Detection Methods for CVE-2020-11998

Indicators of Compromise

  • Outbound HTTP or HTTPS requests from the ActiveMQ broker JVM to unfamiliar hosts retrieving .mlet text files or arbitrary JAR archives.
  • New child processes spawned by the ActiveMQ JVM, particularly shells, curl, wget, or scripting interpreters.
  • Unexpected MBeans registered under the broker's MBeanServer, especially classes derived from javax.management.loading.MLet.
  • Inbound RMI traffic to the JMX port from non-administrative source addresses.

Detection Strategies

  • Inventory ActiveMQ deployments and flag any host running version 5.15.12, which is the only Apache release affected.
  • Inspect broker startup arguments and configuration for the absence of com.sun.management.jmxremote.authenticate=true and missing access/password files.
  • Capture and review JMX RMI session logs for connections that succeed without credential exchange.
  • Run authenticated vulnerability scans against affected Oracle Communications and FLEXCUBE products using vendor signatures published in the Oracle Critical Patch Updates.

Monitoring Recommendations

  • Monitor the JMX RMI port for connections originating outside the management subnet and alert on any anomalous source.
  • Forward JVM and broker logs to a centralized analytics platform and correlate MBean registration events with outbound network activity.
  • Track process lineage from the ActiveMQ JVM to identify post-exploitation behavior such as reverse shells or credential dumping.

How to Mitigate CVE-2020-11998

Immediate Actions Required

  • Upgrade Apache ActiveMQ to version 5.15.13 or later, which restores authentication on the JMX connector.
  • Apply the relevant Oracle Critical Patch Update for Communications Diameter Signaling Router, Element Manager, Session Report Manager, Session Route Manager, Enterprise Repository, and FLEXCUBE Private Banking.
  • Restrict network access to the JMX RMI port using host firewalls or network access control lists, exposing it only to trusted administrative hosts.
  • Audit broker configuration to confirm that jmx.remote.authenticator and credential files are correctly defined after the upgrade.

Patch Information

Apache released the fix in ActiveMQ 5.15.13. Details are documented in the Apache ActiveMQ CVE-2020-11998 Advisory and the corresponding commit threads on the Apache commits mailing list. Oracle distributed product-specific fixes in the January 2021, April 2021, July 2021, and October 2021 Critical Patch Updates.

Workarounds

  • Disable remote JMX entirely by removing com.sun.management.jmxremote.port from the broker's JVM arguments if remote management is not required.
  • Bind the JMX listener to 127.0.0.1 and require administrators to connect through an SSH tunnel.
  • Enforce a Java SecurityManager policy that denies createClassLoader and getClassLoader permissions, preventing MLet from loading remote classes.
  • Place the broker behind a network segment that blocks inbound RMI traffic from untrusted zones until patching is complete.
bash
# Configuration example: enforce JMX authentication and SSL in ACTIVEMQ_OPTS
export ACTIVEMQ_SUNJMX_START="-Dcom.sun.management.jmxremote.port=1099 \
  -Dcom.sun.management.jmxremote.authenticate=true \
  -Dcom.sun.management.jmxremote.ssl=true \
  -Dcom.sun.management.jmxremote.password.file=${ACTIVEMQ_CONF}/jmx.password \
  -Dcom.sun.management.jmxremote.access.file=${ACTIVEMQ_CONF}/jmx.access"

# Restrict access at the host firewall (example for iptables)
iptables -A INPUT -p tcp --dport 1099 -s 10.0.0.0/24 -j ACCEPT
iptables -A INPUT -p tcp --dport 1099 -j DROP

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechApache Activemq

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability6.91%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • NVD-CWE-noinfo
  • Technical References
  • Apache ActiveMQ Commit Discussion

  • Apache ActiveMQ Commit Discussion

  • Oracle January 2021 Critical Patch
  • Vendor Resources
  • Apache ActiveMQ CVE-2020-11998 Advisory

  • Oracle July 2021 Critical Patch

  • Oracle April 2021 Critical Patch

  • Oracle October 2021 Critical Patch
  • Related CVEs
  • CVE-2026-41044: Apache ActiveMQ RCE Vulnerability

  • CVE-2026-40466: Apache ActiveMQ RCE Vulnerability

  • CVE-2026-34197: Apache ActiveMQ RCE Vulnerability

  • CVE-2025-54539: Apache ActiveMQ NMS AMQP RCE Vulnerability
Default Legacy - Prefooter | 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