Files
blue-team-tools/rules/linux/macos_local_groups.yml
T

37 lines
872 B
YAML
Raw Normal View History

2020-10-11 18:15:53 +02:00
title: Local Groups Discovery
id: 89bb1f97-c7b9-40e8-b52b-7d6afbd67276
status: experimental
description: Detects enumeration of local system groups
2020-10-18 20:28:55 +02:00
author: Ömer Günal, Alejandro Ortuno, oscd.community
2020-10-11 18:15:53 +02:00
date: 2020/10/11
references:
- https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1069.001/T1069.001.md
logsource:
category: process_creation
product: macos
detection:
selection_1:
Image|endswith:
- '/dscacheutil'
CommandLine|contains|all:
- '-q'
- 'group'
2020-10-11 18:15:53 +02:00
selection_2:
Image|endswith:
- '/cat'
2020-10-11 18:15:53 +02:00
CommandLine|contains:
- '/etc/group'
selection_3:
Image|endswith:
- '/dscl'
CommandLine|contains|all:
- '-list'
- '/groups'
2020-10-11 18:15:53 +02:00
condition: 1 of them
falsepositives:
- Legitimate administration activities
2021-04-03 00:00:43 +02:00
level: informational
2020-10-11 18:15:53 +02:00
tags:
- attack.discovery
- attack.t1069.001