CWE-426 不可信的搜索路径 类弱点 204 条 CVE 漏洞汇总,含 AI 中文分析。
CWE-426 属于不信任搜索路径漏洞,指程序使用外部提供的路径查找关键资源,导致可能访问不受控的文件。攻击者常通过操纵环境变量或配置,将恶意程序或数据注入搜索路径,从而执行任意代码或窃取敏感信息。开发者应避免使用动态搜索路径,改用硬编码的绝对路径,或严格验证路径来源及权限,确保仅加载受信任目录下的资源,以阻断攻击链。
#define DIR "/restricted/directory" char cmd[500]; sprintf(cmd, "ls -l %480s", DIR); /* Raise privileges to those needed for accessing DIR. */ RaisePrivileges(...); system(cmd); DropPrivileges(...); ...The user sets the PATH to reference a directory under the attacker's control, such as "/my/dir/". The attacker creates a malicious program called "ls", and puts that program in /my/dir The user executes the program. When system() is executed, the shell consults the PATH to find the ls program The program finds the attacker's malicious program, "/my/dir/ls". It doesn't find "/bin/ls" because PATH does not contain "/bin/". The program executes the attacker's malicious program with the raised privileges.... String home = System.getProperty("APPHOME"); String cmd = home + INITCMD; java.lang.Runtime.getRuntime().exec(cmd); ...| CVE ID | 标题 | CVSS | 风险等级 | Published |
|---|---|---|---|---|
| CVE-2024-13158 | Ivanti EPM 安全漏洞 — Endpoint Manager | 7.2 | High | 2025-01-14 |
| CVE-2025-0459 | RetroArch 代码问题漏洞 — RetroArch | 5.3 | Medium | 2025-01-14 |
| CVE-2024-53866 | pnpm 代码问题漏洞 — pnpm | 9.8 | - | 2024-12-10 |
| CVE-2024-11454 | Autodesk Revit 安全漏洞 — Revit | 7.8 | High | 2024-12-09 |
| CVE-2023-1521 | SUSE Linux Enterprise Server for SAP Applications 安全漏洞 — sccache | 7.4 | - | 2024-11-26 |
| CVE-2024-49515 | Adobe Substance 3D Painter 代码问题漏洞 — Substance3D - Painter | 7.8 | High | 2024-11-12 |
| CVE-2024-36507 | Fortinet FortiClientWindows 安全漏洞 — FortiClientWindows | 6.7 | High | 2024-11-12 |
| CVE-2024-49043 | Microsoft SQL Server 代码问题漏洞 — Microsoft SQL Server 2017 (GDR) | 7.8 | High | 2024-11-12 |
| CVE-2024-7995 | Autodesk VRED Design 安全漏洞 — VRED Design | 7.8 | High | 2024-11-05 |
| CVE-2023-32266 | OpenText Application Lifecycle Management 代码问题漏洞 — Application Lifecycle Management (ALM),Quality Center | 7.3AI | HighAI | 2024-10-16 |
| CVE-2024-47422 | Adobe Framemaker 代码问题漏洞 — Adobe Framemaker | 7.8 | High | 2024-10-09 |
| CVE-2024-43616 | Microsoft Office 代码问题漏洞 — Microsoft 365 Apps for Enterprise | 7.8 | High | 2024-10-08 |
| CVE-2024-43576 | Microsoft Office 代码问题漏洞 — Microsoft 365 Apps for Enterprise | 7.8 | High | 2024-10-08 |
| CVE-2024-8733 | HP One Agent Software 安全漏洞 — HP One Agent Software | 8.0 | High | 2024-10-02 |
| CVE-2024-6769 | Microsoft多款产品 安全漏洞 — Windows 10 | 6.7 | Medium | 2024-09-26 |
| CVE-2024-44103 | Ivanti Workspace Control 安全漏洞 — Workspace Control | 8.8 | High | 2024-09-10 |
| CVE-2024-45281 | SAP BusinessObjects Business Intelligence Platform 代码问题漏洞 — SAP BusinessObjects Business Intelligence Platform | 5.8 | Medium | 2024-09-10 |
| CVE-2024-6473 | Yandex Browser 安全漏洞 — Browser | 7.8AI | HighAI | 2024-09-03 |
| CVE-2024-38305 | Dell SupportAssist for Home PCs 代码问题漏洞 — SupportAssist for Home PCs | 7.3 | High | 2024-08-21 |
| CVE-2024-42439 | Zoom Meeting SDK和Zoom Workplace 安全漏洞 — Zoom Workplace Desktop App for macOS and Zoom Meeting SDK for macOS | 6.5 | Medium | 2024-08-14 |
| CVE-2024-41865 | Adobe Dimension 代码问题漏洞 — Dimension | 7.8 | High | 2024-08-14 |
| CVE-2024-6975 | Cato Networks Windows SDP Client 安全漏洞 — SDP Client | 8.8 | High | 2024-07-31 |
| CVE-2024-6974 | Cato Networks Windows SDP Client 安全漏洞 — SDP Client | 8.8 | High | 2024-07-31 |
| CVE-2024-34123 | Adobe Premiere Pro 代码问题漏洞 — Premiere Pro | 7.0 | High | 2024-07-09 |
| CVE-2024-35260 | Microsoft Power Platform 安全漏洞 — Microsoft Power Platform | 8.0 | High | 2024-06-27 |
| CVE-2024-30100 | Microsoft SharePoint 代码问题漏洞 — Microsoft SharePoint Enterprise Server 2016 | 7.8 | High | 2024-06-11 |
| CVE-2024-28133 | PHOENIX CONTACT CHARX SEC-3000 1.5.1及 代码问题漏洞 — CHARX SEC-3000 | 7.8 | High | 2024-05-14 |
| CVE-2024-32019 | Netdata 安全漏洞 — netdata | 8.8 | High | 2024-04-12 |
| CVE-2024-20693 | Microsoft Windows Kernel 安全漏洞 — Windows 10 Version 1809 | 7.8 | High | 2024-04-09 |
| CVE-2024-20754 | Adobe Lightroom Desktop 代码问题漏洞 — Lightroom Desktop | 7.8 | High | 2024-03-18 |
CWE-426(不可信的搜索路径) 是常见的弱点类别,本平台收录该类弱点关联的 204 条 CVE 漏洞。