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

CVE-2025-55276

Published: 2026-03-26 13:16:27
Last Modified: 2026-03-26 20:08:17

Description

HCL Aftermarket DPC is affected by Internal IP Disclosure vulnerability will give attackers a clearer map of the organization’s network layout.

CVSS Details

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

Configurations (Affected Products)

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

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import re # Target URL (Replace with actual vulnerable endpoint) target_url = "http://target-ip/hcl-dpc-endpoint" # Regex pattern to match private IP addresses ip_pattern = r"\b(10\.\d{1,3}\.\d{1,3}\.\d{1,3}|172\.(1[6-9]|2\d|3[0-1])\.\d{1,3}\.\d{1,3}|192\.168\.\d{1,3}\.\d{1,3})\b" def check_ip_disclosure(url): try: # Send a request to the target response = requests.get(url, timeout=10) # Check response headers and body content = str(response.headers) + response.text # Search for internal IPs found_ips = re.findall(ip_pattern, content) if found_ips: print(f"[+] Potential Internal IP Disclosure found at: {url}") print(f"[+] Detected IPs: {set(found_ips)}") else: print(f"[-] No Internal IPs detected.") except requests.RequestException as e: print(f"[!] Error connecting to target: {e}") if __name__ == "__main__": check_ip_disclosure(target_url)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-55276", "sourceIdentifier": "[email protected]", "published": "2026-03-26T13:16:27.343", "lastModified": "2026-03-26T20:08:16.807", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "HCL Aftermarket DPC is affected by Internal IP Disclosure vulnerability will give attackers a clearer map of the organization’s network layout."}, {"lang": "es", "value": "HCL Aftermarket DPC está afectado por la vulnerabilidad de divulgación de IP interna dará a los atacantes un mapa más claro del diseño de la red de la organización."}], "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:N/I:N/A:L", "baseScore": 3.1, "baseSeverity": "LOW", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "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"]}]}}