Files
blue-team-tools/rules/linux/macos/process_creation/macos_space_after_filename.yml
T
remotephone be59ca0f01 Update macos_space_after_filename.yml
Fixing new line and updating change date
2021-11-20 15:54:24 -06:00

24 lines
722 B
YAML

title: Space After Filename - macOS
id: b6e2a2e3-2d30-43b1-a4ea-071e36595690
status: experimental
description: Detects attempts to masquerade as legitimate files by adding a space to the end of the filename.
author: remotephone
date: 2021/11/20
references:
- https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1036.006/T1036.006.md
logsource:
product: macos
category: process_creation
detection:
selection1:
CommandLine|endswith: ' '
selection2:
ImageName|endswith: ' '
condition: selection1 or selection2
falsepositives:
- Mistyped commands or legitimate binaries named to match the pattern
level: low
tags:
- attack.defense_evasion
- attack.t1036.006