Inhibit System Recovery via Renamed Utilities
Description
Identifies the execution of renamed Windows utilities to tamper with system recovery settings. Adversaries may delete or remove built-in operating system data and turn off services designed to aid in the recovery of a corrupted system to prevent recovery.
Query · eql
process where event.action == "start" and
(
process.pe.original_file_name : "vssadmin.exe" and process.command_line : "*shadows*" and
process.command_line : ("*delete*", "*resize*shadowstorage*") and not process.name : "vssadmin.exe" and
not process.parent.executable : "C:\\Program Files (x86)\\Net Protector *\\NPDBKWTT.EXE"
) or
(
process.pe.original_file_name : "bcdedit.exe" and
process.command_line : ("*bootstatuspolicy*", "*recoveryenabled*") and not process.name : "bcdedit.exe"
) or
(
process.pe.original_file_name : "wbadmin.exe" and process.command_line : ("*catalog*", "*systemstatebackup*") and
process.command_line : "*delete*" and not process.name : "wbadmin.exe"
)