mirror of
https://github.com/valitydev/SigmaHQ.git
synced 2024-11-08 18:23:52 +00:00
7602309138
* Converted (to generic sigma) rules * Converter outputs by default with indentation 4
31 lines
878 B
YAML
31 lines
878 B
YAML
title: Hiding files with attrib.exe
|
|
status: experimental
|
|
description: Detects usage of attrib.exe to hide files from users.
|
|
author: Sami Ruohonen
|
|
logsource:
|
|
category: process_creation
|
|
product: windows
|
|
detection:
|
|
selection:
|
|
Image: '*\attrib.exe'
|
|
CommandLine: '* +h *'
|
|
ini:
|
|
CommandLine: '*\desktop.ini *'
|
|
intel:
|
|
ParentImage: '*\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
|
|
- attack.persistence
|
|
- attack.t1158
|
|
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
|