545 vulnerabilities classified as CWE-427 (对搜索路径元素未加控制). AI Chinese analysis included.
CWE-427 represents a critical input validation weakness where software relies on an uncontrolled search path to locate resources, allowing unintended actors to manipulate the lookup process. This vulnerability is typically exploited by attackers who place malicious executables or libraries in a directory that precedes legitimate system paths in the search order. When the application executes, it inadvertently loads the attacker-controlled code instead of the intended resource, leading to arbitrary code execution or privilege escalation. Developers mitigate this risk by strictly defining absolute paths for all resource lookups, ensuring that the search order is deterministic and immune to directory manipulation. Additionally, implementing secure environment variable handling and validating the integrity of loaded libraries further prevents attackers from hijacking the execution flow through path traversal techniques.
... System.Runtime.getRuntime().exec("make"); ...func ExecuteGitCommand(name string, arg []string) error { c := exec.Command(name, arg...) var err error c.Path, err = exec.LookPath(name) if err != nil { return err } }| CVE ID | Title | CVSS | Severity | Published |
|---|---|---|---|---|
| CVE-2017-12717 | Advantech WebAccess 安全漏洞 — Advantech WebAccess | 7.8 | - | 2017-08-30 |
| CVE-2017-11159 | Synology Photo Station Uploader for Windows 安全漏洞 — Photo Station Uploader | 7.8 | - | 2017-08-23 |
| CVE-2017-5176 | Rockwell Automation Connected Components Workbench 安全漏洞 — Rockwell Automation Connected Components Workbench | 7.0 | - | 2017-05-19 |
| CVE-2017-6051 | BLF-Tech LLC VisualView HMI 安全漏洞 — BLF-Tech LLC VisualView HMI | 7.8 | - | 2017-05-08 |
| CVE-2017-6033 | Schneider Electric Interactive Graphical SCADA System Software 安全漏洞 — Schneider Electric Interactive Graphical SCADA System Software | 7.8 | - | 2017-04-07 |
Vulnerabilities classified as CWE-427 (对搜索路径元素未加控制) represent 545 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.