Skip to content

Commit b87ba17

Browse files
committed
[Rule Tuning] Backup Deletion with Wbadmin
1 parent 762857f commit b87ba17

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

rules/windows/impact_deleting_backup_catalogs_with_wbadmin.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
creation_date = "2020/02/18"
33
integration = ["endpoint", "windows", "system", "m365_defender", "sentinel_one_cloud_funnel", "crowdstrike"]
44
maturity = "production"
5-
updated_date = "2025/03/20"
5+
updated_date = "2025/05/09"
66

77
[rule]
88
author = ["Elastic"]
99
description = """
10-
Identifies use of the wbadmin.exe to delete the backup catalog. Ransomware and other malware may do this to prevent
11-
system recovery.
10+
Detects use of wbadmin.exe to delete backup catalogs, system state backups, or other backup data. Ransomware and other
11+
malware may do this to prevent system recovery.
1212
"""
1313
from = "now-9m"
1414
index = [
@@ -24,7 +24,7 @@ index = [
2424
]
2525
language = "eql"
2626
license = "Elastic License v2"
27-
name = "Deleting Backup Catalogs with Wbadmin"
27+
name = "Backup Deletion with Wbadmin"
2828
note = """## Triage and analysis
2929
3030
### Investigating Deleting Backup Catalogs with Wbadmin
@@ -87,7 +87,7 @@ type = "eql"
8787
query = '''
8888
process where host.os.type == "windows" and event.type == "start" and
8989
(process.name : "wbadmin.exe" or ?process.pe.original_file_name == "WBADMIN.EXE") and
90-
process.args : "catalog" and process.args : "delete"
90+
process.args : ("catalog", "backup", "systemstatebackup") and process.args : "delete"
9191
'''
9292

9393

0 commit comments

Comments
 (0)