Removing a backdoor account after finishing with it.
What gives it awayA deletion of an account that was created recently, particularly outside change windows and by the same session that created it.
ATT&CK T1070Nothing matches that yet. Tell us what you were looking for and it goes on the list.
Windows Security Log · Event 4726
A user account was removed. Most are ordinary offboarding. The ones that matter are deletions nobody requested, and deletions of accounts that were created only hours earlier — which is what cleaning up after an intrusion looks like.
Also written as 4726Event ID 4726A user account was deleted
An account was removed from this PC. If you did not do it, someone with administrator access did — which is worth understanding regardless of whose account it was.
Correlate against 4720. An account created and deleted inside the same day, especially outside change windows, is a strong indicator of an attacker covering their tracks. Deletions are also destructive in Active Directory: the SID is gone and recreating the name does not restore access.
Sanitised. Addresses come from the RFC 5737 documentation ranges.
A user account was deleted.
Subject:
Security ID: CORP\jbrooks-adm
Account Name: jbrooks-adm
Account Domain: CORP
Logon ID: 0x3E9A11
Target Account:
Security ID: CORP\svc-update
Account Name: svc-update
Account Domain: CORP
Additional Information:
Privileges: - Everything else in the log line is context.
Most of the time it is one of these.
What gives it awayA deletion of an account that was created recently, particularly outside change windows and by the same session that created it.
ATT&CK T1070What gives it awaySeveral accounts deleted in a short window with no matching offboarding records.
ATT&CK T1531What gives it awayA deletion shortly after the account was used for privileged access.
ATT&CK T1070let created = SecurityEvent | where EventID == 4720 | project CreateTime = TimeGenerated, Account = TargetUserName;
let deleted = SecurityEvent | where EventID == 4726 | project DeleteTime = TimeGenerated, Account = TargetUserName, DeletedBy = SubjectUserName;
created | join kind=inner deleted on Account | where DeleteTime - CreateTime < 24h | project Account, CreateTime, DeleteTime, DeletedBy SecurityEvent | where EventID == 4726 | summarize deletions = count() by SubjectUserName, bin(TimeGenerated, 1h) | where deletions > 3 In Active Directory, only if the Recycle Bin feature is enabled, and even then within the deleted-object lifetime. For local accounts there is no recovery. Recreating an account with the same name produces a different SID, so it inherits none of the previous permissions or file ownership.
Because the SID is what actually holds permissions and file ownership, and deleting the account destroys the link between them. Disabling stops access immediately while keeping the ability to audit what the account had, restore it, or attribute past activity to it.
Last reviewed 28 August 2026