Binary paths (classic)
The Nexthink solution stores the paths from where employees execute each binary file of their applications, up to a maximum of 20 paths per binary. The system stores binary paths in lowercase letters, converting them from uppercase when needed. They use the forward slash /
to separate the names of folders in the hierarchy and is independent of the convention the underlying operating system of the devices uses.
Typical applications usually install their executable binary files in the same standard locations in the filesystem, independently of the device on which runs them. For example, the system installs most software applications under the Program Files directory of a Windows device. The execution of binaries from multiple or unusual locations usually indicates irregular employee behavior or even the presence of malware.
In the next section, learn what techniques Nexthink uses to avoid reporting too many paths for every single binary. If a path does not fall into any of the special categories discussed, they are stored in their full form.
Path aliases
Path aliases replace well-known directories with keywords, using a format similar to that of environment variables in Windows. In this way, binary paths of well-known locations become language neutral and independent of the drive where the binary is located. For instance, the paths D:\Program Files
(English version) and C:\Programme
(German version) both become %ProgramFiles%
when stored as a binary path.
Contrary to the general rule for binary paths, path aliases may contain uppercase characters. Below is a table with the list of all path aliases, their description and a few examples of the folders that they replace:
Path alias | Description | Example |
---|---|---|
| Windows directory |
|
| Windows system directory |
|
| Software installation directory |
|
| Directory containing user-specific data |
|
| Directory holding data accessible by all users |
|
| Directory holding user-specific temporary files. |
|
| Temporary folders in hexadecimal format under the root directory |
|
| Network shared folder |
|
| Non-permanent storage devices |
|
| Directory holding deleted files |
|
Ellipsis in binary paths
Ellipsis in aliased paths
For privacy reasons and to avoid path explosion, the system does not record the complete binary path for binaries whose working path lies inside some of the aliased locations. Binaries executed from these locations do not have their full path stored:
%RecylceBin%
%UserProfile%
%AllProfile%
%ProfileTemp%
%WindowsTemp%
%RemovableDrive%
Instead, a three-dot ellipsis /.../
replaces the part of the path after the alias. For example, the path of a typical binary installer setup.exe
executed from a temporary Windows folder is recorded as follow:
%WindowsTemp%/.../setup.exe
Ellipsis for automatically generated folders
The Nexthink solution is also capable of detecting folders whose names are automatically generated identifiers. These are usually very long alphanumerical names that are meaningless to a human reader. Therefore, the name of these folders is not stored as is in binary paths, but replaced by an ellipsis /.../
.
The following table contains the types of identifiers and some examples of what each one looks like in the filesystem:
Type of ID | Examples |
---|---|
GUID |
|
MD5 |
|
SHA1 |
|
Long Hexadecimal strings | Most hexadecimal strings containing 10 or more characters. |
Long numbers | Most strings containing at least 10 digits in a row, except if the digits are all the same. |
Last updated