SigmaHQ/rules/windows/process_creation/win_attrib_hiding_files.yml

34 lines
999 B
YAML
Raw Normal View History

2020-01-30 16:26:09 +00:00
title: Hiding Files with Attrib.exe
2019-11-12 22:12:27 +00:00
id: 4281cb20-2994-4580-aa63-c8b86d019934
status: experimental
description: Detects usage of attrib.exe to hide files from users.
author: Sami Ruohonen
date: 2019/01/16
modified: 2020/08/27
logsource:
category: process_creation
product: windows
detection:
selection:
2020-10-15 20:41:44 +00:00
Image|endswith: '\attrib.exe'
CommandLine|contains: ' +h '
ini:
2020-10-15 20:41:44 +00:00
CommandLine|contains: '\desktop.ini '
intel:
2020-10-15 20:41:44 +00:00
ParentImage|endswith: '\cmd.exe'
CommandLine: +R +H +S +A \\*.cui
ParentCommandLine: C:\WINDOWS\system32\\*.bat
condition: selection and not (ini or intel)
fields:
- CommandLine
- ParentCommandLine
- User
tags:
- attack.defense_evasion
2020-06-16 20:46:08 +00:00
- attack.t1564.001
- attack.t1158 # an old one
falsepositives:
- 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)
- msiexec.exe hiding desktop.ini
level: low