Disrupting an organisation by cutting off access.
What gives it awaySeveral accounts disabled in a short window with no offboarding records, particularly administrators.
ATT&CK T1531Nothing matches that yet. Tell us what you were looking for and it goes on the list.
Windows Security Log · Event 4725
An account was switched off without being deleted. It is the correct way to remove access — the account keeps its identifier, so what it owned and what it did remain traceable. Most are ordinary offboarding.
Also written as Event ID 4725A user account was disabled4725 account disabled
An account on this PC was turned off. It still exists and its files are intact, but nobody can sign in with it.
Preferred over deletion, because the SID survives and permissions and past activity stay attributable. Watch for service accounts being disabled — that usually breaks something, and an unexplained one can be disruption rather than housekeeping.
Sanitised. Addresses come from the RFC 5737 documentation ranges.
A user account was disabled.
Subject:
Security ID: CORP\jbrooks-adm
Account Name: jbrooks-adm
Account Domain: CORP
Logon ID: 0x3E9A11
Target Account:
Security ID: CORP\mchen
Account Name: mchen
Account Domain: CORP Everything else in the log line is context.
Most of the time it is one of these.
What gives it awaySeveral accounts disabled in a short window with no offboarding records, particularly administrators.
ATT&CK T1531What gives it awayAn account disabled shortly after unusual activity from it, by someone other than the security team.
ATT&CK T1098What gives it awayAn administrative account disabled by another administrator with no change record.
ATT&CK T1531SecurityEvent | where EventID == 4725 | project TimeGenerated, Computer, Account = TargetUserName, DisabledBy = SubjectUserName | order by TimeGenerated desc SecurityEvent | where EventID == 4725 | summarize disabled = count() by SubjectUserName, bin(TimeGenerated, 30m) | where disabled > 3 Disabling stops sign-in but keeps the account and its security identifier, so file ownership, group membership, and past activity stay attributable. Deleting destroys the identifier permanently, and recreating the same name produces a different one that inherits nothing. Disable unless you are certain.
Not immediately. An account already signed in can keep working until its session ends or its Kerberos tickets expire, which can be hours. If you are disabling an account during an incident, sign the sessions out and reset the password as well.
Last reviewed 28 August 2026