4732 Security log · Account Management high severity low volume

Windows Event ID 4732 — A member was added to a security-enabled local group

User added to a local security group (e.g., local Administrators, Remote Desktop Users).

Why event 4732 matters

Adding accounts to local Administrators = local admin escalation. Remote Desktop Users = enabling RDP access. Attackers add backdoor accounts to local Administrators for persistent local admin.

How to detect it

Alert: GroupName=Administrators + MemberName is domain account not in IT allowlist. Alert: GroupName=Remote Desktop Users. Critical on DCs — local admin changes on DCs are especially sensitive.

Log source
Security
Advanced Audit Policy — enable the 'Account Management' subcategory (Success and/or Failure).
Fields to pivot on
MemberNameTargetUserNameSubjectUserName

MITRE ATT&CK mapping

Tactic Technique
Privilege Escalation Valid Accounts: Local Accounts (T1078.003)
Persistence Account Manipulation (T1098)

Detection queries

Starting points — adapt the log source, projected fields and thresholds for your environment.

Sigma rule
title: Member Added to Local Administrators Group
status: stable
description: Account added to local Administrators group
author: theadminstack.com
date: 2026/05/16
logsource:
    product: windows
    service: security
detection:
    selection:
        EventID: 4732
        TargetUserName: 'Administrators'
    condition: selection
falsepositives:
    - Legitimate IT provisioning
level: high
tags:
    - attack.privilege_escalation
    - attack.t1078.003
Sentinel / Defender KQL
SecurityEvent
| where EventID == 4732   // A member was added to a security-enabled local group
| project TimeGenerated, Computer, MemberName, TargetUserName, SubjectUserName
| sort by TimeGenerated desc
Splunk SPL
index=* sourcetype="WinEventLog:Security" EventCode=4732
| stats count earliest(_time) as first_seen latest(_time) as last_seen by ComputerName
| sort - count   `# A member was added to a security-enabled local group — add EventData fields: MemberName, TargetUserName, SubjectUserName`
Hunt event 4732 in Sentinel/Defender →
Build a KQL query for this event in the KQL Query Builder.
Search all event IDs →
Open the interactive Windows Event ID lookup.

Related Account Management events

4720 A user account was created 4722 A user account was enabled 4723 An attempt was made to change an account's password 4724 An attempt was made to reset an account's password 4725 A user account was disabled 4726 A user account was deleted 4728 A member was added to a security-enabled global group 4729 A member was removed from a security-enabled global group 4730 A security-enabled global group was deleted 4731 A security-enabled local group was created 4733 A member was removed from a security-enabled local group 4734 A security-enabled local group was deleted

Frequently asked questions

What is Windows Event ID 4732?

A member was added to a security-enabled local group. User added to a local security group (e.g., local Administrators, Remote Desktop Users).

Which log records event 4732?

Event 4732 is written to the Security channel by Microsoft-Windows-Security-Auditing. Advanced Audit Policy — enable the 'Account Management' subcategory (Success and/or Failure).

What MITRE ATT&CK techniques map to event 4732?

Event 4732 is associated with: Valid Accounts: Local Accounts (T1078.003), Account Manipulation (T1098).

How do you detect activity around event 4732?

Alert: GroupName=Administrators + MemberName is domain account not in IT allowlist. Alert: GroupName=Remote Desktop Users. Critical on DCs — local admin changes on DCs are especially sensitive.