CWE-23 相对路径遍历 类弱点 439 条 CVE 漏洞汇总,含 AI 中文分析。
CWE-23 相对路径遍历漏洞源于软件未正确过滤外部输入中的“..”序列,导致构造的文件路径突破受限目录边界。攻击者通常利用此缺陷读取或修改系统敏感文件,获取未授权访问权限。开发者应避免直接使用用户输入拼接路径,需通过白名单验证、规范化路径或限制访问范围来彻底中和危险字符,从而防止路径逃逸。
http://example.com/get-files.jsp?file=report.pdf http://example.com/get-page.php?home=aaa.html http://example.com/some-page.asp?page=index.html
http://example.com/get-files?file=../../../../somedir/somefile http://example.com/../../../../etc/shadow http://example.com/get-files?file=../../../../etc/passwd
my $dataPath = "/users/cwe/profiles"; my $username = param("user"); my $profilePath = $dataPath . "/" . $username; open(my $fh, "<", $profilePath) || ExitError("profile read error: $profilePath"); print "<ul>\n"; while (<$fh>) { print "<li>$_</li>\n"; } print "</ul>\n";
../../../etc/passwd
| CVE ID | 标题 | CVSS | 风险等级 | Published |
|---|---|---|---|---|
| CVE-2025-58456 | AutomationDirect Productivity Suite 安全漏洞 — Productivity Suite | 6.8 | Medium | 2025-10-23 |
| CVE-2025-62498 | AutomationDirect Productivity Suite 安全漏洞 — Productivity Suite | 8.8 | High | 2025-10-23 |
| CVE-2025-11898 | Flowring Agentflow 安全漏洞 — Agentflow | 7.5 | High | 2025-10-17 |
| CVE-2025-10249 | WordPress plugin Slider Revolution 安全漏洞 — Slider Revolution | 6.5 | Medium | 2025-10-09 |
| CVE-2025-62187 | Ankitects Anki 安全漏洞 — Anki | 2.9 | Low | 2025-10-07 |
| CVE-2025-59835 | LangBot 代码问题漏洞 — LangBot | 8.8AI | High AI | 2025-10-02 |
| CVE-2025-59682 | Django 安全漏洞 — Django | 3.1 | Low | 2025-10-01 |
| CVE-2025-60020 | NNCP 安全漏洞 — NNCP | 6.4 | Medium | 2025-09-24 |
| CVE-2025-59341 | esm.sh 安全漏洞 — esm.sh | 7.5AI | High AI | 2025-09-17 |
| CVE-2025-59456 | JetBrains TeamCity 安全漏洞 — TeamCity | 5.5 | Medium | 2025-09-17 |
| CVE-2025-55115 | BMC Control-M 安全漏洞 — Control-M/Agent | 8.8 | High | 2025-09-16 |
| CVE-2025-10203 | Digilent WaveForms 安全漏洞 — WaveForms | 7.8 | High | 2025-09-15 |
| CVE-2025-58760 | Tautulli 安全漏洞 — Tautulli | 8.6 | High | 2025-09-09 |
| CVE-2025-53609 | Fortinet FortiWeb 安全漏洞 — FortiWeb | 4.7 | Medium | 2025-09-09 |
| CVE-2025-58752 | Vite 访问控制错误漏洞 — vite | 4.7AI | Medium AI | 2025-09-08 |
| CVE-2025-25048 | IBM Jazz Foundation 安全漏洞 — Jazz Foundation | 6.5 | Medium | 2025-09-04 |
| CVE-2025-55748 | XWiki Platform 安全漏洞 — xwiki-platform | 7.5AI | High AI | 2025-09-03 |
| CVE-2025-55747 | XWiki Platform 安全漏洞 — xwiki-platform | 7.5AI | High AI | 2025-09-03 |
| CVE-2025-9570 | Sunnet eHRD CTMS 安全漏洞 — eHRD CTMS | 4.9 | Medium | 2025-09-01 |
| CVE-2025-55202 | Opencast 安全漏洞 — opencast | 6.5 | - | 2025-08-29 |
| CVE-2025-9639 | Ai3 QbiCRMGateway 安全漏洞 — QbiCRMGateway | 7.5 | High | 2025-08-29 |
| CVE-2021-4459 | SMA Solar Technology AG Sunny Boy 安全漏洞 — Boy 3.0 | 6.5 | Medium | 2025-08-27 |
| CVE-2025-8464 | WordPress plugin Drag and Drop Multiple File Upload for Contact Form 安全漏洞 — Drag and Drop Multiple File Upload for Contact Form 7 | 5.3 | Medium | 2025-08-16 |
| CVE-2024-48892 | Fortinet FortiSOAR 安全漏洞 — FortiSOAR | 6.4 | Medium | 2025-08-12 |
| CVE-2024-40588 | Fortinet多款产品 安全漏洞 — FortiCamera | 4.2 | Medium | 2025-08-12 |
| CVE-2025-53779 | Microsoft Windows Kerberos 安全漏洞 — Windows Server 2025 | 7.2 | High | 2025-08-12 |
| CVE-2025-55013 | Assemblyline 4 Service Client 安全漏洞 — assemblyline | 4.2 | Medium | 2025-08-09 |
| CVE-2025-53082 | SAMSUNG DMS 安全漏洞 — Data Management Server | 6.1 | Medium | 2025-07-29 |
| CVE-2025-54531 | JetBrains TeamCity 安全漏洞 — TeamCity | 7.7 | High | 2025-07-28 |
| CVE-2025-54317 | Logpoint 安全漏洞 — Logpoint | 8.4 | High | 2025-07-20 |
CWE-23(相对路径遍历) 是常见的弱点类别,本平台收录该类弱点关联的 439 条 CVE 漏洞。