CWE•Base•Stable•20 recent CVEs
CWE-426Untrusted Search Path
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.
[object Object]
Common consequences
- Integrity,Confidentiality,Availability,Access Control→Gain Privileges or Assume Identity,Execute Unauthorized Code or CommandsThere is the potential for arbitrary code execution with privileges of the vulnerable program.
- Availability→DoS: Crash, Exit, or RestartThe 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 DirectoriesThe program could send the output of unauthorized files to the attacker.
Potential mitigations
- Architecture and Design,ImplementationHard-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.
- ImplementationWhen 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
- ImplementationRemove 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.
- ImplementationCheck 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.
- ImplementationUse 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.
Related CWEs
Recent CVEs classified under this CWE
CVE-2026-03072026-09-10CVE-2026-811927.02026-09-08CVE-2026-801594.02026-09-08CVE-2026-785747.52026-09-08CVE-2026-697857.82026-09-08CVE-2026-693287.82026-09-08CVE-2026-842262026-09-07CVE-2026-828628.42026-08-31CVE-2026-816975.52026-08-27CVE-2026-757687.82026-08-25CVE-2026-786807.82026-08-25CVE-2026-781559.92026-08-23CVE-2026-557692026-08-20CVE-2026-168697.82026-08-19CVE-2026-748729.82026-08-17CVE-2026-166748.82026-08-13CVE-2026-148757.32026-08-13CVE-2026-146733.82026-08-13CVE-2026-02997.82026-08-13CVE-2026-561747.82026-08-11