11[metadata ]
22creation_date = " 2020/10/16"
3- integration = [" endpoint" , " windows" , " m365_defender" , " sentinel_one_cloud_funnel" ]
3+ integration = [" endpoint" , " windows" , " m365_defender" , " sentinel_one_cloud_funnel" , " crowdstrike " ]
44maturity = " production"
5- updated_date = " 2025/03/20 "
5+ updated_date = " 2025/08/26 "
66
77[rule ]
88author = [" Elastic" ]
@@ -15,6 +15,7 @@ index = [
1515 " endgame-*" ,
1616 " logs-m365_defender.event-*" ,
1717 " logs-sentinel_one_cloud_funnel.*" ,
18+ " logs-crowdstrike.fdr*" ,
1819]
1920language = " eql"
2021license = " Elastic License v2"
@@ -68,6 +69,7 @@ tags = [
6869 " Data Source: Sysmon" ,
6970 " Data Source: Microsoft Defender for Endpoint" ,
7071 " Data Source: SentinelOne" ,
72+ " Data Source: Crowdstrike" ,
7173 " Resources: Investigation Guide" ,
7274]
7375timestamp_override = " event.ingested"
@@ -76,12 +78,16 @@ type = "eql"
7678query = '''
7779file where host.os.type == "windows" and event.type != "deletion" and
7880 file.extension : ("wll","xll","ppa","ppam","xla","xlam") and
79- file.path :
80- (
81+ file.path : (
8182 "C:\\Users\\*\\AppData\\Roaming\\Microsoft\\Word\\Startup\\*",
8283 "C:\\Users\\*\\AppData\\Roaming\\Microsoft\\AddIns\\*",
83- "C:\\Users\\*\\AppData\\Roaming\\Microsoft\\Excel\\XLSTART\\*"
84- )
84+ "C:\\Users\\*\\AppData\\Roaming\\Microsoft\\Excel\\XLSTART\\*",
85+
86+ /* Crowdstrike specific condition as it uses NT Object paths */
87+ "\\Device\\HarddiskVolume?\\Users\\*\\AppData\\Roaming\\Microsoft\\Word\\Startup\\*",
88+ "\\Device\\HarddiskVolume?\\Users\\*\\AppData\\Roaming\\Microsoft\\AddIns\\*",
89+ "\\Device\\HarddiskVolume?\\Users\\*\\AppData\\Roaming\\Microsoft\\Excel\\XLSTART\\*"
90+ )
8591'''
8692
8793
0 commit comments