Forum Discussion

Cory_Laidlaw's avatar
Cory_Laidlaw
Copper Contributor
Jul 27, 2022
Solved

RDP authentication failures not reflected in security log?

Hi. We just installed a Windows Server 2019 test server. I am trying to have the server send me a notification if someone tries - and fails to authenticate.   I am doing this using the Task Schedul...
  • vhoracek's avatar
    vhoracek
    Mar 05, 2023

    This is actually by design.

    You see, when you attempt to logon to an RDP session, the security provider behind the logon process called CredSSP decides whether to employ Kerberos or NTLM to verify your identity to the remote computer.

    If Kerberos is available for which you need direct line of sight towards the Domain Controller, CredSSP attempts to verify your credential with the Domain Controller. If the password provided is wrong, the Domain Controller logs an Event ID 4771 - Kerberos PreAuthentication Failed.

    If Kerberos is not avaialble, CredSSP falls back to NTLM and attempts to verify your credential directly with the remote computer which in turn relays the credential verification to the Domain Controller. If, in this case, the password provided is wrong, the remote computer logs an Event ID 4625 - Logon Failed and the Domain Controller logs an Event ID 4776 - Credential Validation Failed.

    Cheers,
    Vojtech