Security Vulnerability Report
中文
CVE-2025-62316 CVSS 2.3 LOW

CVE-2025-62316

Published: 2026-05-14 17:16:19
Last Modified: 2026-05-14 17:22:47

Description

HCL AION is affected by a vulnerability where certain security-related HTTP response headers are not properly configured. Absence of these headers may reduce the effectiveness of browser-based security controls and could expose the application to limited security risks under specific conditions.

CVSS Details

CVSS Score
2.3
Severity
LOW
CVSS Vector
CVSS:3.1/AV:A/AC:H/PR:L/UI:R/S:U/C:L/I:N/A:N

Configurations (Affected Products)

No configuration data available.

HCL AION (具体受影响版本请参考厂商公告 KB0130636)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def check_headers(url): # Common security headers that should be present security_headers = [ "X-Frame-Options", "X-Content-Type-Options", "Content-Security-Policy", "Strict-Transport-Security" ] try: response = requests.get(url) print(f"Scanning {url}...") for header in security_headers: if header in response.headers: print(f"[OK] {header}: {response.headers[header]}") else: print(f"[VULNERABLE] Missing header: {header}") except Exception as e: print(f"Error connecting to target: {e}") if __name__ == "__main__": target = "http://<target-ip>:<port>" check_headers(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62316", "sourceIdentifier": "[email protected]", "published": "2026-05-14T17:16:18.957", "lastModified": "2026-05-14T17:22:46.577", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "HCL AION is affected by a vulnerability where certain security-related HTTP response headers are not properly configured. Absence of these headers may reduce the effectiveness of browser-based security controls and could expose the application to limited security risks under specific conditions."}], "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:L/I:N/A:N", "baseScore": 2.3, "baseSeverity": "LOW", "attackVector": "ADJACENT_NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 0.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-1021"}]}], "references": [{"url": "https://support.hcl-software.com/csm?id=kb_article&sysparm_article=KB0130636", "source": "[email protected]"}]}}