How to Fix CVE-2025-61884: Server-Side Request Forgery in Oracle Configurator
By Sai Kiran Pandrala
| Severity | CVSS 7.5 - High |
|---|---|
| Actively exploited? | Yes, listed in CISA KEV (added 2025-10-20) |
| Affected | Oracle Configurator 12.2.3 up to and including 12.2.14 |
| Fixed in | See vendor advisory |
| Type (CWE) | Not verified - see official advisory |
Patch immediately. CISA added CVE-2025-61884 to the Known Exploited Vulnerabilities catalog on 2025-10-20. Federal civilian agencies must remediate by 2025-11-10. Treat every internet-reachable instance as a priority patch.
What is CVE-2025-61884?
CVE-2025-61884 is a Server-Side Request Forgery flaw in Oracle Corporation Oracle Configurator. It carries a CVSS base score of 7.5 (high). CISA confirmed real-world exploitation by adding it to the Known Exploited Vulnerabilities catalog on 2025-10-20.
From the source record: Vulnerability in the Oracle Configurator product of Oracle E-Business Suite (component: Runtime UI). Supported versions that are affected are 12.2.3-12.2.14. Easily exploitable vulnerability allows unauthenticated attacker with network access via HTTP to compromise Oracle Configurator. Successful attacks of this vulnerability can result in unauthorized access to critical data or complete access to all Oracle Configurator accessible data. CVSS 3.1 Base Score 7.5 (Confidentiality impacts). CVSS Vector: (CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N).
Why it matters in practice: KEV-listed CVEs draw continuous internet-wide scanning. Any unpatched, internet-reachable installation is on borrowed time. The blast radius depends on how the affected service is exposed. An internet-facing instance with no compensating controls is the highest-risk configuration.
Am I affected?
You are affected if your installation of Oracle Configurator matches a version listed in the Affected row above.
Check the Oracle product version:
# WebLogic example
. $MW_HOME/wlserver/server/bin/setWLSEnv.sh
java weblogic.version
# Java SE
java -version
How to fix CVE-2025-61884
Apply the vendor patch. Target the patched build listed on the vendor advisory. The runnable command set below covers the most common deployment patterns for Oracle Configurator.
Oracle critical patch update (cpu)
# Vendor advisory: https://www.oracle.com/security-alerts/alert-cve-2025-61884.html
# Download the patch ZIP from My Oracle Support, then:
cd $ORACLE_HOME/OPatch
./opatch apply /path/to/patch_<id>
./opatch lsinventory | grep <patch_id>
After applying the patch
- Restart the service or device so the patched binary loads.
- Confirm the running version matches the Fixed in row using the verification command below.
- Rotate credentials and API keys that the affected service could access if the asset was exposed during the disclosure window.
If you can't patch immediately
Until the patch lands, narrow the attack surface with these runnable controls.
Reduce the attack surface
Restrict network reach to the affected service to the smallest set of hosts that must access it. On Linux:
# Vendor advisory: https://www.oracle.com/security-alerts/alert-cve-2025-61884.html
sudo iptables -A INPUT -p tcp --dport <service-port> -s 10.10.10.0/24 -j ACCEPT
sudo iptables -A INPUT -p tcp --dport <service-port> -j DROP
On Windows:
# Vendor advisory: https://www.oracle.com/security-alerts/alert-cve-2025-61884.html
New-NetFirewallRule -DisplayName "Block CVE-2025-61884 inbound" -Direction Inbound -Action Block -Protocol TCP -LocalPort <service-port>
Mitigations are temporary. Apply the vendor patch as soon as a maintenance window opens.
How to verify the fix worked
Confirm the patched build is the one actually running.
Run the product's --version or about command and compare against the Fixed in row (See vendor advisory). Re-run an authenticated vulnerability scan and confirm the scanner no longer flags CVE-2025-61884.
Also worth doing: pull recent log windows for any indicators of compromise listed in the vendor advisory, and re-run an authenticated vulnerability scan with up-to-date signatures.
Frequently asked questions
Related fixes
Other vulnerabilities in the same area that are worth patching alongside this one:
- How to Fix CVE-2026-34268: Oracle Java SE (Bundle Sibling) — Oracle Java SE (Bundle Sibling)
- How to Fix CVE-2013-0431: Protection Mechanism Failure in Java Runtime Environment (Jre) — Protection Mechanism Failure in Java Runtime Environment (Jre)
- How to Fix CVE-2026-21987: Critical Vulnerability in Oracle VM VirtualBox , Critical Vulnerability in Oracle VM VirtualBox
- How to Fix CVE-2026-21989: Critical Vulnerability in Oracle VM VirtualBox , Critical Vulnerability in Oracle VM VirtualBox
- How to Fix CVE-2026-21923: Critical Vulnerability in Oracle Life Sciences Central Designer , Critical Vulnerability in Oracle Life Sciences Central Designer
Is CVE-2025-61884 being exploited in the wild?
Yes. CISA added CVE-2025-61884 to the Known Exploited Vulnerabilities catalog on 2025-10-20. KEV listing means at least one confirmed real-world exploitation report exists.
Do I have to take downtime to patch?
For most Oracle Corporation Oracle Configurator deployments, the patched build needs a service restart or device reboot. HA pairs and clusters can roll the upgrade by patching the standby first, failing over, then patching the former primary.
Will a WAF or IDS rule alone close CVE-2025-61884?
No. Network filters cut down opportunistic scans but they do not remove the flaw. The vendor patch is the only durable fix.
How quickly should I act on CVE-2025-61884?
Within the standard patch cycle if the asset is internal-only. Inside one to two weeks for any internet-facing instance, sooner if compensating controls are not in place.
References
- Official vendor advisory: https://www.oracle.com/security-alerts/alert-cve-2025-61884.html
- NVD entry: https://nvd.nist.gov/vuln/detail/CVE-2025-61884
- CISA KEV catalog: https://www.cisa.gov/known-exploited-vulnerabilities-catalog
- CISA KEV entry: "Oracle E-Business Suite Server-Side Request Forgery (SSRF) Vulnerability" - added 2025-10-20, due 2025-11-10
- Additional reference: https://blogs.oracle.com/security/post/apply-july-2025-cpu
- Additional reference: https://labs.watchtowr.com/well-well-well-its-another-day-oracle-e-business-suite-pre-auth-rce-chain-cve-2025-61882well-well-well-its-another-day-oracle-e-business-suite-pre-auth-rce-chain-cve-2025-61882/
*Assembled from the official vendor advisory, the NVD record, and the CISA KEV listing on 2026-05-25. Always confirm against the vendor advisory before applying changes in production.*