Verify Accounts for Empty Passwords - Linux Views : 402
Tagged in : Linux
0 0
Send mail

Verify Accounts for Empty Passwords

To Verify No Accounts Have Empty Passwords,

Type the following command

# awk -F: '($2 == "") {print}' /etc/shadow


Lock all empty password accounts:

# passwd -l accountName
By Geethalakshmi, On - 2009-12-15



    Login to add Comments .