CVE-2026-60849 Overview
CVE-2026-60849 is a vulnerability in the Oracle Unified Directory (OUD) product of Oracle Fusion Middleware, specifically within the OUD Core component. Affected releases are versions 12.2.1.4.0 and 14.1.2.1.0. A low-privileged attacker with network access via Lightweight Directory Access Protocol (LDAP) can compromise Oracle Unified Directory. Although the flaw resides in OUD, successful exploitation produces a scope change that can affect additional products in the environment. Oracle addressed the issue in its August 2026 Critical Patch Update.
Critical Impact
Successful exploitation results in full takeover of Oracle Unified Directory, impacting the confidentiality, integrity, and availability of directory data and any downstream systems that depend on it for authentication and authorization.
Affected Products
- Oracle Unified Directory 12.2.1.4.0
- Oracle Unified Directory 14.1.2.1.0
- Oracle Fusion Middleware deployments integrating OUD Core
Discovery Timeline
- 2026-08-18 - CVE-2026-60849 published to the National Vulnerability Database (NVD)
- 2026-08-20 - Last updated in the NVD database
Technical Details for CVE-2026-60849
Vulnerability Analysis
The vulnerability affects the OUD Core component that handles LDAP protocol operations. An authenticated attacker with low privileges can send crafted LDAP requests to the directory service. Exploitation is described as difficult by Oracle, requiring specific conditions to be met, but the resulting impact is complete takeover of the directory instance.
The scope change indicator signals that a successful compromise of OUD extends beyond the vulnerable component. Because OUD frequently serves as the identity backbone for enterprise applications, adjacent systems relying on directory-based authentication can inherit the compromise. Oracle assigns this issue to a CWE classification of NVD-CWE-noinfo, and the technical root cause has not been disclosed in the public advisory.
Root Cause
Oracle has not published the specific weakness class. The advisory attributes the flaw to LDAP processing within OUD Core and confirms that authentication is required for exploitation. Without deeper technical disclosure, defenders should treat any exposed LDAP endpoint on affected OUD versions as a potential attack surface.
Attack Vector
The attack vector is network-based over LDAP. The attacker must hold valid low-privileged credentials on the directory or a bound service account. High attack complexity indicates the adversary must satisfy conditions outside their direct control, such as timing or environmental prerequisites, before the exploit succeeds. No user interaction is required.
No public proof-of-concept has been released, and the vulnerability is not listed on the CISA Known Exploited Vulnerabilities (KEV) catalog. See the Oracle Security Alert for vendor-provided details.
Detection Methods for CVE-2026-60849
Indicators of Compromise
- Unexpected administrative changes to directory entries, ACIs, or root DSE attributes on OUD instances
- LDAP bind operations from low-privileged accounts followed by privilege changes or schema modifications
- New or modified service accounts and password policies inside OUD without a corresponding change ticket
- Anomalous outbound traffic from the OUD host to systems that federate authentication through the directory
Detection Strategies
- Enable verbose LDAP audit logging in OUD and forward events to a centralized SIEM for correlation
- Baseline normal LDAP query patterns per service account and alert on deviations in operation type or volume
- Monitor for repeated failed bind attempts followed by successful low-privileged binds from the same source
- Correlate directory changes with downstream authentication anomalies in federated applications
Monitoring Recommendations
- Ingest OUD access and error logs into your SIEM or data lake with OCSF normalization for cross-source analytics
- Alert on modifications to cn=admins, cn=config, and other privileged directory branches
- Track LDAP traffic against network baselines and flag connections originating from non-approved subnets
How to Mitigate CVE-2026-60849
Immediate Actions Required
- Apply the Oracle August 2026 Critical Patch Update to all OUD 12.2.1.4.0 and 14.1.2.1.0 deployments without delay
- Restrict LDAP access to trusted management subnets using network segmentation and firewall rules
- Rotate credentials for low-privileged service and application accounts that bind to OUD
- Review and reduce the number of accounts with any write access to the directory
Patch Information
Oracle released fixes for CVE-2026-60849 as part of the August 2026 Critical Patch Update. Administrators should follow the vendor guidance in the Oracle Security Alert and validate patch application against both affected versions.
Workarounds
- Enforce mutual TLS on LDAP listeners and disable clear-text LDAP where feasible
- Apply strict access control instructions (ACIs) that limit what low-privileged binds can read or modify
- Require multi-factor authentication for any administrative access path that fronts OUD
- Monitor for LDAP anomalies at the network layer and rate-limit unusual query patterns until patching is complete
# Example: restrict LDAP/LDAPS access at the host firewall to a management subnet
iptables -A INPUT -p tcp --dport 389 -s 10.10.20.0/24 -j ACCEPT
iptables -A INPUT -p tcp --dport 636 -s 10.10.20.0/24 -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.

