diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 14:22:51 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 14:22:51 +0000 |
commit | 9ada0093e92388590c7368600ca4e9e3e376f0d0 (patch) | |
tree | a56fe41110023676d7082028cbaa47ca4b6e6164 /modules/pam_stress/README | |
parent | Initial commit. (diff) | |
download | pam-upstream/1.5.2.tar.xz pam-upstream/1.5.2.zip |
Adding upstream version 1.5.2.upstream/1.5.2upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'modules/pam_stress/README')
-rw-r--r-- | modules/pam_stress/README | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/modules/pam_stress/README b/modules/pam_stress/README new file mode 100644 index 0000000..230e862 --- /dev/null +++ b/modules/pam_stress/README @@ -0,0 +1,61 @@ +pam_stress — The stress-testing PAM module + +━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ + +DESCRIPTION + +The pam_stress PAM module is mainly intended to give the impression of failing +as a fully functioning module might. + +OPTIONS + +debug + + Put lots of information in syslog. *NOTE* this option writes passwords to + syslog, so don't use anything sensitive when testing. + +no_warn + + Do not give warnings about things (otherwise warnings are issued via the + conversation function) + +use_first_pass + + Do not prompt for a password, for pam_sm_authentication function just use + item PAM_AUTHTOK. + +try_first_pass + + Do not prompt for a password unless there has been no previous + authentication token (item PAM_AUTHTOK is NULL) + +rootok + + This is intended for the pam_sm_chauthtok function and it instructs this + function to permit root to change the user's password without entering the + old password. + +expired + + An argument intended for the account and chauthtok module parts. It + instructs the module to act as if the user's password has expired + +fail_1 + + This instructs the module to make its first function fail. + +fail_2 + + This instructs the module to make its second function (if there is one) + fail. + +prelim + + For pam_sm_chauthtok, means fail on PAM_PRELIM_CHECK. + +required + + For pam_sm_chauthtok, means fail if the user hasn't already been + authenticated by this module. (See stress_new_pwd data string in the + NOTES.) + |