Releasing an account that was locked by a brute-force attempt.
What gives it awayAn unlock shortly after a lockout, followed by more failures, which suggests the guessing is continuing.
ATT&CK T1110Nothing matches that yet. Tell us what you were looking for and it goes on the list.
Windows Security Log · Event 4767
A locked account was released, either by an administrator or by the lockout duration expiring. On its own it is administrative housekeeping — its value is as the closing bracket on a lockout, and as a way to spot accounts that lock again minutes later.
Also written as Event ID 4767A user account was unlocked4767 account unlocked
An account that was temporarily blocked has been released and can sign in again.
An account unlocked and locked again within minutes means the stale credential was never found — the unlock is treating the symptom. Count unlock-relock cycles per account; the worst offenders are almost always a service or a mobile mail client.
Sanitised. Addresses come from the RFC 5737 documentation ranges.
A user account was unlocked.
Subject:
Security ID: CORP\helpdesk01
Account Name: helpdesk01
Account Domain: CORP
Logon ID: 0x3E9A11
Target Account:
Security ID: CORP\jbrooks
Account Name: jbrooks
Account Domain: CORP Everything else in the log line is context.
Most of the time it is one of these.
What gives it awayAn unlock shortly after a lockout, followed by more failures, which suggests the guessing is continuing.
ATT&CK T1110What gives it awayAn unlock performed after an unverified request, particularly for a privileged account.
ATT&CK T1078SecurityEvent | where EventID == 4767 | summarize unlocks = count() by TargetUserName | where unlocks > 3 | order by unlocks desc SecurityEvent | where EventID in (4740, 4767) | project TimeGenerated, EventID, TargetUserName | order by TargetUserName, TimeGenerated asc Because something is still offering the old password automatically. Unlocking treats the symptom; the cause is usually a Windows service or scheduled task running under the account, a phone collecting mail, a mapped drive, or a saved credential. Read the caller computer name in the matching Event 4740 to find where the attempts come from.
It does if a lockout duration is configured — the account is released once that time passes, without anyone doing anything. If the duration is set to zero, the account stays locked until an administrator releases it.
Last reviewed 28 August 2026