README 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. pam_deny — The locking-out PAM module
  2. ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  3. DESCRIPTION
  4. This module can be used to deny access. It always indicates a failure to the
  5. application through the PAM framework. It might be suitable for using for
  6. default (the OTHER) entries.
  7. EXAMPLES
  8. #%PAM-1.0
  9. #
  10. # If we don't have config entries for a service, the
  11. # OTHER entries are used. To be secure, warn and deny
  12. # access to everything.
  13. other auth required pam_warn.so
  14. other auth required pam_deny.so
  15. other account required pam_warn.so
  16. other account required pam_deny.so
  17. other password required pam_warn.so
  18. other password required pam_deny.so
  19. other session required pam_warn.so
  20. other session required pam_deny.so
  21. AUTHOR
  22. pam_deny was written by Andrew G. Morgan <morgan@kernel.org>