Password Audit for SQL Server Logins | Find Blank or Common Passwords for SQL Logins

Password audit is a must for all SQL Servers. Weak or Blank passwords are invitation to trouble and such type of passwords may result in security breach. Everybody knows the importance of Strong and Complex password but as they say it’s always easy to preach but difficult to practice, we tend to make use of weak and sometimes blank passwords. Now the question arises how to get rid of these.

Regular Password Audits is the solution. As a SQL DBA we must do a regular audit and remind the users to change their passwords to something more complex. In this article I’ll explain you how to do password audit and how to customize it according to your environment. For understanding Password Auditing, you need to understand the built-in function PWDCOMPARE

PWDCOMPARE

This function hashes a password and compares the hash to the hash of existing password. You must be wondering why are we again hashing, SQL Server stores the Hash of password for SQL Logins and hashing is only one side, un-hashing or decrypting the hashed data is not at all possible. This function is available from SQL Server 7.0 to SQL Server 2012 i.e., Denali, means you can make use of this function in all SQL Server versions.

The function takes 3 parameters Clear_test_password, Password_Hash and Version where the first two are mandatory and the third one is optional and obsolete but it is there for backward compatibility. It returns 1 if the hash of the clear_text_password matches the password_hash parameter, and 0 if it does not.

Note: PWDCOMPARE function is not a threat against the strength of password hashes because the same test could be performed by trying to log in using the password provided as the first parameter.

Permissions required: PWDENCRYPT is available to public and CONTROL SERVER permission is required to examine the password_hash column of sys.sql_logins.

A. Identifying logins that have no passwords

The following example identifies SQL Server logins that have no passwords.

SELECT name FROM sys.sql_logins WHERE PWDCOMPARE('', password_hash) = 1 ; 

 

B. Searching for passwords which are same as login names

This code identifies the login where the user has given the same text as login and password, for example Login Payroll_web_User is a login with password Payroll_web_User

SELECT name FROM sys.sql_logins WHERE PWDCOMPARE(name, password_hash) = 1 ; 

** **

 

C Searching for common passwords

To search for common passwords that you want to identify and change, specify the password as the first parameter. This will check for a password specified as password.

SELECT name FROM sys.sql_logins WHERE PWDCOMPARE('password', password_hash) = 1 ; 

 

 

Hope this post helped you, do leave comments.

Regards
Sarabpreet Singh
@Sarab_SQLGeek
http://www.sarabpreet.com