Removing an account added earlier during an intrusion.
What gives it awayA removal shortly after the matching 4756, by the same session, with no change record.
ATT&CK T1070Nothing matches that yet. Tell us what you were looking for and it goes on the list.
Windows Security Log · Event 4757
An account lost membership of a forest-wide group. Removal from Enterprise Admins is usually correct housekeeping — unless it happens shortly after an addition nobody requested, which is what covering tracks looks like.
Also written as Event ID 47574757 universal group removal
Watch this in the same rule as 4729 and 4733. An attacker who adds an account to a privileged group to do a job will often remove it afterwards, and the removal is frequently the event that survives when the addition was missed.
Sanitised. Addresses come from the RFC 5737 documentation ranges.
A member was removed from a security-enabled universal group.
Subject:
Security ID: CORP\jbrooks-adm
Account Name: jbrooks-adm
Account Domain: CORP
Logon ID: 0x3E9A11
Member:
Security ID: CORP\svc-update
Account Name: CN=svc-update,CN=Users,DC=corp,DC=example
Group:
Security ID: CORP\Enterprise Admins
Group Name: Enterprise Admins
Group Domain: CORP Everything else in the log line is context.
Most of the time it is one of these.
What gives it awayA removal shortly after the matching 4756, by the same session, with no change record.
ATT&CK T1070What gives it awayAn unexplained removal of a legitimate administrator from Enterprise Admins.
ATT&CK T1531let added = SecurityEvent | where EventID == 4756 | project AddTime = TimeGenerated, Group = TargetUserName, Member = MemberName;
let removed = SecurityEvent | where EventID == 4757 | project RemTime = TimeGenerated, Group = TargetUserName, Member = MemberName, By = SubjectUserName;
added | join kind=inner removed on Group, Member | where RemTime - AddTime < 24h Because an attacker who grants themselves privilege usually gives it back when finished, and if you only alert on additions you may have missed the one that mattered. The removal is often the surviving evidence — and an addition followed by a removal within a day, with no ticket for either, is a much stronger signal than either event alone.
Last reviewed 28 August 2026