Brute force against one account.
What gives it awayA single account locked repeatedly, with a run of 4625 or 4771 failures from one source immediately before each lockout.
ATT&CK T1110.001Nothing matches that yet. Tell us what you were looking for and it goes on the list.
Windows Security Log · Event 4740
An account hit the failed-password threshold and Windows locked it. Nine times out of ten a device is still offering an old password. The field that solves it is the caller computer name, which tells you where the bad attempts came from.
Also written as 4740Event ID 4740A user account was locked outAccount lockout 4740
Your account is temporarily blocked because the wrong password was tried too many times. If it was not you, something on your network — a phone, a tablet, a printer, a backup drive — is still trying an old password. Find that device rather than just resetting the password again.
Recorded on the domain controller that processed the lockout, not on the machine where the attempts happened. Chase the Caller Computer Name, then pull 4625 or 4771 from that host to find the failure reason. A burst of lockouts across many accounts at once is spraying, not user error.
Sanitised. Addresses come from the RFC 5737 documentation ranges.
A user account was locked out.
Subject:
Security ID: SYSTEM
Account Name: DC01$
Account Domain: CORP
Logon ID: 0x3E7
Account That Was Locked Out:
Security ID: CORP\jbrooks
Account Name: jbrooks
Additional Information:
Caller Computer Name: LAPTOP-J7X2 Everything else in the log line is context.
A workstation name you recogniseA device or saved credential on that machine is the source. Go there. Blank or a dashThe attempts arrived without a resolvable machine name, common for NTLM over the network and for attacker tooling. The domain controller's own nameThe attempts reached the DC directly rather than through a member machine — check VPN, Exchange, and any internet-facing authentication. Most of the time it is one of these.
What gives it awayA single account locked repeatedly, with a run of 4625 or 4771 failures from one source immediately before each lockout.
ATT&CK T1110.001What gives it awaySeveral different accounts locking within the same short window. Spraying normally stays under the threshold, so simultaneous lockouts mean the attempt was clumsy or the threshold is low.
ATT&CK T1110.003What gives it awayRepeated lockouts of a business-critical account with no successful sign-in in between, resuming immediately after each unlock.
ATT&CK T1531SecurityEvent | where EventID == 4740 | project TimeGenerated, TargetUserName, TargetDomainName, CallerComputerName = TargetSid | order by TimeGenerated desc SecurityEvent | where EventID == 4740 | summarize lockouts = count(), accounts = dcount(TargetUserName) by bin(TimeGenerated, 15m) | where accounts > 3 Get-WinEvent -ComputerName dc01 -FilterHashtable @{LogName='Security'; Id=4740} -MaxEvents 50 | Select-Object TimeCreated, @{n='Account';e={$_.Properties[0].Value}}, @{n='Caller';e={$_.Properties[1].Value}} wevtutil qe Security /q:"*[System[(EventID=4740)]]" /f:text /c:20 /rd:true Something is retrying an old password automatically. The usual suspects are a Windows service or scheduled task running under your account, a phone or tablet collecting mail, a mapped network drive, or a saved credential in Credential Manager. Until you find and update that stored password, unlocking the account only buys a few minutes.
Read the Caller Computer Name in the 4740 event on the domain controller, then go to that machine and look at its 4625 events for the same account. The Sub Status code there tells you why each attempt failed, and the process or service name usually points straight at what is holding the old password.
Usually not. Most lockouts are a device on your own network still using a password you changed. It becomes a genuine concern when several different accounts lock out around the same time, or when the failed attempts came from an address outside your network.
The one that processed the lockout, and the event is also forwarded to the PDC emulator, which is the reliable place to look. If you check a single DC at random you may not find the event at all.
Last reviewed 28 August 2026