新版 Server 2012 R2 Essentials 生成审核失败事件 4625 空 SID 登录尝试

新版 Server 2012 R2 Essentials 生成审核失败事件 4625 空 SID 登录尝试

我正在研究触发我们的监控软件的登录失败问题。

研究该问题时,我能找到的唯一与我所看到的内容完全相同的其他信息是在这里:事件 4625 审核失败 NULL SID 网络登录失败

为了追踪这个问题,我使用了进程监视器并设置了 2 个过滤器:
进程是 lsass.exe,
结果不成功。

然后,我将结果与失败的审计尝试进行匹配,它似乎与进程监视器中的这两行相对应,因为它们每次都在审计失败的确切时间显示:

1:05:47.4932903 PM  lsass.exe   896 RegOpenKey  HKLM\Software\Policies\Microsoft\SystemCertificates\Root\ProtectedRoots NAME NOT FOUND  Desired Access: Read


1:05:47.4941867 PM  lsass.exe   896 RegQueryValue   HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\ForceAutoLockOnLogon NAME NOT FOUND  Length: 144

我不确定我是否在寻找正确的地方来追踪此问题,或者现在该做什么。有什么建议吗?

我是 serverfault 的新手,所以我无法对上面链接中的问题进行评论或回答,但如果他/她在进程监视器中看到相同的结果,我会很好奇。

以下是事件查看器事件:

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:  0x380
    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.

相关内容