Skip to content

Commit 01f12f1

Browse files
w0rk3rgithub-actions[bot]
authored andcommitted
[Rule Tuning] 3rd Party EDR - Add Crowdstrike FDR support - 1 (#4220)
* [Rule Tuning] 3rd Party EDR - Add Crowdstrike FDR support - 1 * Update Integrations unit tests * Update test_all_rules.py Removed changes from: - rules/windows/collection_email_powershell_exchange_mailbox.toml - rules/windows/command_and_control_headless_browser.toml - rules/windows/command_and_control_rdp_tunnel_plink.toml - rules/windows/command_and_control_screenconnect_childproc.toml - rules/windows/command_and_control_tunnel_vscode.toml - rules/windows/credential_access_domain_backup_dpapi_private_keys.toml - rules/windows/credential_access_kirbi_file.toml - rules/windows/credential_access_relay_ntlm_auth_via_http_spoolss.toml - rules/windows/defense_evasion_disable_windows_firewall_rules_with_netsh.toml - rules/windows/defense_evasion_dotnet_compiler_parent_process.toml (selectively cherry picked from commit 81292ae)
1 parent 28393f3 commit 01f12f1

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed
730 Bytes
Binary file not shown.
202 KB
Binary file not shown.

detection_rules/schemas/definitions.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,8 @@ def validator(value):
7979
'sentinel_one_cloud_funnel',
8080
'ti_rapid7_threat_command',
8181
'm365_defender',
82-
'panw']
82+
'panw',
83+
'crowdstrike']
8384
NON_PUBLIC_FIELDS = {
8485
"related_integrations": (Version.parse('8.3.0'), None),
8586
"required_fields": (Version.parse('8.3.0'), None),

tests/test_all_rules.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,8 @@ def test_required_tags(self):
353353
'logs-windows.powershell*': {'all': ['Data Source: PowerShell Logs']},
354354
'logs-sentinel_one_cloud_funnel.*': {'all': ['Data Source: SentinelOne']},
355355
'logs-fim.event-*': {'all': ['Data Source: File Integrity Monitoring']},
356-
'logs-m365_defender.event-*': {'all': ['Data Source: Microsoft Defender for Endpoint']}
356+
'logs-m365_defender.event-*': {'all': ['Data Source: Microsoft Defender for Endpoint']},
357+
'logs-crowdstrike.fdr*': {'all': ['Data Source: Crowdstrike']}
357358
}
358359

359360
for rule in self.all_rules:

0 commit comments

Comments
 (0)