Files
blue-team-tools/rules/linux/process_creation/proc_creation_lnx_file_deletion.yml
T

24 lines
628 B
YAML
Raw Normal View History

2020-10-07 22:28:37 +03:00
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:
2020-10-16 20:42:12 +03:00
- https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1070.004/T1070.004.md
2020-10-07 22:28:37 +03:00
logsource:
product: linux
2020-10-16 10:33:50 +03:00
category: process_creation
2020-10-07 22:28:37 +03:00
detection:
2020-12-01 21:24:57 +03:00
selection:
Image|endswith:
2020-12-02 01:27:35 +01:00
- '/rm' # covers /rmdir as well
- '/shred'
2020-12-01 21:24:57 +03:00
condition: selection
2020-10-07 22:28:37 +03:00
falsepositives:
- Legitimate administration activities
2021-04-03 00:00:43 +02:00
level: informational
2020-10-07 22:28:37 +03:00
tags:
- attack.defense_evasion
- attack.t1070.004