File System Permissions Weakness

ID: T1044 Tactic: Persistence, Privilege Escalation

Processes may automatically execute specific binaries as part of their functionality or to perform other actions. If the permissions on the file system directory containing a target binary, or permissions on the binary itself, are improperly set, then the target binary may be overwritten with another binary using user-level permissions and executed by the original process. If the original process and thread are running under a higher permissions level, then the replaced binary will also execute under higher-level permissions, which could include SYSTEM.

Adversaries may use this technique to replace legitimate binaries with malicious ones as a means of executing code at a higher permissions level. If the executing process is set to run at a specific time or during a certain event (e.g., system bootup) then this technique can also be used for persistence.

Services

Manipulation of Windows service binaries is one variation if this technique. Adversaries may replace a legitimate service executable with their own executable to gain persistence and/or privilege escalation to the account context the service is set to execute under (local/domain account, SYSTEM, Local-service, or Network Service). Once the service is started, either directly by the user (if appropriate access is available) or through some other means, such as a system restart if the service start on bootup, the replaced executable will run instead of the original service executable.

Executable Installers

Another variation if this technique can be performed by taking advantage of a weakness that is common in executable, self-extracting installers. During the installation process, it is common for installers to use a sub-directory within %TEMP% directory to unpack binaries such as DLLs, EXEs, or other payloads. When installers create sub-directories and files they often do not set appropriate permissions to restrict write access, which allows for execution of unstrusted code placed in the sub-directories or overwriting of binaries used in the installation process. This behavior is related to and may take advantage of DLL Search Order Hijacking. Some installers may also require elevated privileges that will result in privilege escalation when executing adversary controlled code. This behavior is related to Bypass User Account Control. Several examples of this weakness in existing common installers have been reported to software vendors.

Last updated