summaryrefslogtreecommitdiff
path: root/modules/pam_pwhistory/pam_pwhistory.8
blob: bb2333492ec5d7e118fbcd46888cfbb5e47c117c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
'\" t
.\"     Title: pam_pwhistory
.\"    Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
.\"      Date: 09/19/2013
.\"    Manual: Linux-PAM Manual
.\"    Source: Linux-PAM Manual
.\"  Language: English
.\"
.TH "PAM_PWHISTORY" "8" "09/19/2013" "Linux-PAM Manual" "Linux\-PAM Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.\" http://bugs.debian.org/507673
.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.ie \n(.g .ds Aq \(aq
.el       .ds Aq '
.\" -----------------------------------------------------------------
.\" * set default formatting
.\" -----------------------------------------------------------------
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.\" -----------------------------------------------------------------
.\" * MAIN CONTENT STARTS HERE *
.\" -----------------------------------------------------------------
.SH "NAME"
pam_pwhistory \- PAM module to remember last passwords
.SH "SYNOPSIS"
.HP \w'\fBpam_pwhistory\&.so\fR\ 'u
\fBpam_pwhistory\&.so\fR [debug] [use_authtok] [enforce_for_root] [remember=\fIN\fR] [retry=\fIN\fR] [authtok_type=\fISTRING\fR]
.SH "DESCRIPTION"
.PP
This module saves the last passwords for each user in order to force password change history and keep the user from alternating between the same password too frequently\&.
.PP
This module does not work together with kerberos\&. In general, it does not make much sense to use this module in conjunction with NIS or LDAP, since the old passwords are stored on the local machine and are not available on another machine for password history checking\&.
.SH "OPTIONS"
.PP
\fBdebug\fR
.RS 4
Turns on debugging via
\fBsyslog\fR(3)\&.
.RE
.PP
\fBuse_authtok\fR
.RS 4
When password changing enforce the module to use the new password provided by a previously stacked
\fBpassword\fR
module (this is used in the example of the stacking of the
\fBpam_cracklib\fR
module documented below)\&.
.RE
.PP
\fBenforce_for_root\fR
.RS 4
If this option is set, the check is enforced for root, too\&.
.RE
.PP
\fBremember=\fR\fB\fIN\fR\fR
.RS 4
The last
\fIN\fR
passwords for each user are saved in
/etc/security/opasswd\&. The default is
\fI10\fR\&. Value of
\fI0\fR
makes the module to keep the existing contents of the
opasswd
file unchanged\&.
.RE
.PP
\fBretry=\fR\fB\fIN\fR\fR
.RS 4
Prompt user at most
\fIN\fR
times before returning with error\&. The default is
\fI1\fR\&.
.RE
.PP
\fBauthtok_type=\fR\fB\fISTRING\fR\fR
.RS 4
See
\fBpam_get_authtok\fR(3)
for more details\&.
.RE
.SH "MODULE TYPES PROVIDED"
.PP
Only the
\fBpassword\fR
module type is provided\&.
.SH "RETURN VALUES"
.PP
PAM_AUTHTOK_ERR
.RS 4
No new password was entered, the user aborted password change or new password couldn\*(Aqt be set\&.
.RE
.PP
PAM_IGNORE
.RS 4
Password history was disabled\&.
.RE
.PP
PAM_MAXTRIES
.RS 4
Password was rejected too often\&.
.RE
.PP
PAM_USER_UNKNOWN
.RS 4
User is not known to system\&.
.RE
.SH "EXAMPLES"
.PP
An example password section would be:
.sp
.if n \{\
.RS 4
.\}
.nf
#%PAM\-1\&.0
password     required       pam_pwhistory\&.so
password     required       pam_unix\&.so        use_authtok
      
.fi
.if n \{\
.RE
.\}
.PP
In combination with
\fBpam_cracklib\fR:
.sp
.if n \{\
.RS 4
.\}
.nf
#%PAM\-1\&.0
password     required       pam_cracklib\&.so    retry=3
password     required       pam_pwhistory\&.so   use_authtok
password     required       pam_unix\&.so        use_authtok
      
.fi
.if n \{\
.RE
.\}
.sp
.SH "FILES"
.PP
/etc/security/opasswd
.RS 4
File with password history
.RE
.SH "SEE ALSO"
.PP
\fBpam.conf\fR(5),
\fBpam.d\fR(5),
\fBpam\fR(8)\fBpam_get_authtok\fR(3)
.SH "AUTHOR"
.PP
pam_pwhistory was written by Thorsten Kukuk <kukuk@thkukuk\&.de>