Modification of Boot Configuration
Identifies use of bcdedit.exe to delete boot configuration data. This tactic is sometimes used as by malware or an attacker as a destructive technique.
Elastic rule (View on GitHub)
1[metadata]
2creation_date = "2020/03/16"
3integration = ["endpoint", "windows", "system", "m365_defender", "sentinel_one_cloud_funnel", "crowdstrike"]
4maturity = "production"
5updated_date = "2024/11/02"
6min_stack_version = "8.14.0"
7min_stack_comments = "Breaking change at 8.14.0 for the Windows Integration."
8
9[rule]
10author = ["Elastic"]
11description = """
12Identifies use of bcdedit.exe to delete boot configuration data. This tactic is sometimes used as by malware or an
13attacker as a destructive technique.
14"""
15from = "now-9m"
16index = [
17 "winlogbeat-*",
18 "logs-endpoint.events.process-*",
19 "logs-windows.forwarded*",
20 "logs-windows.sysmon_operational-*",
21 "endgame-*",
22 "logs-system.security*",
23 "logs-m365_defender.event-*",
24 "logs-sentinel_one_cloud_funnel.*",
25 "logs-crowdstrike.fdr*",
26]
27language = "eql"
28license = "Elastic License v2"
29name = "Modification of Boot Configuration"
30note = """## Triage and analysis
31
32### Investigating Modification of Boot Configuration
33
34Boot entry parameters, or boot parameters, are optional, system-specific settings that represent configuration options. These are stored in a boot configuration data (BCD) store, and administrators can use utilities like `bcdedit.exe` to configure these.
35
36This rule identifies the usage of `bcdedit.exe` to:
37
38- Disable Windows Error Recovery (recoveryenabled).
39- Ignore errors if there is a failed boot, failed shutdown, or failed checkpoint (bootstatuspolicy ignoreallfailures).
40
41These are common steps in destructive attacks by adversaries leveraging ransomware.
42
43#### Possible investigation steps
44
45- Investigate the script execution chain (parent process tree) for unknown processes. Examine their executable files for prevalence, whether they are located in expected locations, and if they are signed with valid digital signatures.
46- Identify the user account that performed the action and whether it should perform this kind of action.
47- Contact the account owner and confirm whether they are aware of this activity.
48- Investigate other alerts associated with the user/host during the past 48 hours.
49- Assess whether this behavior is prevalent in the environment by looking for similar occurrences across hosts.
50- Check if any files on the host machine have been encrypted.
51
52### False positive analysis
53
54- The usage of these options is not inherently malicious. Administrators can modify these configurations to force a machine to boot for troubleshooting or data recovery purposes.
55
56### Related rules
57
58- Deleting Backup Catalogs with Wbadmin - 581add16-df76-42bb-af8e-c979bfb39a59
59
60### Response and remediation
61
62- Initiate the incident response process based on the outcome of the triage.
63- Consider isolating the involved host to prevent destructive behavior, which is commonly associated with this activity.
64- Investigate credential exposure on systems compromised or used by the attacker to ensure all compromised accounts are identified. Reset passwords for these accounts and other potentially compromised credentials, such as email, business systems, and web services.
65- If any other destructive action was identified on the host, it is recommended to prioritize the investigation and look for ransomware preparation and execution activities.
66- Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
67- Using the incident response data, update logging and audit policies to improve the mean time to detect (MTTD) and the mean time to respond (MTTR).
68"""
69risk_score = 21
70rule_id = "69c251fb-a5d6-4035-b5ec-40438bd829ff"
71severity = "low"
72tags = [
73 "Domain: Endpoint",
74 "OS: Windows",
75 "Use Case: Threat Detection",
76 "Tactic: Impact",
77 "Resources: Investigation Guide",
78 "Data Source: Elastic Endgame",
79 "Data Source: Elastic Defend",
80 "Data Source: System",
81 "Data Source: Microsoft Defender for Endpoint",
82 "Data Source: Sysmon",
83 "Data Source: SentinelOne",
84 "Data Source: Crowdstrike",
85]
86timestamp_override = "event.ingested"
87type = "eql"
88
89query = '''
90process where host.os.type == "windows" and event.type == "start" and
91 (process.name : "bcdedit.exe" or ?process.pe.original_file_name == "bcdedit.exe") and
92 (
93 (process.args : "/set" and process.args : "bootstatuspolicy" and process.args : "ignoreallfailures") or
94 (process.args : "no" and process.args : "recoveryenabled")
95 )
96'''
97
98
99[[rule.threat]]
100framework = "MITRE ATT&CK"
101[[rule.threat.technique]]
102id = "T1490"
103name = "Inhibit System Recovery"
104reference = "https://attack.mitre.org/techniques/T1490/"
105
106
107[rule.threat.tactic]
108id = "TA0040"
109name = "Impact"
110reference = "https://attack.mitre.org/tactics/TA0040/"
Triage and analysis
Investigating Modification of Boot Configuration
Boot entry parameters, or boot parameters, are optional, system-specific settings that represent configuration options. These are stored in a boot configuration data (BCD) store, and administrators can use utilities like bcdedit.exe
to configure these.
This rule identifies the usage of bcdedit.exe
to:
- Disable Windows Error Recovery (recoveryenabled).
- Ignore errors if there is a failed boot, failed shutdown, or failed checkpoint (bootstatuspolicy ignoreallfailures).
These are common steps in destructive attacks by adversaries leveraging ransomware.
Possible investigation steps
- Investigate the script execution chain (parent process tree) for unknown processes. Examine their executable files for prevalence, whether they are located in expected locations, and if they are signed with valid digital signatures.
- Identify the user account that performed the action and whether it should perform this kind of action.
- Contact the account owner and confirm whether they are aware of this activity.
- Investigate other alerts associated with the user/host during the past 48 hours.
- Assess whether this behavior is prevalent in the environment by looking for similar occurrences across hosts.
- Check if any files on the host machine have been encrypted.
False positive analysis
- The usage of these options is not inherently malicious. Administrators can modify these configurations to force a machine to boot for troubleshooting or data recovery purposes.
Related rules
- Deleting Backup Catalogs with Wbadmin - 581add16-df76-42bb-af8e-c979bfb39a59
Response and remediation
- Initiate the incident response process based on the outcome of the triage.
- Consider isolating the involved host to prevent destructive behavior, which is commonly associated with this activity.
- Investigate credential exposure on systems compromised or used by the attacker to ensure all compromised accounts are identified. Reset passwords for these accounts and other potentially compromised credentials, such as email, business systems, and web services.
- If any other destructive action was identified on the host, it is recommended to prioritize the investigation and look for ransomware preparation and execution activities.
- Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
- Using the incident response data, update logging and audit policies to improve the mean time to detect (MTTD) and the mean time to respond (MTTR).
Related rules
- Deleting Backup Catalogs with Wbadmin
- Volume Shadow Copy Deleted or Resized via VssAdmin
- Volume Shadow Copy Deletion via WMIC
- Volume Shadow Copy Deletion via PowerShell
- Enumerating Domain Trusts via DSQUERY.EXE