Are there ways to understand which password entered when connecting to my server ?
1 Answer 1
The password is never recorded. If it was it would be the first place a hacker would check for clues about correct passwords.
By default, TDS (Tabular Data Stream, the network protocol used by SQL Server), encrypts SQL Server secured passwords before sending them over the network. If Active Directory logins are used with Kerberos authentication (the default), the client doesn't even send an encrypted version of the password over the wire, instead it sends proof of the Kerberos ticket to the server for authentication. This means you cannot even sniff network traffic to determine what password has been tried.