Another Account Lockout Issue

Posted by NeverEnoughBackups@reddit | sysadmin | View on Reddit | 6 comments

Going deep into logs on this one.

We have a single account that is locking a users account. We have temporarily bypassed this by forcing a task to unlock the account every 5 minutes. This started roughly a month ago.

We can see in the event viewer that there is no caller computer name on event 4740 (lockout event) so we enabled debugging logs which didn't help. I have since enabled debugging netlogon logs and I can see that 4 attempts are made every 3 minutes but the 'from' field is empty. Below is a snipit of the Netlogon logs.

07/09 13:44:31 [LOGON] [15828] DOMAIN: SamLogon: Network logon of domain\user from  Entered
07/09 13:44:31 [LOGON] [15828] DOMAIN: SamLogon: Network logon of domain\user from  Returns 0xC0000234
07/09 13:44:31 [LOGON] [15828] DOMAIN: SamLogon: Network logon of domain\user from  Entered
07/09 13:44:31 [LOGON] [15828] DOMAIN: SamLogon: Network logon of domain\user from  Returns 0xC0000234

We get the two codes "0xC0000234" (account locked out) and "0xC000006A" (Invalid credentials) Notice how the from is empty. As an example below is a successful login attempt when the user logged in this morning. Of course some info is changed to generic words.

07/09 7:56:40 [LOGON] [6560] DOMAIN: SamLogon: Network logon of domain\user from company-computername-24 Returns 0x0

I am not sure what is trying to log in every 3 minutes and after enabling debugging and still coming up empty I am looking for ideas.

We know the device trying to authenticate is not their workstation or their cell phone. This happens whether the user is in the office or not or if the laptop/phone is on or not.

We also removed all microsoft apps off the cell phone just in case it was a syncing issue. We changed the users password since this happened and it didn't have any effect.

Thanks!