💾 Archived View for gemini.nezbednik.eu.org › articles › gentoo_passwdqc.gmi captured on 2023-07-10 at 13:26:02. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2023-03-20)

-=-=-=-=-=-=-

I don't like passwdqc.

published on 07-03-2023 18:12:17

So I'm a Linux user, right? I've been (re)installing Gentoo Linux over the past few months, and one thing in the setup struck out to me: Why the heck is there password quality control enabled by default? Well, there's a program enabled by default, called passwdqc. If you need insecure passwords, I'd recommend to loosen its' configuration to allow for them.

sys-auth/passwdqc

The configuration file

It's located at /etc/security/passwdqc.conf (atleast on Gentoo).

online manual for passwdqc.conf

If you're lazy or just want a setup that works, here's the least restrictive configuration:

min=0,0,0,0,0
max=72
passphrase=3
match=0
similar=permit
random=47
enforce=none
retry=3

back