sys/vfs/hammer2: Fix multiple "radii" -> "radix"
[dragonfly.git] / contrib / pam_passwdqc / README
blobbe51a52689ffd573e72a4d2fc9cadbe55ee16dfd
1 pam_passwdqc is a simple password strength checking module for
2 PAM-aware password changing programs, such as passwd(1).  In addition
3 to checking regular passwords, it offers support for passphrases and
4 can provide randomly generated ones.  All features are optional and
5 can be (re-)configured without rebuilding.
7 This module should be stacked before your usual password changing
8 module (such as pam_unix or pam_pwdb) in the password management group
9 (the "password" lines in /etc/pam.d/passwd or /etc/pam.conf).  The
10 password changing module should then be told to use the provided new
11 authentication token (new password) rather than request it from the
12 user.  There's usually the "use_authtok" option to do that.  If your
13 password changing module lacks the "use_authtok" option or its prompts
14 are inconsistent with pam_passwdqc's, you may tell pam_passwdqc to ask
15 for the old password as well, with "ask_oldauthtok".  In that case the
16 option to use with the password changing module is "use_first_pass".
18 There are a number of supported options, which can be used to modify the
19 behavior of pam_passwdqc (defaults are given in square brackets):
21         config=FILE                     []
23 Load the specified configuration FILE, which must be in the
24 passwdqc.conf format (described in the passwdqc.conf(5) manual page).
25 This file may define any options described in here, including load of
26 yet another configuration file, but loops are not allowed.
28         min=N0,N1,N2,N3,N4              [min=disabled,24,11,8,7]
30 The minimum allowed password lengths for different kinds of passwords
31 and passphrases.  The keyword "disabled" can be used to disallow
32 passwords of a given kind regardless of their length.  Each subsequent
33 number is required to be no larger than the preceding one.
35 N0 is used for passwords consisting of characters from one character
36 class only.  The character classes are: digits, lower-case letters,
37 upper-case letters, and other characters.  There is also a special
38 class for non-ASCII characters, which could not be classified, but are
39 assumed to be non-digits.
41 N1 is used for passwords consisting of characters from two character
42 classes that do not meet the requirements for a passphrase.
44 N2 is used for passphrases.  Note that besides meeting this length
45 requirement, a passphrase must also consist of a sufficient number of
46 words (see the "passphrase" option below).
48 N3 and N4 are used for passwords consisting of characters from three
49 and four character classes, respectively.
51 When calculating the number of character classes, upper-case letters
52 used as the first character and digits used as the last character of a
53 password are not counted.
55 In addition to being sufficiently long, passwords are required to
56 contain enough different characters for the character classes and
57 the minimum length they have been checked against.
59         max=N                           [max=72]
61 The maximum allowed password length.  This can be used to prevent
62 users from setting passwords that may be too long for some system
63 services.
65 The value 8 is treated specially: with max=8, passwords longer than 8
66 characters will not be rejected, but will be truncated to 8 characters
67 for the strength checks and the user will be warned.  This is to be
68 used with the traditional DES-based password hashes, which truncate
69 the password at 8 characters.
71 It is important that you do set max=8 if you are using the traditional
72 hashes, or some weak passwords will pass the checks.
74         passphrase=N                    [passphrase=3]
76 The number of words required for a passphrase, or 0 to disable the
77 support for user-chosen passphrases.
79         match=N                         [match=4]
81 The length of common substring required to conclude that a password is
82 at least partially based on information found in a character string,
83 or 0 to disable the substring search.  Note that the password will not
84 be rejected once a weak substring is found; it will instead be
85 subjected to the usual strength requirements with the weak substring
86 partially discounted.
88 The substring search is case-insensitive and is able to detect and
89 remove a common substring spelled backwards.
91         similar=permit|deny             [similar=deny]
93 Whether a new password is allowed to be similar to the old one.  The
94 passwords are considered to be similar when there is a sufficiently
95 long common substring and the new password with the substring partially
96 discounted would be weak.
98         wordlist=FILE                   []
100 Deny passwords that are based on lines of a tiny external text file,
101 which can reasonably be e.g. a list of a few thousand common passwords.
102 Common dictionary words may also reasonably be included, especially in a
103 local language other than English, or longer yet common English words.
104 (passwdqc includes a list of a few thousand common English words of
105 lengths from 3 to 6 built in.  Any word list possibly specified with
106 this option is used in addition to the built-in word list.)
108 Substring matching and discounting will be used if the "match" setting
109 above is non-zero.  Please note that this is very inefficient, and isn't
110 to be used with large wordlists.
112         denylist=FILE                   []
114 Deny passwords or passphrases directly appearing in a tiny external text
115 file.  That file can reasonably be e.g. a list of common passwords if
116 only a relaxed policy is desired and stricter checks are thus disabled
117 (using their separate options).  Such policy would only be somewhat
118 effective against online/remote attacks, but not against offline attacks
119 on hashed passwords.
121         filter=FILE                     []
123 Deny passwords or passphrases directly appearing in a maybe huge binary
124 filter file created with pwqfilter.  This is very efficient, needing at
125 most two random disk reads per query.  A filter created from millions of
126 leaked passwords can reasonably be used on top of passwdqc's other
127 checks to further reduce the number of passing yet weak passwords
128 without causing unreasonable inconvenience (as e.g. higher minimum
129 lengths and character set requirements could).
131         random=N[,only]                 [random=47]
133 The size of randomly-generated passphrases in bits (24 to 136), or 0 to
134 disable this feature.  Any passphrase that contains the offered
135 randomly-generated string will be allowed regardless of other possible
136 restrictions.
138 The "only" modifier can be used to disallow user-chosen passwords.
140         enforce=none|users|everyone     [enforce=everyone]
142 The module can be configured to warn of weak passwords only, but not
143 actually enforce strong passwords.  The "users" setting will enforce
144 strong passwords for invocations by non-root users only.
146         non-unix                        []
148 Normally, the module uses getpwnam(3) to obtain the user's personal
149 login information and use that during the password strength checks.
150 This behavior can be disabled with the "non-unix" option.
152         retry=N                         [retry=3]
154 The number of times the module will ask for a new password if the user
155 fails to provide a sufficiently strong password and enter it twice the
156 first time.
158         ask_oldauthtok[=update]         []
160 Ask for the old password as well.  Normally, pam_passwdqc leaves this
161 task for subsequent modules.  With no argument, the "ask_oldauthtok"
162 option will cause pam_passwdqc to ask for the old password during the
163 preliminary check phase.  With "ask_oldauthtok=update", pam_passwdqc
164 will do that during the update phase.
166         check_oldauthtok                []
168 This tells pam_passwdqc to validate the old password before giving a
169 new password prompt.  Normally, this task is left for subsequent
170 modules.
172 The primary use for this option is when "ask_oldauthtok=update" is
173 also specified, in which case no other module gets a chance to ask
174 for and validate the password.  Of course, this will only work with
175 Unix passwords.
177         use_first_pass                  []
178         use_authtok                     []
180 Use the new password obtained by modules stacked before pam_passwdqc.
181 This disables user interaction within pam_passwdqc.  With this module,
182 the only difference between "use_first_pass" and "use_authtok" is that
183 the former is incompatible with "ask_oldauthtok".
185         noaudit                         []
187 If audit is enabled at build time, the PAM module logs audit events once
188 user tries to change their credentials.  This option disables that audit
189 logging.