An attacker changing the password of an account they have compromised.
What gives it awayA change from an unusual source address, or shortly after an unfamiliar sign-in, locking the legitimate owner out quietly.
ATT&CK T1098Nothing matches that yet. Tell us what you were looking for and it goes on the list.
Windows Security Log · Event 4723
Someone changed their own password, supplying the old one to do it. That is what separates it from Event 4724, where an administrator resets a password without knowing the current one — and it is why 4723 is the far less interesting of the two.
Also written as Event ID 47234723 password change
You, or whoever uses this account, changed the password in the normal way.
Compare SubjectUserName against TargetUserName. When they match, the account holder knew the old password. When they differ, someone changed another user's password while knowing the current one, which is unusual enough to look at.
Sanitised. Addresses come from the RFC 5737 documentation ranges.
An attempt was made to change an account's password.
Subject:
Security ID: CORP\jbrooks
Account Name: jbrooks
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.
Same as TargetUserNameOrdinary self-service password change. Different from TargetUserNameSomeone changed another account's password while knowing the current one. Worth a look. Most of the time it is one of these.
What gives it awayA change from an unusual source address, or shortly after an unfamiliar sign-in, locking the legitimate owner out quietly.
ATT&CK T1098What gives it awaySubjectUserName differing from TargetUserName, meaning the current password was known to a third party.
ATT&CK T1098SecurityEvent | where EventID == 4723 | where SubjectUserName != TargetUserName | project TimeGenerated, Computer, Target = TargetUserName, ChangedBy = SubjectUserName 4723 is a password change where the current password was supplied — normally a user changing their own. 4724 is an administrative reset performed without knowing the old password. 4724 is the one worth monitoring, because it represents taking over access rather than maintaining it.
Not on its own. The message says an attempt was made, and Windows records failures too — check whether the event is logged as Audit Success or Audit Failure. A run of failures usually means the new password did not satisfy the complexity or history policy.
Last reviewed 28 August 2026