Skip to content

Commit 57f0fca

Browse files
committed
fix: compare AD self-add user fields case-insensitively
1 parent 1610a7c commit 57f0fca

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

detections/endpoint/windows_ad_add_self_to_group.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: Windows AD add Self to Group
22
id: 065f2701-b7ea-42f5-9ec4-fbc2261165f9
3-
version: 10
3+
version: 11
44
creation_date: '2024-07-01'
5-
modification_date: '2026-05-13'
5+
modification_date: '2026-06-01'
66
author: Dean Luxton
77
status: production
88
type: TTP
@@ -11,7 +11,7 @@ data_source:
1111
- Windows Event Log Security 4728
1212
search: |-
1313
`wineventlog_security` EventCode IN (4728)
14-
| where user=src_user
14+
| where lower(user)=lower(src_user)
1515
| stats min(_time) as _time dc(user) as usercount, values(user) as user values(user_category) as user_category values(src_user_category) as src_user_category values(dvc) as dvc
1616
BY signature, Group_Name, src_user,
1717
dest

0 commit comments

Comments
 (0)