Files
blue-team-tools/rules/windows/process_creation/proc_creation_win_cmd_delete.yml
T

32 lines
1.1 KiB
YAML
Raw Normal View History

title: Windows Cmd Delete File
2022-01-15 17:04:03 +01:00
id: 379fa130-190e-4c3f-b7bc-6c8e834485f3
status: experimental
description: |
2022-07-11 17:48:40 +01:00
Adversaries may delete files left behind by the actions of their intrusion activity.
Malware, tools, or other non-native files dropped or created on a system by an adversary may leave traces to indicate to what was done within a network and how.
Removal of these files can occur during an intrusion, or as part of a post-intrusion process to minimize the adversary's footprint.
2022-01-15 17:04:03 +01:00
author: frack113
date: 2022/01/15
2022-08-20 11:56:18 +02:00
modifier: 2022/08/20
2022-01-15 17:04:03 +01:00
references:
2022-07-11 17:48:40 +01:00
- https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1070.004/T1070.004.md
2022-01-15 17:04:03 +01:00
logsource:
category: process_creation
product: windows
detection:
selection:
2022-01-16 11:15:50 +01:00
- CommandLine|contains|all:
2022-08-20 11:56:18 +02:00
- ' del '
2022-01-15 17:04:03 +01:00
- /f
- CommandLine|contains|all:
2022-01-15 17:04:03 +01:00
- rmdir
- /s
- /q
2022-01-15 17:04:03 +01:00
condition: selection
falsepositives:
- Legitimate script
2022-01-15 17:04:03 +01:00
level: low
tags:
- attack.defense_evasion
2022-01-16 11:15:50 +01:00
- attack.t1070.004