Hiding Files with Attrib.exe

Detects usage of attrib.exe to hide files from users.

Sigma rule (View on GitHub)

 1title: Hiding Files with Attrib.exe
 2id: 4281cb20-2994-4580-aa63-c8b86d019934
 3status: test
 4description: Detects usage of attrib.exe to hide files from users.
 5references:
 6    - https://unit42.paloaltonetworks.com/unit42-sure-ill-take-new-combojack-malware-alters-clipboards-steal-cryptocurrency/
 7    - https://www.uptycs.com/blog/lolbins-are-no-laughing-matter
 8author: Sami Ruohonen
 9date: 2019/01/16
10modified: 2023/03/14
11tags:
12    - attack.defense_evasion
13    - attack.t1564.001
14logsource:
15    category: process_creation
16    product: windows
17detection:
18    selection_img:
19        - Image|endswith: '\attrib.exe'
20        - OriginalFileName: 'ATTRIB.EXE'
21    selection_cli:
22        CommandLine|contains: ' +h '
23    filter_msiexec:
24        CommandLine|contains: '\desktop.ini '
25    filter_intel:
26        ParentImage|endswith: '\cmd.exe'
27        CommandLine: '+R +H +S +A \\\*.cui'
28        ParentCommandLine: 'C:\\WINDOWS\\system32\\\*.bat'
29    condition: all of selection_* and not 1 of filter_*
30falsepositives:
31    - IgfxCUIService.exe hiding *.cui files via .bat script (attrib.exe a child of cmd.exe and igfxCUIService.exe is the parent of the cmd.exe)
32    - Msiexec.exe hiding desktop.ini
33level: medium

References

Related rules

to-top