README 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. pam_warn — PAM module which logs all PAM items if called
  2. ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  3. DESCRIPTION
  4. pam_warn is a PAM module that logs the service, terminal, user, remote user and
  5. remote host to syslog(3). The items are not probed for, but instead obtained
  6. from the standard PAM items. The module always returns PAM_IGNORE, indicating
  7. that it does not want to affect the authentication process.
  8. OPTIONS
  9. This module does not recognise any options.
  10. EXAMPLES
  11. #%PAM-1.0
  12. #
  13. # If we don't have config entries for a service, the
  14. # OTHER entries are used. To be secure, warn and deny
  15. # access to everything.
  16. other auth required pam_warn.so
  17. other auth required pam_deny.so
  18. other account required pam_warn.so
  19. other account required pam_deny.so
  20. other password required pam_warn.so
  21. other password required pam_deny.so
  22. other session required pam_warn.so
  23. other session required pam_deny.so
  24. AUTHOR
  25. pam_warn was written by Andrew G. Morgan <morgan@kernel.org>.