CVE-2026-73952 Overview
CVE-2026-73952 is an authentication weakness [CWE-287] in the Portlet Services component of Oracle WebCenter Portal, part of Oracle Fusion Middleware. An unauthenticated attacker with network access over HTTP can compromise the product without user interaction. Successful exploitation grants unauthorized read, create, delete, or modify access to all data accessible through Oracle WebCenter Portal. Oracle disclosed the issue in a September 2026 Security Alert Update. The vulnerability affects supported versions 12.2.1.4.0 and 14.1.2.0.0.
Critical Impact
Remote, unauthenticated attackers can read and tamper with all data accessible through Oracle WebCenter Portal via HTTP requests to the Portlet Services component.
Affected Products
- Oracle WebCenter Portal 12.2.1.4.0
- Oracle WebCenter Portal 14.1.2.0.0
- Oracle Fusion Middleware deployments exposing Portlet Services
Discovery Timeline
- 2026-09-15 - CVE-2026-73952 published to NVD
- 2026-09-16 - Last updated in NVD database
- Oracle Security Alert Update published at Oracle Security Alerts
Technical Details for CVE-2026-73952
Vulnerability Analysis
The flaw resides in the Portlet Services component of Oracle WebCenter Portal. The component fails to properly authenticate requests before granting access to portlet operations. An attacker sends crafted HTTP requests to the exposed portlet endpoints and receives access typically reserved for authenticated portal users. The vulnerability requires no privileges, no user interaction, and low attack complexity. Confidentiality and integrity impacts are both High, while availability is not affected. The Common Weakness Enumeration classifies this as Improper Authentication [CWE-287].
Root Cause
Portlet Services does not enforce proper authentication controls on requests reaching its network-facing handlers. Access decisions rely on state or headers that an unauthenticated caller can supply or omit. The result is that the trust boundary between anonymous HTTP clients and authenticated portlet operations collapses.
Attack Vector
Exploitation occurs remotely over HTTP against a reachable Oracle WebCenter Portal instance. An attacker crafts HTTP requests targeting Portlet Services endpoints without supplying valid credentials. Successful requests permit reading, creating, deleting, or modifying any data the portal can access. Because the vector is network-based and unauthenticated, internet-exposed deployments face the highest risk. Oracle has not published exploit code, and the EPSS probability stands at 0.308 percent as of 2026-09-16.
No verified public proof-of-concept code is available. Refer to the Oracle Security Alert Update for technical details from the vendor.
Detection Methods for CVE-2026-73952
Indicators of Compromise
- Unauthenticated HTTP requests reaching /portalTools/, /wsrp-tools/, or other Portlet Services URIs with 200-series responses.
- Portal audit logs showing data reads, writes, or deletions without an associated authenticated user session.
- Sudden creation, modification, or removal of portal content, pages, or portlet preferences outside change-management windows.
- Anomalous outbound requests from the WebCenter Portal host following inbound Portlet Services traffic.
Detection Strategies
- Correlate WebCenter Portal access logs with authentication logs to surface Portlet Services requests missing a valid session identifier.
- Deploy web application firewall rules that flag or block unauthenticated requests to portlet endpoints.
- Baseline normal Portlet Services traffic volume and alert on deviations, particularly from external IP ranges.
Monitoring Recommendations
- Forward Oracle WebCenter Portal, WebLogic, and Oracle HTTP Server logs to a centralized SIEM for correlation.
- Enable Oracle Fusion Middleware audit policies covering portal content changes and portlet configuration updates.
- Monitor perimeter devices for scanning behavior against known WebCenter Portal URI patterns.
How to Mitigate CVE-2026-73952
Immediate Actions Required
- Apply the fixes referenced in the Oracle Security Alert Update to versions 12.2.1.4.0 and 14.1.2.0.0.
- Inventory internet-exposed Oracle WebCenter Portal instances and prioritize patching those first.
- Rotate portal service credentials and review portal content for unauthorized changes after patching.
- Review WebCenter Portal audit logs for suspicious Portlet Services activity dating back to before the September 2026 disclosure.
Patch Information
Oracle addressed CVE-2026-73952 in a September 2026 Security Alert Update. Administrators must apply the patch bundle published by Oracle for Oracle WebCenter Portal 12.2.1.4.0 and 14.1.2.0.0. Patch download links and prerequisites are provided in the Oracle Security Alert Update.
Workarounds
- Restrict network access to Oracle WebCenter Portal management and Portlet Services endpoints to trusted networks and VPN users.
- Place the portal behind a web application firewall configured to require authentication on portlet URIs.
- Disable unused portlets and Portlet Services features to reduce the exposed attack surface until patching completes.
# Example: restrict Portlet Services endpoints at the reverse proxy (Oracle HTTP Server / mod_wl)
<Location /portalTools/>
Require ip 10.0.0.0/8 192.168.0.0/16
AuthType Basic
AuthName "WebCenter Portal"
Require valid-user
</Location>
Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

