Skip to content

Commit 896b6a2

Browse files
authored
[Tuning] Rare Connection to WebDAV Target (#5415)
* Update credential_access_rare_webdav_destination.toml * Update credential_access_rare_webdav_destination.toml
1 parent cea2f43 commit 896b6a2

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

rules/windows/credential_access_rare_webdav_destination.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
creation_date = "2025/04/28"
33
integration = ["endpoint", "system", "windows", "m365_defender", "crowdstrike"]
44
maturity = "production"
5-
updated_date = "2025/07/16"
5+
updated_date = "2025/12/05"
66

77
[rule]
88
author = ["Elastic"]
@@ -54,16 +54,15 @@ timestamp_override = "event.ingested"
5454
type = "esql"
5555

5656
query = '''
57-
from logs-*
57+
from logs-endpoint.events.process-*, logs-windows.sysmon_operational-*, logs-system.security-*, logs-windows.*, winlogbeat-*, logs-crowdstrike.fdr*, logs-m365_defender.event-* METADATA _id, _version, _index
5858
| where
5959
@timestamp > now() - 8 hours and
6060
event.category == "process" and
6161
event.type == "start" and
6262
process.name == "rundll32.exe" and
6363
process.command_line like "*DavSetCookie*"
6464
| keep host.id, process.command_line, user.name
65-
| grok
66-
process.command_line """(?<Esql.server_webdav_cookie>DavSetCookie .* http)"""
65+
| grok process.command_line """(?<Esql.server_webdav_cookie>DavSetCookie .* http)"""
6766
| eval
6867
Esql.server_webdav_cookie_replace = replace(Esql.server_webdav_cookie, "(DavSetCookie | http)", "")
6968
| where

0 commit comments

Comments
 (0)