CVE-2026-60362 Overview
CVE-2026-60362 is a critical vulnerability in Oracle Unified Directory, a component of Oracle Fusion Middleware. The flaw resides in the OUD Core component and affects supported versions 12.2.1.4.0 and 14.1.2.1.0. An unauthenticated attacker with network access via Lightweight Directory Access Protocol (LDAP) can exploit this vulnerability with low complexity. Successful exploitation results in complete takeover of Oracle Unified Directory, compromising confidentiality, integrity, and availability. Oracle addressed the issue in the July 2026 Critical Patch Update.
Critical Impact
Unauthenticated network attackers can achieve full takeover of Oracle Unified Directory instances through LDAP, exposing enterprise directory data and identity infrastructure.
Affected Products
- Oracle Unified Directory 12.2.1.4.0
- Oracle Unified Directory 14.1.2.1.0
- Oracle Fusion Middleware — OUD Core component
Discovery Timeline
- 2026-07-21 - CVE-2026-60362 published to NVD
- 2026-07-21 - Last updated in NVD database
- July 2026 - Oracle releases fix in Critical Patch Update
Technical Details for CVE-2026-60362
Vulnerability Analysis
Oracle Unified Directory (OUD) is Oracle's LDAP directory service that stores identity, authentication, and authorization data for enterprise applications. This vulnerability allows an unauthenticated remote attacker to compromise the entire directory service through the LDAP protocol interface. Because OUD frequently anchors identity workflows across Oracle Fusion Middleware deployments, a takeover cascades into downstream applications that rely on the directory for authentication and policy decisions.
Exploitation requires only network reachability to the LDAP listener. No user interaction and no credentials are needed. The scope remains unchanged, but the attacker gains control over the directory process, which typically runs with elevated privileges over sensitive identity data.
Oracle has not published deep technical details of the flaw in the public advisory. The EPSS score is 0.486% with a percentile of 39.017, indicating exploitation prediction models have not yet observed active weaponization at the time of publication.
Root Cause
Oracle's advisory attributes the issue to the OUD Core component processing LDAP protocol traffic. The vendor classifies the flaw as easily exploitable through the LDAP network interface without prior authentication. Refer to the Oracle Critical Patch Update July 2026 for the authoritative technical description.
Attack Vector
The attack path is straightforward. An attacker sends crafted LDAP requests to an exposed OUD listener over the network. Because authentication is not required, any host that can reach the LDAP port on a vulnerable OUD instance is a potential entry point. Environments that expose OUD to internal segments, partner networks, or the internet are at heightened risk.
No verified public proof-of-concept exploit is available at the time of publication. See the Oracle security advisory for vendor-supplied details.
Detection Methods for CVE-2026-60362
Indicators of Compromise
- Unexpected LDAP bind or extended operation requests from unknown source addresses targeting OUD listeners (typically TCP 389 and 636).
- New or modified administrative entries, ACIs, or password policy objects in the OUD directory tree without a corresponding change ticket.
- OUD process restarts, configuration reloads, or audit log gaps that do not correlate with scheduled maintenance.
- Outbound network connections initiated by the OUD service account to non-standard destinations.
Detection Strategies
- Enable OUD access and audit logging and forward events to a centralized analytics platform for correlation.
- Baseline normal LDAP client sources and alert on unauthenticated operations from unexpected origins.
- Monitor for anomalous LDAP operation volume, malformed requests, or repeated protocol errors preceding administrative changes.
- Correlate OUD events with authentication activity in downstream Oracle Fusion Middleware applications to detect identity abuse.
Monitoring Recommendations
- Track directory schema, ACI, and privileged account modifications with alerting on any change outside change-management windows.
- Watch for new replication agreements or exports that could be used to exfiltrate directory contents.
- Instrument the host running OUD for process, file, and network telemetry and route it to a SIEM or data lake for retention and hunting.
- Review firewall and load balancer logs for LDAP traffic originating from segments that should not communicate with OUD.
How to Mitigate CVE-2026-60362
Immediate Actions Required
- Apply the July 2026 Oracle Critical Patch Update to all Oracle Unified Directory 12.2.1.4.0 and 14.1.2.1.0 deployments.
- Inventory every OUD instance, including non-production and disaster recovery nodes, and confirm patch status.
- Restrict network access to LDAP ports so that only authorized application hosts and administrative workstations can reach OUD.
- Rotate directory administrator credentials and review privileged accounts for signs of misuse after patching.
Patch Information
Oracle released the fix as part of the July 2026 Critical Patch Update. Administrators should download and apply the update following the guidance in the Oracle Critical Patch Update July 2026 advisory. Verify version strings after patching and validate replication topology consistency across the OUD cluster.
Workarounds
- Place OUD listeners behind network segmentation controls that permit LDAP traffic only from known application hosts.
- Terminate LDAP connections at a hardened reverse proxy or load balancer that enforces source allow-lists until patching completes.
- Disable exposure of OUD administrative interfaces to untrusted networks.
- Increase audit log retention and monitoring during the patch rollout window to shorten detection time for attempted exploitation.
# Example: restrict LDAP access to OUD using host firewall rules
# Replace <trusted_subnet> with the CIDR of authorized application hosts
iptables -A INPUT -p tcp --dport 389 -s <trusted_subnet> -j ACCEPT
iptables -A INPUT -p tcp --dport 636 -s <trusted_subnet> -j ACCEPT
iptables -A INPUT -p tcp --dport 389 -j DROP
iptables -A INPUT -p tcp --dport 636 -j DROP
Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

