Hi Michael Ozorowsky,
Thank you for posting in the Microsoft Community Forum.
When dealing with an account repeatedly getting locked out due to bad password attempts, there are several steps you can take to identify the application or process responsible:
- **Event Viewer**: Check the security event logs on the domain controller for Event ID 4625 (Failed Logon) associated with the locked out account. This event should include information about the source IP address, hostname, and process name (if available) of the machine generating the failed logon attempts.
- **Netlogon Logging**: Enable Netlogon logging on the domain controller to capture additional information about authentication requests. This can provide more detailed insights into the source of the failed logon attempts.
- **Account Lockout Tools**: Utilize Microsoft's Account Lockout and Management Tools, such as LockoutStatus.exe and EventCombMT.exe, to analyze account lockout events across domain controllers and identify the source machine.
- **Process Monitor**: Install and run Process Monitor (procmon) on the machine generating the failed logon attempts. Filter the captured events to include only network activity (e.g., TCP and UDP) and look for processes repeatedly attempting to connect to network resources with incorrect credentials.
- **Network Sniffing**: Use network sniffing tools like Wireshark to capture network traffic on the machine generating the failed logon attempts. Look for authentication traffic (e.g., SMB, LDAP) originating from the machine and analyze the packets to identify the source application or process.
- **Credential Caching**: Check if any applications or services running on the machine are configured with cached credentials that might be outdated or incorrect. Update or remove any stored credentials that could be causing authentication failures.
- **Scheduled Tasks and Services**: Review the scheduled tasks, services, and applications configured to run on the machine. Look for any tasks or services configured to use the credentials of the locked-out account and investigate further.
- **Third-Party Tools**: Consider using third-party security monitoring and auditing tools that specialize in detecting and analyzing authentication-related issues, such as failed logon attempts and account lockouts.
By systematically investigating these areas, you should be able to identify the application or process responsible for the repeated failed logon attempts and take appropriate action to address the issue.
Best regards
Neuvi Jiang