In 3 separate systems, the following event is being logged many times (between 30 to 4,000 times a day depending on the system) on the domain controller server:
An account failed to log on.
Subject:
Security ID: SYSTEM
Account Name: %domainControllerHostname%$
Account Domain: %NetBIOSDomainName%
Logon ID: 0x3E7
Logon Type: 3
Account For Which Logon Failed:
Security ID: NULL SID
Account Name:
Account Domain:
Failure Information:
Failure Reason: Unknown user name or bad password.
Status: 0xc000006d
Sub Status: 0xc0000064
Process Information:
Caller Process ID: 0x1ec
Caller Process Name: C:\Windows\System32\lsass.exe
Network Information:
Workstation Name: %domainControllerHostname%
Source Network Address: -
Source Port: -
Detailed Authentication Information:
Logon Process: Schannel
Authentication Package: Kerberos
Transited Services: -
Package Name (NTLM only): -
Key Length: 0
This event is generated when a logon request fails. It is generated on the computer where access was attempted.
The Subject fields indicate the account on the local system which requested the logon. This is most commonly a service such as the Server service, or a local process such as Winlogon.exe or Services.exe.
The Logon Type field indicates the kind of logon that was requested. The most common types are 2 (interactive) and 3 (network).
The Process Information fields indicate which account and process on the system requested the logon.
The Network Information fields indicate where a remote logon request originated. Workstation name is not always available and may be left blank in some cases.
The authentication information fields provide detailed information about this specific logon request.
- Transited services indicate which intermediate services have participated in this logon request.
- Package name indicates which sub-protocol was used among the NTLM protocols.
- Key length indicates the length of the generated session key. This will be 0 if no session key was requested.
This event is slightly different to all of the others that I've found during research but I have determined the following:
Event ID: 4625
. "An account failed to log on".Logon Type: 3
. "Network (i.e. connection to shared folder on this computer from elsewhere on network)".Security ID: NULL SID
. "A valid account was not identified".Sub Status: 0xC0000064
. "User name does not exist".Caller Process Name: C:\Windows\System32\lsass.exe
. Local Security Authority Subsystem Service (LSASS), is a process in Microsoft Windows operating systems that is responsible for enforcing the security policy on the system. It verifies users logging on to a Windows computer or server, handles password changes, and creates access tokens. It also writes to the Windows Security Log.Workstation Name: SERVERNAME
. The authentication request is being submitted by or via the domain controller itself.Affected systems' similarities:
Affected systems' differences:
Some interesting things I've noticed in the most severely affected system:
The following event is logged on the terminal / remote desktop services server though nowhere near as many times:
An account failed to log on.
Subject:
Security ID: NULL SID
Account Name: -
Account Domain: -
Logon ID: 0x0
Logon Type: 3
Account For Which Logon Failed:
Security ID: NULL SID
Account Name: %terminalServerHostname%
Account Domain: %NetBIOSDomainName%
Failure Information:
Failure Reason: Unknown user name or bad password.
Status: 0xC000006D
Sub Status: 0xC0000064
Process Information:
Caller Process ID: 0x0
Caller Process Name: -
Network Information:
Workstation Name: %terminalServerHostname%
Source Network Address: %terminalServerIPv6Address%
Source Port: %randomHighNumber%
Detailed Authentication Information:
Logon Process: NtLmSsp
Authentication Package: NTLM
Transited Services: -
Package Name (NTLM only): -
Key Length: 0
This event is generated when a logon request fails. It is generated on the computer where access was attempted.
The Subject fields indicate the account on the local system which requested the logon. This is most commonly a service such as the Server service, or a local process such as Winlogon.exe or Services.exe.
The Logon Type field indicates the kind of logon that was requested. The most common types are 2 (interactive) and 3 (network).
The Process Information fields indicate which account and process on the system requested the logon.
The Network Information fields indicate where a remote logon request originated. Workstation name is not always available and may be left blank in some cases.
The authentication information fields provide detailed information about this specific logon request.
- Transited services indicate which intermediate services have participated in this logon request.
- Package name indicates which sub-protocol was used among the NTLM protocols.
- Key length indicates the length of the generated session key. This will be 0 if no session key was requested.
So, in summary, it definitely seems to be related to network access from desktop computers using staff user accounts but I can't see how.
Update 2015/08/25 08:48:
In the most severely affected system I have done the following to isolate the issue and after each reverted the change:
WseComputerBackupSvc
, WseEmailSvc
, WseHealthSvc
, WseMediaSvc
, WseMgmtSvc
, and WseNtfSvc
) and the generic failed logons did not continue.WseMgmtSvc
) and the generic failed logons did not continue.I have double-checked that the Windows Server Essentials Management Service (WseMgmtSvc
) is responsible for these generic failed logons by disabling it for a few days and there were no generic failed logons and enabling it for a few days and there were thousands of generic failed logons.
Update 2015/10/08 09:06:
On 2015/10/07 at 16:42 I found the following scheduled task:
This timeframe almost exactly matches the behaviour above so I disabled it to see if it affects the issue.
On 2015/10/08 at 08:57 I found that only 47 of these generic failed logons were logged since at irregular intervals.
So, I have narrowed it down even further.
This Event is usually caused by a stale hidden credential. Try this from the system giving the error:
From a command prompt run: psexec -i -s -d cmd.exe
From the new cmd window run: rundll32 keymgr.dll,KRShowKeyMgr
Remove any items that appear in the list of Stored User Names and Passwords. Restart the computer.
It seems that the problem was caused by the scheduled task "Alert Evaluations".
User contributions licensed under CC BY-SA 3.0