linux poison RSS
linux poison Email

How to set Password Length in Ubuntu Linux

A strong password policy is one of the most important aspects of your security posture. Many successful security breaches involve simple brute force and dictionary attacks against weak passwords. If you intend to offer any form of remote access involving your local password system, make sure you adequately address minimum password complexity requirements, maximum password lifetimes, and frequent audits of your authentication systems.

Setting Password Length:
By default, Ubuntu requires a minimum password length of 4 characters, these values are controlled in the file /etc/pam.d/common-password, which is outlined below, look for the line having "pam_unix.so" mentioned ...

password   [success=1 default=ignore]   pam_unix.so nullok obscure min=4 max=8 sha512
If you would like to adjust the minimum length to 6 characters, change the appropriate variable to min=6. The modification is outlined below.
password   [success=1 default=ignore]   pam_unix.so nullok obscure min=6 max=8 sha512


0 comments:

Post a Comment

Related Posts with Thumbnails