]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - lib/libpam/modules/pam_opie/pam_opie.8
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / lib / libpam / modules / pam_opie / pam_opie.8
1 .\" Copyright (c) 2001 Mark R V Murray
2 .\" All rights reserved.
3 .\" Copyright (c) 2002 Networks Associates Technology, Inc.
4 .\" All rights reserved.
5 .\"
6 .\" Portions of this software were developed for the FreeBSD Project by
7 .\" ThinkSec AS and NAI Labs, the Security Research Division of Network
8 .\" Associates, Inc.  under DARPA/SPAWAR contract N66001-01-C-8035
9 .\" ("CBOSS"), as part of the DARPA CHATS research program.
10 .\"
11 .\" Redistribution and use in source and binary forms, with or without
12 .\" modification, are permitted provided that the following conditions
13 .\" are met:
14 .\" 1. Redistributions of source code must retain the above copyright
15 .\"    notice, this list of conditions and the following disclaimer.
16 .\" 2. Redistributions in binary form must reproduce the above copyright
17 .\"    notice, this list of conditions and the following disclaimer in the
18 .\"    documentation and/or other materials provided with the distribution.
19 .\" 3. The name of the author may not be used to endorse or promote
20 .\"    products derived from this software without specific prior written
21 .\"    permission.
22 .\"
23 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
24 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
27 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 .\" SUCH DAMAGE.
34 .\"
35 .\" $FreeBSD$
36 .\"
37 .Dd July 7, 2001
38 .Dt PAM_OPIE 8
39 .Os
40 .Sh NAME
41 .Nm pam_opie
42 .Nd OPIE PAM module
43 .Sh SYNOPSIS
44 .Op Ar service-name
45 .Ar module-type
46 .Ar control-flag
47 .Pa pam_opie
48 .Op Ar options
49 .Sh DESCRIPTION
50 The OPIE authentication service module for PAM,
51 .Nm
52 provides functionality for only one PAM category:
53 that of authentication.
54 In terms of the
55 .Ar module-type
56 parameter, this is the
57 .Dq Li auth
58 feature.
59 It also provides a null function for session management.
60 .Pp
61 Note that this module does not enforce
62 .Xr opieaccess 5
63 checks.
64 There is a separate module,
65 .Xr pam_opieaccess 8 ,
66 for this purpose.
67 .Ss OPIE Authentication Module
68 The OPIE authentication component
69 provides functions to verify the identity of a user
70 .Pq Fn pam_sm_authenticate ,
71 which obtains the relevant
72 .Xr opie 4
73 credentials.
74 It provides the user with an OPIE challenge,
75 and verifies that this is correct with
76 .Xr opiechallenge 3 .
77 .Pp
78 The following options may be passed to the authentication module:
79 .Bl -tag -width ".Cm auth_as_self"
80 .It Cm debug
81 .Xr syslog 3
82 debugging information at
83 .Dv LOG_DEBUG
84 level.
85 .It Cm auth_as_self
86 This option will require the user
87 to authenticate himself as the user
88 given by
89 .Xr getlogin 2 ,
90 not as the account they are attempting to access.
91 This is primarily for services like
92 .Xr su 1 ,
93 where the user's ability to retype
94 their own password
95 might be deemed sufficient.
96 .It Cm no_fake_prompts
97 Do not generate fake challenges for users who do not have an OPIE key.
98 Note that this can leak information to a hypothetical attacker about
99 who uses OPIE and who does not, but it can be useful on systems where
100 some users want to use OPIE but most do not.
101 .El
102 .Pp
103 Note that
104 .Nm
105 ignores the standard options
106 .Cm try_first_pass
107 and
108 .Cm use_first_pass ,
109 since a challenge must be generated before the user can submit a valid
110 response.
111 .Sh FILES
112 .Bl -tag -width ".Pa /etc/opiekeys" -compact
113 .It Pa /etc/opiekeys
114 default OPIE password database.
115 .El
116 .Sh SEE ALSO
117 .Xr passwd 1 ,
118 .Xr getlogin 2 ,
119 .Xr opiechallenge 3 ,
120 .Xr syslog 3 ,
121 .Xr opie 4 ,
122 .Xr pam.conf 5 ,
123 .Xr pam 8