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"]
  4maturity = "production"
  5updated_date = "2024/05/21"
  6
  7[rule]
  8author = ["Elastic"]
  9description = """
 10Identifies use of bcdedit.exe to delete boot configuration data. This tactic is sometimes used as by malware or an
 11attacker as a destructive technique.
 12"""
 13from = "now-9m"
 14index = [
 15    "winlogbeat-*",
 16    "logs-endpoint.events.process-*",
 17    "logs-windows.*",
 18    "endgame-*",
 19    "logs-system.security*",
 20]
 21language = "eql"
 22license = "Elastic License v2"
 23name = "Modification of Boot Configuration"
 24note = """## Triage and analysis
 25
 26### Investigating Modification of Boot Configuration
 27
 28Boot 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.
 29
 30This rule identifies the usage of `bcdedit.exe` to:
 31
 32- Disable Windows Error Recovery (recoveryenabled).
 33- Ignore errors if there is a failed boot, failed shutdown, or failed checkpoint (bootstatuspolicy ignoreallfailures).
 34
 35These are common steps in destructive attacks by adversaries leveraging ransomware.
 36
 37#### Possible investigation steps
 38
 39- 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.
 40- Identify the user account that performed the action and whether it should perform this kind of action.
 41- Contact the account owner and confirm whether they are aware of this activity.
 42- Investigate other alerts associated with the user/host during the past 48 hours.
 43- Assess whether this behavior is prevalent in the environment by looking for similar occurrences across hosts.
 44- Check if any files on the host machine have been encrypted.
 45
 46### False positive analysis
 47
 48- 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.
 49
 50### Related rules
 51
 52- Deleting Backup Catalogs with Wbadmin - 581add16-df76-42bb-af8e-c979bfb39a59
 53
 54### Response and remediation
 55
 56- Initiate the incident response process based on the outcome of the triage.
 57- Consider isolating the involved host to prevent destructive behavior, which is commonly associated with this activity.
 58- 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.
 59- 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.
 60- Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
 61- 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).
 62"""
 63risk_score = 21
 64rule_id = "69c251fb-a5d6-4035-b5ec-40438bd829ff"
 65setup = """## Setup
 66
 67If enabling an EQL rule on a non-elastic-agent index (such as beats) for versions <8.2,
 68events will not define `event.ingested` and default fallback for EQL rules was not added until version 8.2.
 69Hence for this rule to work effectively, users will need to add a custom ingest pipeline to populate
 70`event.ingested` to @timestamp.
 71For more details on adding a custom ingest pipeline refer - https://www.elastic.co/guide/en/fleet/current/data-streams-pipeline-tutorial.html
 72"""
 73severity = "low"
 74tags = [
 75    "Domain: Endpoint",
 76    "OS: Windows",
 77    "Use Case: Threat Detection",
 78    "Tactic: Impact",
 79    "Resources: Investigation Guide",
 80    "Data Source: Elastic Endgame",
 81    "Data Source: Elastic Defend",
 82]
 83timestamp_override = "event.ingested"
 84type = "eql"
 85
 86query = '''
 87process where host.os.type == "windows" and event.type == "start" and
 88  (process.name : "bcdedit.exe" or ?process.pe.original_file_name == "bcdedit.exe") and
 89    (
 90      (process.args : "/set" and process.args : "bootstatuspolicy" and process.args : "ignoreallfailures") or
 91      (process.args : "no" and process.args : "recoveryenabled")
 92    )
 93'''
 94
 95
 96[[rule.threat]]
 97framework = "MITRE ATT&CK"
 98[[rule.threat.technique]]
 99id = "T1490"
100name = "Inhibit System Recovery"
101reference = "https://attack.mitre.org/techniques/T1490/"
102
103
104[rule.threat.tactic]
105id = "TA0040"
106name = "Impact"
107reference = "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.
  • 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

to-top