-
Notifications
You must be signed in to change notification settings - Fork 517
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[New Rule] NTDS Dump via Wbadmin (#3758)
* [New Rule] NTDS Dump via Wbadmin * Update rules/windows/credential_access_wbadmin_ntds.toml Co-authored-by: Samirbous <[email protected]> --------- Co-authored-by: Samirbous <[email protected]>
- Loading branch information
Showing
1 changed file
with
84 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
[metadata] | ||
creation_date = "2024/06/05" | ||
integration = ["windows", "endpoint", "system"] | ||
maturity = "production" | ||
updated_date = "2024/06/05" | ||
|
||
[rule] | ||
author = ["Elastic"] | ||
description = """ | ||
Identifies the execution of wbadmin to access the NTDS.dit file in a domain controller. Attackers with privileges from | ||
groups like Backup Operators can abuse the utility to perform credential access and compromise the domain. | ||
""" | ||
from = "now-9m" | ||
index = [ | ||
"winlogbeat-*", | ||
"logs-endpoint.events.process-*", | ||
"logs-windows.*", | ||
"endgame-*", | ||
"logs-system.security*", | ||
] | ||
language = "eql" | ||
license = "Elastic License v2" | ||
name = "NTDS Dump via Wbadmin" | ||
references = [ | ||
"https://medium.com/r3d-buck3t/windows-privesc-with-sebackupprivilege-65d2cd1eb960" | ||
] | ||
risk_score = 47 | ||
rule_id = "d93e61db-82d6-4095-99aa-714988118064" | ||
severity = "medium" | ||
tags = [ | ||
"Domain: Endpoint", | ||
"OS: Windows", | ||
"Use Case: Threat Detection", | ||
"Tactic: Credential Access", | ||
"Data Source: Elastic Endgame", | ||
"Data Source: Elastic Defend" | ||
] | ||
timestamp_override = "event.ingested" | ||
type = "eql" | ||
|
||
query = ''' | ||
process where host.os.type == "windows" and event.type == "start" and | ||
(process.name : "wbadmin.exe" or ?process.pe.original_file_name : "wbadmin.exe") and | ||
process.args : "recovery" and process.command_line : "*ntds.dit*" | ||
''' | ||
|
||
|
||
[[rule.threat]] | ||
framework = "MITRE ATT&CK" | ||
[[rule.threat.technique]] | ||
id = "T1003" | ||
name = "OS Credential Dumping" | ||
reference = "https://attack.mitre.org/techniques/T1003/" | ||
[[rule.threat.technique.subtechnique]] | ||
id = "T1003.002" | ||
name = "Security Account Manager" | ||
reference = "https://attack.mitre.org/techniques/T1003/002/" | ||
|
||
[[rule.threat.technique.subtechnique]] | ||
id = "T1003.003" | ||
name = "NTDS" | ||
reference = "https://attack.mitre.org/techniques/T1003/003/" | ||
|
||
|
||
|
||
[rule.threat.tactic] | ||
id = "TA0006" | ||
name = "Credential Access" | ||
reference = "https://attack.mitre.org/tactics/TA0006/" | ||
|
||
|
||
[[rule.threat]] | ||
framework = "MITRE ATT&CK" | ||
[[rule.threat.technique]] | ||
id = "T1006" | ||
name = "Direct Volume Access" | ||
reference = "https://attack.mitre.org/techniques/T1006/" | ||
|
||
|
||
[rule.threat.tactic] | ||
id = "TA0005" | ||
name = "Defense Evasion" | ||
reference = "https://attack.mitre.org/tactics/TA0005/" | ||
|