SigmaHQ/rules/linux/lnx_file_deletion.yml
2021-04-03 00:08:55 +02:00

24 lines
628 B
YAML

title: File Deletion
id: 30aed7b6-d2c1-4eaf-9382-b6bc43e50c57
status: stable
description: Detects file deletion commands
author: Ömer Günal, oscd.community
date: 2020/10/07
references:
- https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1070.004/T1070.004.md
logsource:
product: linux
category: process_creation
detection:
selection:
Image|endswith:
- '/rm' # covers /rmdir as well
- '/shred'
condition: selection
falsepositives:
- Legitimate administration activities
level: informational
tags:
- attack.defense_evasion
- attack.t1070.004