Goal Reached Thanks to every supporter — we hit 100%!

Goal: 1000 CNY · Raised: 1336 CNY

100%

CWE-426 (不可信的搜索路径) — Vulnerability Class 229

229 vulnerabilities classified as CWE-426 (不可信的搜索路径). AI Chinese analysis included.

CWE-426 represents a critical input validation weakness where software relies on an externally-supplied search path to locate essential resources, such as executables or configuration files, rather than using absolute paths or trusted directories. Attackers typically exploit this vulnerability by manipulating the environment variable or system path to point to malicious code placed in a directory with higher precedence than the legitimate resource location. This allows them to execute arbitrary programs, access unauthorized data, or alter configurations unexpectedly, effectively achieving privilege escalation or remote code execution. To prevent this, developers must enforce strict path validation, utilize absolute paths for critical resources, and implement secure coding practices that restrict search directories to trusted, controlled locations. Additionally, applying the principle of least privilege ensures that even if an attacker manipulates the path, they cannot execute harmful code due to insufficient permissions.

MITRE CWE Description
The product searches for critical resources using an externally-supplied search path that can point to resources that are not under the product's direct control. This might allow attackers to execute their own programs, access unauthorized data files, or modify configuration in unexpected ways. If the product uses a search path to locate critical resources such as programs, then an attacker could modify that search path to point to a malicious program, which the targeted product would then execute. The problem extends to any type of critical resource that the product trusts. Some of the most common variants of untrusted search path are: In various UNIX and Linux-based systems, the PATH environment variable may be consulted to locate executable programs, and LD_PRELOAD may be used to locate a separate library. In various Microsoft-based systems, the PATH environment variable is consulted to locate a DLL, if the DLL is not found in other paths that appear earlier in the search order.
Common Consequences (3)
Integrity, Confidentiality, Availability, Access Control Gain Privileges or Assume Identity, Execute Unauthorized Code or Commands
There is the potential for arbitrary code execution with privileges of the vulnerable program.
Availability DoS: Crash, Exit, or Restart
The program could be redirected to the wrong files, potentially triggering a crash or hang when the targeted file is too large or does not have the expected format.
Confidentiality Read Files or Directories
The program could send the output of unauthorized files to the attacker.
Mitigations (5)
Architecture and Design, Implementation Hard-code the search path to a set of known-safe values (such as system directories), or only allow them to be specified by the administrator in a configuration file. Do not allow these settings to be modified by an external party. Be careful to avoid related weaknesses such as CWE-426 and CWE-428.
Implementation When invoking other programs, specify those programs using fully-qualified pathnames. While this is an effective approach, code that uses fully-qualified pathnames might not be portable to other systems that do not use the same pathnames. The portability can be improved by locating the full-qualified paths in a centralized, easily-modifiable location within the source code, and having the code ref…
Implementation Remove or restrict all environment settings before invoking other programs. This includes the PATH environment variable, LD_LIBRARY_PATH, and other settings that identify the location of code libraries, and any application-specific search paths.
Implementation Check your search path before use and remove any elements that are likely to be unsafe, such as the current working directory or a temporary files directory.
Implementation Use other functions that require explicit paths. Making use of any of the other readily available functions that require explicit paths is a safe way to avoid this problem. For example, system() in C does not require a full path since the shell can take care of it, while execl() and execv() require a full path.
Examples (2)
This program is intended to execute a command that lists the contents of a restricted directory, then performs other actions. Assume that it runs with setuid privileges in order to bypass the permissions check by the operating system.
#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(...); ...
Bad · C
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.
Attack
The following code from a system utility uses the system property APPHOME to determine the directory in which it is installed and then executes an initialization script based on a relative path from the specified directory.
... String home = System.getProperty("APPHOME"); String cmd = home + INITCMD; java.lang.Runtime.getRuntime().exec(cmd); ...
Bad · Java
CVE ID Title CVSS Severity Published
CVE-2023-26036 ZoneMinder contains Local File Inclusion vulnerability — zoneminder 8.1 High 2023-02-25
CVE-2023-23920 Node.js 代码问题漏洞 — Node 5.8 - 2023-02-23
CVE-2023-22743 Git for Windows' installer is susceptible to DLL side loading attacks — git 7.3 High 2023-02-14
CVE-2023-23618 gitk can inadvertently call executables in the worktree — git 8.6 High 2023-02-14
CVE-2022-35868 Siemens TIA Multiuser Server 代码问题漏洞 — TIA Multiuser Server V14 6.7 Medium 2023-02-14
CVE-2022-4883 libXpm 代码问题漏洞 — libXpm 8.8 - 2023-02-07
CVE-2022-41953 Git clone remote code execution vulnerability in git-for-windows — git 8.6 High 2023-01-17
CVE-2023-21764 Microsoft Exchange Server Elevation of Privilege Vulnerability — Microsoft Exchange Server 2019 Cumulative Update 11 7.8 High 2023-01-10
CVE-2023-21763 Microsoft Exchange Server Elevation of Privilege Vulnerability — Microsoft Exchange Server 2019 Cumulative Update 11 7.8 High 2023-01-10
CVE-2022-31253 openldap2: /usr/lib/openldap/start allows ldap user/group to recursively chown arbitrary directory trees to itself — Factory 7.1 High 2022-11-09
CVE-2022-3734 Redis on Windows dbghelp.dll uncontrolled search path — Redis 6.3 Medium 2022-10-28
CVE-2022-0074 Privilege Escalation in OpenLiteSpeed Web Server — OpenLiteSpeed Web Server 8.8 High 2022-10-27
CVE-2022-36070 Poetry's Untrusted Search Path can lead to Local Code Execution on Windows — poetry 7.3 High 2022-09-07
CVE-2022-31012 Git for Windows' installer can be tricked into executing an untrusted binary — git 8.2 High 2022-07-12
CVE-2017-20123 Viscosity DLL untrusted search path — Viscosity 8.8 High 2022-06-30
CVE-2022-24826 Git LFS can execute a binary from the current directory on Windows — git-lfs 9.8 Critical 2022-04-19
CVE-2022-0014 Cortex XDR Agent: Unintended Program Execution When Using Live Terminal Session — Cortex XDR Agent 6.7 Medium 2022-01-12
CVE-2011-4125 Calibre 代码问题漏洞 — Calibre 9.8 - 2021-10-27
CVE-2021-36297 SupportAssist Client 代码问题漏洞 — SupportAssist Client Consumer 7.8 High 2021-09-28
CVE-2021-31841 DLL side loading vulnerability in MA for Windows — McAfee Agent for Windows 8.2 High 2021-09-22
CVE-2021-37617 Untrusted Search Path in Nextcloud Desktop Client — security-advisories 7.3 High 2021-08-18
CVE-2021-21562 Dell Technologies Dell PowerScale OneFS代码问题漏洞 — PowerScale OneFS 4.4 Medium 2021-08-02
CVE-2021-25698 Teradici PCoIP Standard Agent代码问题漏洞 — - PCoIP Standard Agent - PCoIP Graphics Agent - PCoIP Software Client 7.8 - 2021-07-21
CVE-2021-25699 Teradici PCoIP Software Agent 代码问题漏洞 — - PCoIP Standard Agent - PCoIP Graphics Agent - PCoIP Software Client 7.8 - 2021-07-21
CVE-2021-21078 Adobe Creative Cloud Unquoted Service Path in CCXProcess — Creative Cloud (desktop component) 7.3 - 2021-03-12
CVE-2021-21055 Adobe Dreamweaver Untrusted Search Path Vulnerability Could Lead To Information Disclosure — Dreamweaver 6.2 Medium 2021-02-11
CVE-2021-21237 Git LFS can execute a Git binary from the current directory on Windows — git-lfs 7.2 High 2021-01-15
CVE-2020-5144 SonicWall Global VPN client 代码问题漏洞 — SonicWall Global VPN Client 8.4 - 2020-10-28
CVE-2020-6023 Check Point ZoneAlarm 代码问题漏洞 — Check Point ZoneAlarm 7.8 - 2020-10-27
CVE-2020-8338 Lenovo Diagnostics 代码问题漏洞 — Diagnostics 7.8 High 2020-10-14

Vulnerabilities classified as CWE-426 (不可信的搜索路径) represent 229 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.