2020-11-17 21:27:37 +01:00
[ metadata ]
creation_date = "2020/11/15"
maturity = "production"
2022-04-01 15:27:08 -08:00
updated_date = "2022/03/31"
2020-11-17 21:27:37 +01:00
[ rule ]
author = [ "Elastic" ]
description = "" "
Identifies process execution with a single character process name. This is often done by adversaries while staging or
executing temporary utilities.
" ""
from = "now-9m"
2021-01-28 20:53:57 -09:00
index = [ "winlogbeat-*" , "logs-endpoint.events.*" , "logs-windows.*" ]
2020-11-17 21:27:37 +01:00
language = "eql"
2021-03-03 22:12:11 -09:00
license = "Elastic License v2"
2020-11-17 21:27:37 +01:00
name = "Suspicious Execution - Short Program Name"
2022-04-01 15:27:08 -08:00
note = "" "## Config
If enabling an EQL rule on a non-elastic-agent index (such as beats) for versions <8.2, events will not define `event.ingested` and default fallback for EQL rules was not added until 8.2, so you will need to add a custom pipeline to populate `event.ingested` to @timestamp for this rule to work.
" ""
2020-11-17 21:27:37 +01:00
risk_score = 47
rule_id = "17c7f6a5-5bc9-4e1f-92bf-13632d24384d"
severity = "medium"
tags = [ "Elastic" , "Host" , "Windows" , "Threat Detection" , "Execution" ]
2021-02-16 10:52:48 -09:00
timestamp_override = "event.ingested"
2020-11-17 21:27:37 +01:00
type = "eql"
query = '' '
process where event.type in ("start", "process_started") and length(process.name) > 0 and
length(process.name) == 5 and host.os.name == "Windows" and length(process.pe.original_file_name) > 5
' ''
2021-02-16 10:52:48 -09:00