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

36 lines
1.0 KiB
YAML
Raw Normal View History

2019-10-28 11:59:49 +01:00
title: Modification of Boot Configuration
2019-12-19 23:56:36 +01:00
id: 1444443e-6757-43e4-9ea4-c8fc705f79a2
2021-11-27 11:33:14 +01:00
status: test
description: Identifies use of the bcdedit command to delete boot configuration data. This tactic is sometimes used as by malware or an attacker as a destructive technique.
author: E.M. Anhaus (originally from Atomic Blue Detections, Endgame), oscd.community
2019-11-11 01:53:46 +03:00
references:
2021-11-27 11:33:14 +01:00
- https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1490/T1490.md
- https://eqllib.readthedocs.io/en/latest/analytics/c4732632-9c1d-4980-9fa8-1d98c93f918e.html
date: 2019/10/24
modified: 2021/11/27
2020-01-19 22:34:16 +01:00
logsource:
2021-11-27 11:33:14 +01:00
category: process_creation
product: windows
2019-10-28 11:59:49 +01:00
detection:
2021-11-27 11:33:14 +01:00
selection1:
Image|endswith: \bcdedit.exe
CommandLine|contains: set
selection2:
- CommandLine|contains|all:
- bootstatuspolicy
- ignoreallfailures
- CommandLine|contains|all:
- recoveryenabled
- 'no'
condition: selection1 and selection2
2020-01-11 00:11:27 +01:00
fields:
2021-11-27 11:33:14 +01:00
- ComputerName
- User
- CommandLine
2019-10-28 11:59:49 +01:00
falsepositives:
2021-11-27 11:33:14 +01:00
- Unlikely
2019-10-28 11:59:49 +01:00
level: high
2021-11-27 11:33:14 +01:00
tags:
- attack.impact
- attack.t1490