SigmaHQ/rules/linux/macos_clear_system_logs.yml

28 lines
798 B
YAML
Raw Normal View History

2020-10-12 05:01:10 +00:00
title: Indicator Removal on Host - Clear Mac System Logs
id: acf61bd8-d814-4272-81f0-a7a269aa69aa
status: experimental
description: Detects deletion of local audit logs
author: remotephone, oscd.community
date: 2020/10/11
references:
- https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1070.002/T1070.002.md
logsource:
product: macos
category: process_creation
2020-10-12 05:01:10 +00:00
detection:
selection1:
- Image|endswith: '/rm'
selection2:
CommandLine|contains: '/var/log'
selection3:
Commandline|contains|all:
- '/Users/'
- '/Library/Logs/'
condition: selection1 and (selection2 or selection3)
2020-10-12 05:01:10 +00:00
falsepositives:
- Legitimate administration activities
2021-04-02 22:00:43 +00:00
level: medium
2020-10-12 05:01:10 +00:00
tags:
- attack.defense_evasion
- attack.t1070.002