Site icon EfmSoft

What does NTSTATUS 0xC000006D (STATUS_LOGON_FAILURE) mean?

 
Previous Next
STATUS_PASSWORD_RESTRICTION STATUS_ACCOUNT_RESTRICTION

STATUS_LOGON_FAILURE

Why the top-level status is not enough

STATUS_LOGON_FAILURE is commonly the outer result of an unsuccessful Windows sign-in. It deliberately groups several failures that occur after the client has attempted authentication: an unknown account, incorrect secret, an account-state restriction, or an identity/domain mismatch can all surface as the same high-level result. Treating it as proof of a mistyped password loses the most useful diagnostic data.

Windows auditing can record a more specific substatus alongside the top-level value. For example, Microsoft documents a failed network authentication where STATUS_LOGON_FAILURE is paired with STATUS_WRONG_PASSWORD. The same documentation also shows that an unexpected domain supplied to NTLM can make a valid password fail because the domain participates in the hash calculation.

What to collect before changing credentials

References


Looking for a different code? Search another status or error code.

Exit mobile version