CVE-2013-0431
CVE-2013-0431 is a medium-severity vulnerability in Oracle Jre with a CVSS 3.x base score of 5.3. It is listed in CISA's Known Exploited Vulnerabilities (KEV) catalog, confirming it has been exploited in the wild (added 2022-05-25). The underlying weakness is classified as CWE-693.
Key facts
- Severity: Medium (CVSS 3.x base score 5.3)
- CVSS v2: 5.0
- EPSS exploit prediction: 90% (100th percentile)
- Actively exploited: Yes — listed in CISA KEV (added 2022-05-25)
- EU (EUVD) id: EUVD-2013-0442
- EU exploitation: Flagged exploited in the ENISA EU Vulnerability Database (since 2022-05-25)
- Weakness: CWE-693
- Affected product: Oracle Jre
- Published:
- Last modified:
Description
Unspecified vulnerability in the Java Runtime Environment (JRE) component in Oracle Java SE 7 through Update 11, and OpenJDK 7, allows user-assisted remote attackers to bypass the Java security sandbox via unspecified vectors related to JMX, aka "Issue 52," a different vulnerability than CVE-2013-1490.
CVE-2013-0431: Java JMX Sandbox Bypass in Oracle Java SE 7 and OpenJDK 7
AI-generated analysis based on the vulnerability data on this page.
| Field | Value |
|---|---|
| CVE | CVE-2013-0431 |
| Published | 2013-01-31 |
| CVSS v2 | 5.0 (AV:N/AC:L/Au:N/C:N/I:P/A:N) |
| CVSS v3 | 5.3 (CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N) |
| CWE | CWE-693 — Protection Mechanism Failure |
| EPSS | 0.89987 (99.78th percentile) |
| KEV | Yes — added 2022-05-25 |
| CISA KEV | Yes — listed in the Known Exploited Vulnerabilities Catalog |
Summary
CVE-2013-0431 is an unspecified vulnerability in the Java Management Extensions (JMX) component of Oracle Java SE 7 (through Update 11) and OpenJDK 7. The flaw allows a user-assisted remote attacker to bypass the Java security sandbox via unspecified vectors related to JMX, potentially leading to unauthorized code execution with elevated privileges. This vulnerability is tracked separately from CVE-2013-1490 and has been actively exploited in the wild.
Background
Java Management Extensions (JMX) is a standard Java technology for managing and monitoring applications, system objects, and devices. In the Java Runtime Environment (JRE), JMX provides a framework for instrumenting resources and exposing them to management tools. During the Java 7 era, the JMX implementation included complex interaction points between the management agent and the sandbox security model. Misconfiguration or logic flaws in this boundary could allow untrusted code to escape the restrictions intended by the Java Security Manager.
In early 2013, a series of sandbox bypass flaws were discovered in rapid succession, with CVE-2013-0431 identified as "Issue 52" in public reporting. The vulnerability was ultimately addressed in Oracle's February 2013 Critical Patch Update.
Root Cause
CWE-693: Protection Mechanism Failure
The root cause is an implementation flaw in the JMX component that fails to properly enforce the Java Security Manager's sandbox restrictions. While the precise technical trigger was not publicly disclosed by Oracle at the time of release, the vulnerability class represents a failure of the protection mechanism to correctly validate or restrict privileged operations initiated through JMX interfaces. This allowed untrusted Java applets or Web Start applications to perform actions outside the intended security boundary, effectively bypassing the sandbox.
Impact
The vulnerability enables a remote attacker to bypass the Java security sandbox. According to the CVSS v2 metrics:
- Attack Vector (AV): Network — exploitable remotely
- Attack Complexity (AC): Low — no special conditions required
- Authentication (Au): None — no credentials needed
- Confidentiality (C): None (CVSS v2) / Low (CVSS v3)
- Integrity (I): Partial (CVSS v2) / None (CVSS v3)
- Availability (A): None
The practical impact is elevation of privilege for untrusted Java code. Once the sandbox is bypassed, an attacker can execute arbitrary code with the same privileges as the user running the browser or application, leading to full system compromise in many scenarios. The high EPSS score (0.89987) and inclusion in the CISA KEV catalog confirm real-world exploitation.
Exploitation Walkthrough (Defensive Perspective)
Ethics Notice: This section describes the attack surface from a defender's viewpoint only. No weaponized exploit code or step-by-step attack instructions are provided.
From a defensive standpoint, exploitation of this class of JMX sandbox bypass typically follows this pattern:
- Delivery: An attacker hosts a malicious Java applet or Java Web Start (JNLP) application on a compromised or attacker-controlled website.
- Social Engineering: The victim is persuaded to visit the site (e.g., via phishing, drive-by download, or malvertising).
- Sandbox Bypass: The malicious Java code leverages the JMX flaw to escape the restrictive security sandbox.
- Post-Exploitation: With sandbox restrictions removed, the code executes with the privileges of the local user, enabling payload delivery, data exfiltration, or lateral movement.
Defensive monitoring should focus on:
- Unexpected Java processes spawning from browser contexts
- Network connections initiated by
java.exeorjavaw.exeafter visiting untrusted sites - Alerts from endpoint protection tools flagging Java sandbox escape attempts
Affected and Patched Versions
Affected:
- Oracle Java SE 7 (JRE 1.7.0) through Update 11
- OpenJDK 7
- openSUSE Tumbleweed:
java-1_7_0-openjdkversions prior to1.7.0.121-1.1
Patched:
- Oracle Java SE 7 Update 12 and later (released in the February 2013 Critical Patch Update)
- Corresponding OpenJDK updates from distribution vendors (Red Hat, SUSE, Gentoo, etc.)
Organizations should verify their installed Java version against vendor advisories, as backported patches may have different build numbers across distributions.
Remediation
Primary: Upgrade to a patched version of Java 7 or migrate to a supported Java release (Java 8 or later, with current security updates). Oracle's February 2013 CPU addressed this flaw.
Compensating Controls:
- Disable Java browser plugins if not required for business operations
- Use application whitelisting to prevent execution of untrusted Java applications
- Deploy web filtering/proxy controls to block access to untrusted sites that may host malicious applets
- Enforce network segmentation to limit lateral movement if endpoint compromise occurs
Detection
- Network: Monitor for outbound connections from browser-spawned Java processes
- Endpoint: Alert on Java executions with unusual command-line arguments or child processes
- SIEM Rules: Correlate browser process events (
iexplore.exe,chrome.exe,firefox.exe) spawningjava.exewith subsequent suspicious activity - Vulnerability Scanning: Check for JRE 1.7.0 Update 11 or earlier using authorized scanners; verify against CISA KEV catalog feed
Assessment
CVE-2013-0431 is a high-confidence, historically significant vulnerability. With an EPSS of 0.89987 (89.99% probability of exploitation) and a 99.78th percentile ranking, it sits in the most dangerous tier of known flaws. Its inclusion in the CISA KEV catalog since 2022-05-25 confirms continued relevance for federal agencies and critical infrastructure.
Key Lessons:
- Sandbox escape vulnerabilities in widely deployed runtimes (Java, browsers, PDF readers) have outsized impact because they convert "untrusted content" into "trusted execution."
- Rapid patching of Oracle CPU releases is essential; this flaw was part of a wave of Java sandbox bypasses discovered in early 2013 that demanded immediate action.
References
- https://www.cisa.gov/known-exploited-vulnerabilities-catalog?field_cve=CVE-2013-0431
- http://www.oracle.com/technetwork/topics/security/javacpufeb2013-1841061.html
- http://rhn.redhat.com/errata/RHSA-2013-0237.html
- http://rhn.redhat.com/errata/RHSA-2013-0247.html
- http://www.kb.cert.org/vuls/id/858729
- http://www.us-cert.gov/cas/techalerts/TA13-032A.html
- http://security.gentoo.org/glsa/glsa-201406-32.xml
- http://arstechnica.com/security/2013/01/critical-java-vulnerabilies-confirmed-in-latest-version/
- http://seclists.org/fulldisclosure/2013/Jan/142
- http://seclists.org/fulldisclosure/2013/Jan/195
Frequently asked questions
- What is CVE-2013-0431?
- Unspecified vulnerability in the Java Runtime Environment (JRE) component in Oracle Java SE 7 through Update 11, and OpenJDK 7, allows user-assisted remote attackers to bypass the Java security sandbox via unspecified vectors related to JMX, aka "Issue 52," a different vulnerability than CVE-2013-1490.
- How severe is CVE-2013-0431?
- CVE-2013-0431 has a CVSS 3.x base score of 5.3, rated medium severity. It is exploitable over network with low attack complexity, requires no privileges and no user interaction. Impact on confidentiality is low, integrity none, and availability none.
- Is CVE-2013-0431 being actively exploited?
- Yes. CVE-2013-0431 is on CISA's Known Exploited Vulnerabilities (KEV) catalog, added on 2022-05-25, which means active exploitation has been confirmed. It should be prioritised for remediation.
- What products are affected by CVE-2013-0431?
- CVE-2013-0431 primarily affects Oracle Jre. In total, 12 product configurations (CPEs) are listed as vulnerable; see the affected-products list for the exact versions.
- How do I fix CVE-2013-0431?
- Review the linked vendor and NVD advisories for patched versions and mitigations, then upgrade or apply the recommended workaround. Because this CVE is known to be actively exploited, treat remediation as urgent — CISA KEV typically sets a short remediation deadline.
- Does CVE-2013-0431 have an EU (EUVD) identifier?
- Yes. CVE-2013-0431 is tracked in the ENISA EU Vulnerability Database (EUVD) as EUVD-2013-0442. It is also flagged as exploited in the EUVD (since 2022-05-25).
- When was CVE-2013-0431 published?
- CVE-2013-0431 was published on 2013-01-31 and last updated on 2026-06-16.
References
- http://arstechnica.com/security/2013/01/critical-java-vulnerabilies-confirmed-in-latest-version/
- http://blogs.computerworld.com/malware-and-vulnerabilities/21693/yet-another-java-security-flaw-discovered-number-53
- http://lists.opensuse.org/opensuse-security-announce/2013-03/msg00001.html
- http://marc.info/?l=bugtraq&m=136439120408139&w=2
- http://marc.info/?l=bugtraq&m=136733161405818&w=2
- http://rhn.redhat.com/errata/RHSA-2013-0237.html
- http://rhn.redhat.com/errata/RHSA-2013-0247.html
- http://seclists.org/fulldisclosure/2013/Jan/142
- http://seclists.org/fulldisclosure/2013/Jan/195
- http://security.gentoo.org/glsa/glsa-201406-32.xml
- http://www.informationweek.com/security/application-security/java-hacker-uncovers-two-flaws-in-latest/240146717
- http://www.kb.cert.org/vuls/id/858729
- http://www.mandriva.com/security/advisories?name=MDVSA-2013:095
- http://www.oracle.com/technetwork/topics/security/javacpufeb2013-1841061.html
- http://www.securityfocus.com/archive/1/525387/30/0/threaded
- http://www.us-cert.gov/cas/techalerts/TA13-032A.html
- https://oval.cisecurity.org/repository/search/definition/oval%3Aorg.mitre.oval%3Adef%3A16579
- https://oval.cisecurity.org/repository/search/definition/oval%3Aorg.mitre.oval%3Adef%3A19418
- https://wiki.mageia.org/en/Support/Advisories/MGASA-2013-0056
- https://www.cisa.gov/known-exploited-vulnerabilities-catalog?field_cve=CVE-2013-0431
Affected products (12)
- cpe:2.3:a:oracle:jre:1.7.0:-:*:*:*:*:*:*
- cpe:2.3:a:oracle:jre:1.7.0:update1:*:*:*:*:*:*
- cpe:2.3:a:oracle:jre:1.7.0:update10:*:*:*:*:*:*
- cpe:2.3:a:oracle:jre:1.7.0:update11:*:*:*:*:*:*
- cpe:2.3:a:oracle:jre:1.7.0:update2:*:*:*:*:*:*
- cpe:2.3:a:oracle:jre:1.7.0:update3:*:*:*:*:*:*
- cpe:2.3:a:oracle:jre:1.7.0:update4:*:*:*:*:*:*
- cpe:2.3:a:oracle:jre:1.7.0:update5:*:*:*:*:*:*
- cpe:2.3:a:oracle:jre:1.7.0:update6:*:*:*:*:*:*
- cpe:2.3:a:oracle:jre:1.7.0:update7:*:*:*:*:*:*
- cpe:2.3:a:oracle:jre:1.7.0:update9:*:*:*:*:*:*
- cpe:2.3:a:oracle:openjdk:7:-:*:*:*:*:*:*
More vulnerabilities in Oracle Jre
- CVE-2016-0494 — Critical (CVSS 10.0): Unspecified vulnerability in the Java SE and Java SE Embedded components in Oracle Java SE 6u105, 7u91, and 8u66 and…
- CVE-2016-0483 — Critical (CVSS 10.0): Unspecified vulnerability in Oracle Java SE 6u105, 7u91, and 8u66; Java SE Embedded 8u65; and JRockit R28.3.8 allows…
- CVE-2015-4883 — Critical (CVSS 10.0): Unspecified vulnerability in Oracle Java SE 6u101, 7u85, and 8u60, and Java SE Embedded 8u51, allows remote attackers…
- CVE-2015-4881 — Critical (CVSS 10.0): Unspecified vulnerability in Oracle Java SE 6u101, 7u85, and 8u60, and Java SE Embedded 8u51, allows remote attackers…
- CVE-2015-4860 — Critical (CVSS 10.0): Unspecified vulnerability in Oracle Java SE 6u101, 7u85, and 8u60, and Java SE Embedded 8u51, allows remote attackers…
- CVE-2015-4844 — Critical (CVSS 10.0): Unspecified vulnerability in Oracle Java SE 6u101, 7u85, and 8u60, and Java SE Embedded 8u51, allows remote attackers…
All CVEs affecting Oracle Jre →
Other CWE-693 (Protection Mechanism Failure) vulnerabilities
- CVE-2026-47140 — Critical (CVSS 10.0): vm2 is an open source vm/sandbox for Node.js. Prior to version 3.11.4, NodeVM blocks several dangerous Node.js builtins…
- CVE-2026-34208 — Critical (CVSS 10.0): SandboxJS is a JavaScript sandboxing library. Prior to 0.8.36, SandboxJS blocks direct assignment to global objects…
- CVE-2026-34938 — Critical (CVSS 10.0): PraisonAI is a multi-agent teams system. Prior to version 1.5.90, execute_code() in praisonai-agents runs…
- CVE-2026-2761 — Critical (CVSS 10.0): Sandbox escape in the Graphics: WebRender component. This vulnerability was fixed in Firefox 148, Firefox ESR 115.33,…
- CVE-2022-32845 — Critical (CVSS 10.0): This issue was addressed with improved checks. This issue is fixed in watchOS 8.7, iOS 15.6 and iPadOS 15.6, macOS…
- CVE-2026-45102 — Critical (CVSS 9.9): OneUptime is an open-source monitoring and observability platform. Prior to 10.0.98, OneUptime uses the Node.js' vm…
Browse all CWE-693 (Protection Mechanism Failure) vulnerabilities →