ID | Name |
---|---|
T1564.001 | Hidden Files and Directories |
T1564.002 | Hidden Users |
T1564.003 | Hidden Window |
T1564.004 | NTFS File Attributes |
T1564.005 | Hidden File System |
T1564.006 | Run Virtual Instance |
T1564.007 | VBA Stomping |
T1564.008 | Email Hiding Rules |
T1564.009 | Resource Forking |
Adversaries may use NTFS file attributes to hide their malicious data in order to evade detection. Every New Technology File System (NTFS) formatted partition contains a Master File Table (MFT) that maintains a record for every file/directory on the partition. [1] Within MFT entries are file attributes, [2] such as Extended Attributes (EA) and Data [known as Alternate Data Streams (ADSs) when more than one Data attribute is present], that can be used to store arbitrary data (and even complete files). [1] [3] [4] [5]
Adversaries may store malicious data or binaries in file attribute metadata instead of directly in files. This may be done to evade some defenses, such as static indicator scanning tools and anti-virus. [6] [4]
ID | Name | Description |
---|---|---|
S0504 | Anchor | |
G0050 | APT32 |
APT32 used NTFS alternate data streams to hide their payloads.[8] |
S0373 | Astaroth |
Astaroth can abuse alternate data streams (ADS) to store content for malicious payloads.[9] |
S0570 | BitPaymer |
BitPaymer has copied itself to the |
S0404 | esentutl |
esentutl can be used to read and write alternate data streams.[11] |
S0361 | Expand |
Expand can be used to download or copy a file into an alternate data stream.[12] |
S0168 | Gazer |
Gazer stores configuration items in alternate data streams (ADSs) if the Registry is not accessible.[13] |
S0397 | LoJax |
LoJax has loaded an embedded NTFS DXE driver to be able to access and write to NTFS partitions.[14] |
S0139 | PowerDuke |
PowerDuke hides many of its backdoor payloads in an alternate data stream (ADS).[15] |
S0145 | POWERSOURCE |
If the victim is using PowerShell 3.0 or later, POWERSOURCE writes its decoded payload to an alternate data stream (ADS) named kernel32.dll that is saved in |
S0019 | Regin |
The Regin malware platform uses Extended Attributes to store encrypted executables.[17] |
S0476 | Valak |
Valak has the ability save and execute files as alternate data streams (ADS).[18][19][20] |
S0612 | WastedLocker |
WastedLocker has the ability to save and execute files as an alternate data stream (ADS).[21] |
S0027 | Zeroaccess |
Some variants of the Zeroaccess Trojan have been known to store data in Extended Attributes.[22] |
ID | Mitigation | Description |
---|---|---|
M1022 | Restrict File and Directory Permissions |
Consider adjusting read and write permissions for NTFS EA, though this should be tested to ensure routine OS operations are not impeded. [23] |
ID | Data Source | Data Component |
---|---|---|
DS0017 | Command | Command Execution |
DS0022 | File | File Metadata |
File Modification | ||
DS0009 | Process | OS API Execution |
Forensic techniques exist to identify information stored in NTFS EA. [6] Monitor calls to the ZwSetEaFile
and ZwQueryEaFile
Windows API functions as well as binaries used to interact with EA, [24] [25] and consider regularly scanning for the presence of modified information. [1]
There are many ways to create and interact with ADSs using Windows utilities. Monitor for operations (execution, copies, etc.) with file names that contain colons. This syntax (ex: file.ext:ads[.ext]
) is commonly associated with ADSs. [5] [24] [25] For a more exhaustive list of utilities that can be used to execute and create ADSs, see https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f.
The Streams tool of Sysinternals can be used to uncover files with ADSs. The dir /r
command can also be used to display ADSs. [26] Many PowerShell commands (such as Get-Item, Set-Item, Remove-Item, and Get-ChildItem) can also accept a -stream
parameter to interact with ADSs. [4] [5]