Update defense_evasion_suspicious_short_program_name.toml (#5454)

This commit is contained in:
Samirbous
2025-12-12 17:25:00 +00:00
committed by GitHub
parent 3726611b93
commit ef0ec1ac83
@@ -2,7 +2,7 @@
creation_date = "2020/11/15"
integration = ["endpoint", "windows", "m365_defender", "crowdstrike"]
maturity = "production"
updated_date = "2025/08/26"
updated_date = "2025/12/12"
[transform]
[[transform.osquery]]
@@ -116,8 +116,8 @@ timestamp_override = "event.ingested"
type = "eql"
query = '''
process where host.os.type == "windows" and event.type == "start" and length(process.name) > 0 and
length(process.name) == 5 and length(process.pe.original_file_name) > 5
process where host.os.type == "windows" and event.type == "start" and
process.name regex~ """[a-z0-9]\.exe""" and process.pe.original_file_name != null
'''