T1574.008 Path Interception by Search Order Hijacking Mappings

Adversaries may execute their own malicious payloads by hijacking the search order used to load other programs. Because some programs do not call other programs using the full path, adversaries may place their own file in the directory where the calling program is located, causing the operating system to launch their malicious software at the request of the calling program.

Search order hijacking occurs when an adversary abuses the order in which Windows searches for programs that are not given a path. Unlike DLL Search Order Hijacking, the search order differs depending on the method that is used to execute the program. (Citation: Microsoft CreateProcess) (Citation: Windows NT Command Shell) (Citation: Microsoft WinExec) However, it is common for Windows to search in the directory of the initiating program before searching through the Windows system directory. An adversary who finds a program vulnerable to search order hijacking (i.e., a program that does not specify the path to an executable) may take advantage of this vulnerability by creating a program named after the improperly specified program and placing it within the initiating program's directory.

For example, "example.exe" runs "cmd.exe" with the command-line argument <code>net user</code>. An adversary may place a program called "net.exe" within the same directory as example.exe, "net.exe" will be run instead of the Windows system utility net. In addition, if an adversary places a program called "net.com" in the same directory as "net.exe", then <code>cmd.exe /C net user</code> will execute "net.com" instead of "net.exe" due to the order of executable extensions defined under PATHEXT. (Citation: Microsoft Environment Property)

Search order hijacking is also a common practice for hijacking DLL loads and is covered in DLL Search Order Hijacking.

View in MITRE ATT&CK®

NIST 800-53 Mappings

Capability ID Capability Description Mapping Type ATT&CK ID ATT&CK Name Notes
CA-07 Continuous Monitoring mitigates T1574.008 Path Interception by Search Order Hijacking
CM-06 Configuration Settings mitigates T1574.008 Path Interception by Search Order Hijacking
RA-05 Vulnerability Monitoring and Scanning mitigates T1574.008 Path Interception by Search Order Hijacking
CM-08 System Component Inventory mitigates T1574.008 Path Interception by Search Order Hijacking
SI-10 Information Input Validation mitigates T1574.008 Path Interception by Search Order Hijacking
SI-03 Malicious Code Protection mitigates T1574.008 Path Interception by Search Order Hijacking
SI-07 Software, Firmware, and Information Integrity mitigates T1574.008 Path Interception by Search Order Hijacking
CM-02 Baseline Configuration mitigates T1574.008 Path Interception by Search Order Hijacking
CM-02 Baseline Configuration mitigates T1574.008 Path Interception by Search Order Hijacking
CM-07 Least Functionality mitigates T1574.008 Path Interception by Search Order Hijacking
SI-04 System Monitoring mitigates T1574.008 Path Interception by Search Order Hijacking
AC-02 Account Management mitigates T1574.008 Path Interception by Search Order Hijacking
AC-03 Access Enforcement mitigates T1574.008 Path Interception by Search Order Hijacking
AC-04 Information Flow Enforcement mitigates T1574.008 Path Interception by Search Order Hijacking
AC-05 Separation of Duties mitigates T1574.008 Path Interception by Search Order Hijacking
AC-06 Least Privilege mitigates T1574.008 Path Interception by Search Order Hijacking