A global security group's attributes were modified.
Group scope or attribute changes to Domain Admins or similar groups may indicate manipulation.
Alert: changes to high-privilege groups outside change-management windows.
SubjectUserNameTargetUserNameLogonTypeIpAddressWorkstationName | Tactic | Technique |
|---|---|
| Persistence | Account Manipulation (T1098) |
Starting points — adapt the log source, projected fields and thresholds for your environment.
SecurityEvent
| where EventID == 4737 // A security-enabled global group was changed
| project TimeGenerated, Computer, SubjectUserName, TargetUserName, LogonType, IpAddress, WorkstationName
| sort by TimeGenerated desc
index=* sourcetype="WinEventLog:Security" EventCode=4737
| stats count earliest(_time) as first_seen latest(_time) as last_seen by ComputerName
| sort - count `# A security-enabled global group was changed — add EventData fields: SubjectUserName, TargetUserName, LogonType, IpAddress`
A security-enabled global group was changed. A global security group's attributes were modified.
Event 4737 is written to the Security channel by Microsoft-Windows-Security-Auditing. Advanced Audit Policy — enable the 'Account Management' subcategory (Success and/or Failure).
Event 4737 is associated with: Account Manipulation (T1098).
Alert: changes to high-privilege groups outside change-management windows.