Quantcast
Channel: check – PenTesting | Hacking | Coding
Viewing all articles
Browse latest Browse all 11

Check for null passwords in Sql Server

$
0
0

One of the many ways to secure SQL Server is to review all passwords. You must also check for null passwords and if you locate any, change them. To list all users with null passwords, execute the following sql command:

USE master
GO
 
SELECT name, password FROM syslogins WHERE password IS NULL;

Viewing all articles
Browse latest Browse all 11

Trending Articles