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

目标: 1000 元 · 已筹: 1336

100%

CWE-35 路径遍历:’…/…//’ 类漏洞列表 164

CWE-35 路径遍历:’…/…//’ 类弱点 164 条 CVE 漏洞汇总,含 AI 中文分析。

CWE-35 属于路径遍历漏洞,指程序使用外部输入构建受限目录内的文件路径时,未正确过滤“.../...//”等双重重定向序列。攻击者利用此缺陷,通过构造特殊路径字符序列绕过安全检查,访问或修改目录外的敏感文件。开发者应避免直接拼接用户输入,需对路径进行严格规范化处理,并实施白名单验证,确保最终解析路径始终位于预期的安全目录范围内。

MITRE CWE 官方描述
CWE:CWE-35 路径遍历:'.../...//' 英文:产品使用外部输入来构建一个应位于受限目录内的路径名,但它未能正确对 '.../...//'(双重重叠点斜杠)序列进行中和,这些序列可能解析到该目录之外的位置。
常见影响 (1)
Confidentiality, IntegrityRead Files or Directories, Modify Files or Directories, Bypass Protection Mechanism
Not properly neutralizing '.../...//' (doubled triple dot slash) allows attackers to traverse the file system to access files or directories that are outside of the restricted directory.
缓解措施 (2)
ImplementationAssume all input is malicious. Use an "accept known good" input validation strategy, i.e., use a list of acceptable inputs that strictly conform to specifications. Reject any input that does not strictly conform to specifications, or transform it into something that does. When performing input validation, consider all potentially relevant properties, including length, type of input, the full range…
Effectiveness: High
ImplementationInputs should be decoded and canonicalized to the application's current internal representation before being validated (CWE-180). Make sure that the application does not decode the same input twice (CWE-174). Such errors could be used to bypass allowlist validation schemes by introducing dangerous inputs after they have been checked.
代码示例 (1)
Suppose the product serves files from a specific "public" directory -- /home/product/public/ -- and has an algorithm that attempts to protect against common path traversal attacks. The algorithm works by sequentially scanning through a requested filename and removes each occurrence of "../" that it encounters, then appending the filename to the public directory.
../secret.dat
Attack
/home/product/public/secret.dat
Result
CVE ID标题CVSS风险等级Published
CVE-2024-41973 WAGO多款产品 安全漏洞 — CC100 0751-9x01 8.1 High2024-11-18
CVE-2024-41972 WAGO多款产品 安全漏洞 — CC100 0751-9x01 6.5 Medium2024-11-18
CVE-2024-11136 TCL Camera 安全漏洞 — Camera 9.1AICriticalAI2024-11-14
CVE-2024-51582 WordPress plugin WP Hotel Booking 安全漏洞 — WP Hotel Booking 7.5 High2024-11-04
CVE-2024-49770 oak 安全漏洞 — oak 7.5AIHighAI2024-11-01
CVE-2024-49258 WordPress plugin WordPress Gallery Plugin – Limb Image Gallery 安全漏洞 — WordPress Gallery Plugin – Limb Image Gallery 6.5 Medium2024-10-16
CVE-2024-45248 Multi-DNC 安全漏洞 — Multi-DNC 7.5 High2024-10-06
CVE-2024-47324 WordPress plugin WP Timeline 路径遍历漏洞 — WP Timeline – Vertical and Horizontal timeline plugin 7.5 High2024-10-05
CVE-2024-47171 Agnaistic 安全漏洞 — agnai 4.3 Medium2024-09-26
CVE-2024-47170 Agnaistic 安全漏洞 — agnai 4.3 Medium2024-09-26
CVE-2024-47169 Agnaistic 安全漏洞 — agnai 8.8 High2024-09-26
CVE-2024-0067 AXIS OS 安全漏洞 — AXIS OS 4.3 Medium2024-09-10
CVE-2024-7608 Trellix多款产品 安全漏洞 — Trellix NX, EX, AX, FX, CMS and IVX 5.9 Medium2024-08-27
CVE-2024-45190 mage-ai 安全漏洞 6.5 Medium2024-08-23
CVE-2024-0113 NVIDIA多款产品 安全漏洞 — Mellanox OS 7.5 High2024-08-09
CVE-2024-38706 WordPress plugin HT Mega 路径遍历漏洞 — HT Mega 6.5 Medium2024-07-12
CVE-2024-36991 Splunk 安全漏洞 — Splunk Enterprise 7.5 High2024-07-01
CVE-2024-5481 WordPress plugin Photo Gallery by 10Web 安全漏洞 — Photo Gallery by 10Web – Mobile-Friendly Image Gallery 6.8 Medium2024-06-07
CVE-2024-2654 WordPress Plugin File Manager 安全漏洞 — File Manager 6.8 Medium2024-04-09
CVE-2024-27901 SAP Asset Accounting 安全漏洞 — SAP Asset Accounting 7.2 High2024-04-09
CVE-2024-2863 LG LED Assistant 安全漏洞 — LG LED Assistant 5.3 Medium2024-03-25
CVE-2023-41793 Artica Pandora FMS 路径遍历漏洞 — Pandora FMS 6.7 Medium2024-03-19
CVE-2024-1886 LG webOS 安全漏洞 — LG Signage 3.0 Low2024-02-26
CVE-2023-5800 AXIS OS 代码注入漏洞 — AXIS OS 5.4 Medium2024-02-05
CVE-2023-46690 Delta Electronics InfraSuite Device Master 安全漏洞 — InfraSuite Device Master 8.8 High2023-11-30
CVE-2023-5885 Franklin Fueling System Colibri 路径遍历漏洞 — Colibri 6.5 Medium2023-11-27
CVE-2023-6252 Chalemelon Power 安全漏洞 — Chameleon Power 7.5 High2023-11-22
CVE-2023-21418 AXIS OS 安全漏洞 — AXIS OS 7.1 High2023-11-21
CVE-2023-21417 AXIS Os 安全漏洞 — AXIS OS 7.1 High2023-11-21
CVE-2023-21416 AXIS OS 安全漏洞 — AXIS OS 7.1 High2023-11-21

CWE-35(路径遍历:’…/…//’) 是常见的弱点类别,本平台收录该类弱点关联的 164 条 CVE 漏洞。