where.exe
- File Path:
C:\Windows\SysWOW64\where.exe
- Description: Where - Lists location of files
Hashes
Type | Hash |
---|---|
MD5 | 80BA8362524994E603AA6603E04FD493 |
SHA1 | 5B7F2B3AEB0BC9F7071CD4D80AC7E0015194B712 |
SHA256 | EC3F1675FA9DC29391AC76F37EF9ADE0C437524A256F52C9BD820D53CBB77C75 |
SHA384 | 325522A33314C86132BA7C87D7C95B9FC35F09659A94F0CEF1348C974E96595BE7229ED96E345630F851E3C2FA2FBAA2 |
SHA512 | FFBC7621E02EA9D60FEF8247E691270A3D8BFCEB5C65639D6AB72ABE909E7E50C52147AB6D890BCDA7CCAB0A30AC225D8BAD2C9801D994A6F2FE1ABBACA62C0A |
SSDEEP | 768:RIXP7W+0XcsmFPdcOaq9JdFzDwQf3suRYKXQHmemt21Hxweds:RIXP7W+0XCPd8q9P9THAdtxfd |
Runtime Data
Usage (stdout):
WHERE [/R dir] [/Q] [/F] [/T] pattern...
Description:
Displays the location of files that match the search pattern.
By default, the search is done along the current directory and
in the paths specified by the PATH environment variable.
Parameter List:
/R Recursively searches and displays the files that match the
given pattern starting from the specified directory.
/Q Returns only the exit code, without displaying the list
of matched files. (Quiet mode)
/F Displays the matched filename in double quotes.
/T Displays the file size, last modified date and time for all
matched files.
pattern Specifies the search pattern for the files to match.
Wildcards * and ? can be used in the pattern. The
"$env:pattern" and "path:pattern" formats can also be
specified, where "env" is an environment variable and
the search is done in the specified paths of the "env"
environment variable. These formats should not be used
with /R. The search is also done by appending the
extensions of the PATHEXT variable to the pattern.
/? Displays this help message.
NOTE: The tool returns an error level of 0 if the search is
successful, of 1 if the search is unsuccessful and
of 2 for failures or errors.
Examples:
WHERE /?
WHERE myfilename1 myfile????.*
WHERE $windir:*.*
WHERE /R c:\windows *.exe *.dll *.bat
WHERE /Q ??.???
WHERE "c:\windows;c:\windows\system32:*.dll"
WHERE /F /T *.dll
Usage (stderr):
ERROR: Invalid argument or option - '/h'.
Type "WHERE /?" for usage help.
Signature
- Status: Signature verified.
- Serial:
33000000BCE120FDD27CC8EE930000000000BC
- Thumbprint:
E85459B23C232DB3CB94C7A56D47678F58E8E51E
- Issuer: CN=Microsoft Windows Production PCA 2011, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
- Subject: CN=Microsoft Windows, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
File Metadata
- Original Filename: where.exe.mui
- Product Name: Microsoft Windows Operating System
- Company Name: Microsoft Corporation
- File Version: 10.0.14393.0 (rs1_release.160715-1616)
- Product Version: 10.0.14393.0
- Language: English (United States)
- Legal Copyright: Microsoft Corporation. All rights reserved.
Possible Misuse
The following table contains possible examples of where.exe
being misused. While where.exe
is not inherently malicious, its legitimate functionality can be abused for malicious purposes.
Source | Source File | Example | License |
---|---|---|---|
sigma | proc_creation_win_susp_where_execution.yml | where_exe: |
DRL 1.0 |
sigma | proc_creation_win_susp_where_execution.yml | Image\|endswith: '\where.exe' |
DRL 1.0 |
atomic-red-team | T1562.001.md | if ((cmd.exe /c “where.exe Sysmon.exe 2> nul | findstr Sysmon 2> nul”) -or (Test-Path $env:Temp\Sysmon\Sysmon.exe)) { exit 0 } else { exit 1 } | MIT License. © 2018 Red Canary |
atomic-red-team | T1562.001.md | if(cmd.exe /c “where.exe Sysmon.exe 2> nul | findstr Sysmon 2> nul”) { C:\Windows\Sysmon.exe -accepteula -i } else | MIT License. © 2018 Red Canary |
Additional Info*
*The information below is copied from MicrosoftDocs, which is maintained by Microsoft. Available under CC BY 4.0 license.
where
Displays the location of files that match the given search pattern.
Syntax
where [/r <Dir>] [/q] [/f] [/t] [$<ENV>:|<Path>:]<Pattern>[ ...]
Parameters
Parameter | Description |
---|---|
/r <Dir> | Indicates a recursive search, starting with the specified directory. |
/q | Returns an exit code (0 for success, 1 for failure) without displaying the list of matched files. |
/f | Displays the results of the where command in quotation marks. |
/t | Displays the file size and the last modified date and time of each matched file. |
[$<ENV>:|<Path>:]<Pattern>[ …] | Specifies the search pattern for the files to match. At least one pattern is required, and the pattern can include wildcard characters (* and ?). By default, where searches the current directory and the paths that are specified in the PATH environment variable. You can specify a different path to search by using the format $ENV:Pattern (where ENV is an existing environment variable containing one or more paths) or by using the format Path:Pattern (where Path is the directory path you want to search). These optional formats should not be used with the /r command-line option. |
/? | Displays help at the command prompt. |
Remarks
- If you do not specify a file name extension, the extensions listed in the PATHEXT environment variable are appended to the pattern by default.
- Where can run recursive searches, display file information such as date or size, and accept environment variables in place of paths on local computers.
Examples
To find all files named Test in drive C of the current computer and its subdirectories, type:
where /r c:\ test
To list all files in the Public directory, type:
where $public:*.*
To find all files named Notepad in drive C of the remote computer, Computer1, and its subdirectories, type:
where /r \\computer1\c notepad.*
Additional References
MIT License. Copyright (c) 2020-2021 Strontic.