2020-09-22 14:44:48 +02:00
[ metadata ]
creation_date = "2020/09/03"
maturity = "production"
2021-05-10 13:40:56 -08:00
updated_date = "2021/05/10"
2020-09-22 14:44:48 +02:00
[ rule ]
author = [ "Elastic" ]
2020-09-24 01:03:29 -05:00
description = "Identifies the Windows Defender configuration utility (MpCmdRun.exe) being used to download a remote file."
2020-09-22 14:44:48 +02:00
from = "now-9m"
2021-01-28 20:53:57 -09:00
index = [ "winlogbeat-*" , "logs-endpoint.events.*" , "logs-windows.*" ]
2021-04-30 11:21:12 -08:00
language = "eql"
2021-03-03 22:12:11 -09:00
license = "Elastic License v2"
2020-09-22 14:44:48 +02:00
name = "Remote File Download via MpCmdRun"
2021-05-10 13:40:56 -08:00
note = "" "## Triage and analysis
### Investigating Remote File Download via MpCmdRun
2020-09-22 14:44:48 +02:00
Verify details such as the parent process, URL reputation, and downloaded file details. Additionally, `MpCmdRun` logs this information in the Appdata Temp folder in `MpCmdRun.log`." ""
references = [
2020-09-24 01:03:29 -05:00
"https://twitter.com/mohammadaskar2/status/1301263551638761477" ,
"https://www.bleepingcomputer.com/news/microsoft/microsoft-defender-can-ironically-be-used-to-download-malware/" ,
2020-09-22 14:44:48 +02:00
]
risk_score = 47
rule_id = "c6453e73-90eb-4fe7-a98c-cde7bbfc504a"
severity = "medium"
2020-10-26 13:50:45 -05:00
tags = [ "Elastic" , "Host" , "Windows" , "Threat Detection" , "Command and Control" ]
2021-02-16 10:52:48 -09:00
timestamp_override = "event.ingested"
2021-04-30 11:21:12 -08:00
type = "eql"
2020-09-22 14:44:48 +02:00
query = '' '
2021-04-30 11:21:12 -08:00
process where event.type == "start" and
(process.name : "MpCmdRun.exe" or process.pe.original_file_name == "MpCmdRun.exe") and
process.args : "-DownloadFile" and process.args : "-url" and process.args : "-path"
2020-09-22 14:44:48 +02:00
' ''
[ [ rule . threat ] ]
framework = "MITRE ATT&CK"
[ [ rule . threat . technique ] ]
id = "T1105"
reference = "https://attack.mitre.org/techniques/T1105/"
2021-04-30 11:21:12 -08:00
name = "Ingress Tool Transfer"
2020-09-22 14:44:48 +02:00
[ rule . threat . tactic ]
id = "TA0011"
reference = "https://attack.mitre.org/tactics/TA0011/"
2021-04-30 11:21:12 -08:00
name = "Command and Control"
2020-09-24 01:03:29 -05:00