CVE-2026-60343 Overview
CVE-2026-60343 is a vulnerability in the Core component of Oracle WebLogic Server, part of Oracle Fusion Middleware. The flaw affects supported versions 12.2.1.4.0 and 14.1.1.0.0. A low-privileged attacker with network access over HTTP can exploit the issue without user interaction. Successful exploitation results in full takeover of the Oracle WebLogic Server, compromising confidentiality, integrity, and availability. Oracle addressed the vulnerability in the July 2026 Critical Patch Update.
Critical Impact
A remote authenticated attacker holding minimal privileges can achieve complete compromise of the WebLogic Server over HTTP.
Affected Products
- Oracle WebLogic Server 12.2.1.4.0
- Oracle WebLogic Server 14.1.1.0.0
- Oracle Fusion Middleware deployments embedding the affected WebLogic Core component
Discovery Timeline
- 2026-07-21 - CVE-2026-60343 published to NVD
- 2026-07-23 - Last updated in NVD database
- July 2026 - Oracle releases fix in the Oracle Critical Patch Update July 2026
Technical Details for CVE-2026-60343
Vulnerability Analysis
The vulnerability resides in the Core component of Oracle WebLogic Server. According to Oracle's advisory, the flaw is easily exploitable over the network by an attacker holding only low privileges on the target instance. No user interaction is required, and the scope remains unchanged, meaning the impact is confined to the WebLogic Server itself. However, successful exploitation grants complete control of the server, exposing all hosted Java EE applications, credentials, and back-end integrations.
Oracle WebLogic Server hosts business-critical Fusion Middleware workloads in many enterprises. A takeover therefore extends beyond the server process to any downstream databases, message queues, or identity providers the server can reach.
Root Cause
Oracle has not published the underlying technical root cause in the public advisory. Historically, WebLogic Core vulnerabilities of this class have involved insecure deserialization, authentication or authorization bypasses within T3/IIOP/HTTP handlers, or flaws in internal management endpoints. Because Oracle withholds Critical Patch Update technical detail before broad customer patching, defenders should treat the flaw as remotely reachable and exploitable through standard HTTP request paths.
Attack Vector
The attack is delivered over HTTP against a network-reachable WebLogic Server. The attacker must possess a valid low-privileged account on the target. After authenticating, the attacker sends crafted HTTP traffic to the vulnerable Core component to trigger the takeover condition. Because many WebLogic deployments expose administrative or application HTTP listeners to internal networks, an initial foothold on any adjacent host may be sufficient to reach the vulnerable service.
No public proof-of-concept exploit or CISA KEV entry is associated with CVE-2026-60343 at publication time. See the Oracle Critical Patch Update July 2026 for authoritative technical details.
Detection Methods for CVE-2026-60343
Indicators of Compromise
- Unexpected child processes spawned by the WebLogic JVM (java process) such as shells, cmd.exe, or scripting interpreters.
- New or modified files under the WebLogic domain directories, especially unexpected .war, .jar, or JSP files in servers/*/tmp/ or autodeploy/.
- Outbound network connections from the WebLogic host to unknown external hosts following inbound HTTP activity.
- Authentication events for low-privileged WebLogic accounts followed immediately by administrative actions.
Detection Strategies
- Inspect WebLogic access.log and AdminServer.log for anomalous POST requests to management or Core servlet paths from low-privileged users.
- Correlate authentication events with subsequent process creation on the WebLogic host to surface post-authentication takeover chains.
- Hunt for Java process anomalies such as unexpected class loading or reflective invocation patterns in application server logs.
Monitoring Recommendations
- Baseline normal HTTP request patterns against WebLogic administrative endpoints and alert on deviations.
- Monitor file integrity of the WebLogic domain directory and deployed application archives.
- Alert on any outbound connections initiated by the WebLogic JVM to non-approved destinations.
How to Mitigate CVE-2026-60343
Immediate Actions Required
- Apply the July 2026 Oracle Critical Patch Update to all Oracle WebLogic Server 12.2.1.4.0 and 14.1.1.0.0 deployments.
- Inventory all WebLogic instances, including those embedded in Fusion Middleware products, and confirm patch status.
- Rotate credentials for any low-privileged WebLogic accounts that may have been exposed or reused.
- Restrict network reachability of WebLogic HTTP listeners to trusted management networks.
Patch Information
Oracle released the fix as part of the Oracle Critical Patch Update July 2026. Administrators must download the appropriate patch bundle for their WebLogic version and follow Oracle's opatch procedure. Restart the affected domain after patching and verify the patch inventory using opatch lsinventory.
Workarounds
- Place WebLogic administrative and application HTTP listeners behind an authenticated reverse proxy or web application firewall that restricts access by source IP.
- Disable or remove unused WebLogic accounts and enforce least-privilege on all remaining user roles.
- Segment the WebLogic Server host from general user networks so that only trusted management systems can initiate HTTP sessions to it.
# Verify applied Oracle patches after installing the July 2026 CPU
cd $ORACLE_HOME/OPatch
./opatch lsinventory | grep -i "Patch"
# Restrict WebLogic listener to management interface (example iptables rule)
iptables -A INPUT -p tcp --dport 7001 -s 10.0.10.0/24 -j ACCEPT
iptables -A INPUT -p tcp --dport 7001 -j DROP
Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

