sqlschool.gr logo

articles

Articles of SQLschool.gr Team

How to find SQL Logins with common passwords

Antonios Chatzipavlis
Sunday 23 February 2020

Είναι η δουλειά μου να ελέγχω SQL Server instance με σκοπό να βρω προβλήματα ή σημεία που είναι εκτός των best practices που όλοι ζητάνε αλλά δεν έχουν εφαρμοστεί.

Ένα από τα πράγματα που ελέγχω είναι το security του instance. Ένας από τους πολλούς ελέγχους που διενεργώ είναι να βρω τα SQL Logins που έχουν blank password και που έχω γράψει για αυτό πριν από χρόνια στο post αυτό.

Τα τελευταία χρόνια έχω προσθέσει πολλά πράγματα ακόμα καθώς οι απαιτήσεις μεγαλώνουν συνέχεια και ένα από αυτά είναι να ελέγχω αν τα SQL Logins έχουν σαν password κάτι κοινό (common όπως λενε στα ελληνικά :) ).

Στο internet θα βρείτε πολλές τέτοιες λίστες τις οποίες και μπορείτε να χρησιμοποιήσετε.

Προσωπικά έχω φτιάξει μια με τα περισσότερο συνηθισμένα την οποία και έχω στο github και μπορείτε ελεύθερα να χρησιμοποιήσετε αλλά και αν θέλετε να εμπλουτίσετε ώστε να γίνει καλύτερη.

Το πως μπορείτε να χρησιμοποιήσετε αυτή είναι εύκολο αρκεί να ακολουθήσετε τα εξής βήματα:

  • Download από το github την λίστα και βάλτε την σε ένα οποιοδήποτε folder στο SQL Server instance που θέλετε να ελέγξετε.
  • Εκτελέστε το παρακάτω script αφού πρώτα αλλάξετε το path στο BULK INSERT statement

Το αποτέλεσμα ίσως σας προβληματίσει.

if object_id('tempdb..#commonpass') is not null
begin
    drop table #commonpass;
end;
create table #commonpass (pass nvarchar(64));
BULK INSERT #commonpass FROM 'W:\TEMP\CommonPasswords.txt';
with pass_check_result as
(
    select 
            name 
        ,   is_disabled
        ,    pass
        ,    case PWDCOMPARE(pass,password_hash)
            when 0 then 'N'
            when 1 then 'Y'
            end as has_common_password
    from sys.sql_logins
    cross join #commonpass
)
select distinct name,is_disabled,pass
from pass_check_result
where has_common_password='Y';


//antonch

Antonios Chatzipavlis

Antonios Chatzipavlis

Antonios Chatzipavlis is a highly experienced Data Solutions Consultant and Trainer. He has been working in the IT industry since 1988, holding various roles such as senior developer, IT Manager, Data & AI Solutions Architect and Consultant.

Since 1995, Antonios has focused on modern technologies and software development tools, primarily by Microsoft. He has specialized in Data & AI since 2000, with expertise in Microsoft Data Platform (SQL Server, Azure SQL Databases, Azure Synapse Analytics, Microsoft Fabric, Power BI, AI) and Databricks.

Antonios is also a Microsoft Certified Trainer (MCT) for over 25 years, has been recognized as a Microsoft Most Valuable Professional (MVP) in Data Platform since 2010 and he is in the Data Expert 40 Powerlist 2024 by Boussias. He is the co-founder and visionary behind XLYTiCA, a company dedicated to Data & AI solutions.

Episode

Task Flows in Microsoft Fabric

image

More Episodes...

Tip

Get Certified: Become a Fabric Data Engineer

More Tips...

Become a member

If you want to receive updates from us become a member to our community.

Connect

Explore

Learn


sqlschool.gr © 2010-2025 All rights reserved

This site uses cookies for operational and analytics purposes only. By continuing to browse this site, you agree to their use.