46 lines
1.3 KiB
TOML
Executable File
46 lines
1.3 KiB
TOML
Executable File
[metadata]
|
|
creation_date = "2020/03/25"
|
|
maturity = "production"
|
|
updated_date = "2021/03/03"
|
|
|
|
[rule]
|
|
author = ["Elastic"]
|
|
description = """
|
|
An instance of MSBuild, the Microsoft Build Engine, loaded DLLs (dynamically linked libraries) responsible for Windows
|
|
credential management. This technique is sometimes used for credential dumping.
|
|
"""
|
|
false_positives = ["The Build Engine is commonly used by Windows developers but use by non-engineers is unusual."]
|
|
from = "now-9m"
|
|
index = ["winlogbeat-*", "logs-endpoint.events.*", "logs-windows.*"]
|
|
language = "kuery"
|
|
license = "Elastic License v2"
|
|
name = "Microsoft Build Engine Loading Windows Credential Libraries"
|
|
risk_score = 73
|
|
rule_id = "9d110cb3-5f4b-4c9a-b9f5-53f0a1707ae5"
|
|
severity = "high"
|
|
tags = ["Elastic", "Host", "Windows", "Threat Detection", "Credential Access"]
|
|
timestamp_override = "event.ingested"
|
|
type = "query"
|
|
|
|
query = '''
|
|
event.category:process and event.type:change and
|
|
(process.pe.original_file_name:(vaultcli.dll or SAMLib.DLL) or
|
|
dll.name:(vaultcli.dll or SAMLib.DLL)) and
|
|
process.name: MSBuild.exe
|
|
'''
|
|
|
|
|
|
[[rule.threat]]
|
|
framework = "MITRE ATT&CK"
|
|
[[rule.threat.technique]]
|
|
id = "T1003"
|
|
name = "OS Credential Dumping"
|
|
reference = "https://attack.mitre.org/techniques/T1003/"
|
|
|
|
|
|
[rule.threat.tactic]
|
|
id = "TA0006"
|
|
name = "Credential Access"
|
|
reference = "https://attack.mitre.org/tactics/TA0006/"
|
|
|