552 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-12313 | Cisco Network Academy Packet Tracer software 安全漏洞 — Cisco Network Academy Packet Tracer | 6.7 | - | 2017-11-16 |
| CVE-2017-12314 | Cisco FindIT Network Discovery Utility 安全漏洞 — Cisco FindIT Discovery Utility | 7.8 | - | 2017-11-16 |
| CVE-2017-14020 | 多款AutomationDirect产品安全漏洞 — CLICK Programming Software (Part Number C0-PGMSW) | 7.8 | - | 2017-11-13 |
| CVE-2017-14029 | Trihedral VTScada 安全漏洞 — Trihedral Engineering Limited VTScada | 7.8 | - | 2017-11-06 |
| CVE-2017-14017 | Progea Movicon 安全漏洞 — Progea Movicon SCADA/HMI | 7.8 | - | 2017-10-19 |
| CVE-2017-5147 | AzeoTech DAQFactory 安全漏洞 — AzeoTech DAQFactory | 8.4 | - | 2017-09-09 |
| CVE-2017-11158 | Synology Cloud Station Drive for Windows 安装程序漏洞 — Cloud Station Drive | 7.8 | - | 2017-08-31 |
| 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 552 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.