Files
blue-team-tools/rules/windows/process_creation/proc_creation_win_icacls_deny.yml
T
Nasreddine Bencherchali e3503d5d60 feat: more updates
2023-03-06 00:39:26 +01:00

28 lines
891 B
YAML

title: Use Icacls to Hide File to Everyone
id: 4ae81040-fc1c-4249-bfa3-938d260214d9
status: experimental
description: Detect use of icacls to deny access for everyone in Users folder sometimes used to hide malicious files
references:
- https://app.any.run/tasks/1df999e6-1cb8-45e3-8b61-499d1b7d5a9b/
author: frack113
date: 2022/07/18
tags:
- attack.defense_evasion
- attack.t1564.001
logsource:
category: process_creation
product: windows
detection:
selection_icacls:
- OriginalFileName: 'iCACLS.EXE'
- Image|endswith: '\icacls.exe'
selection_cmd: #icacls "C:\Users\admin\AppData\Local\37f92fe8-bcf0-4ee0-b8ba-561f797f5696" /deny *S-1-1-0:(OI)(CI)(DE,DC)
CommandLine|contains|all:
- 'C:\Users\'
- '/deny'
- '*S-1-1-0:'
condition: all of selection*
falsepositives:
- Legitimate use
level: medium