0.01
No commit activity in last 3 years
No release in over 3 years
Really simple PAM support for Authlogic via the rpam package. Code heavily based on authlogic_ldap and authlogic_openid.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 2.3.3

Runtime

~> 1.0.1
 Project Readme

authlogic_pam

authlogic_pam is a plugin for authlogic that authenticates users using PAM, the Pluggable Authentication Modules framework. This allows you to easily accept the same usernames and passwords from web sites that you do on the web server itself.

Note that this may carry some significant security risks along with it. At the very least, you want to be using SSL encryption when sending the actual passwords for user accounts on your web server over the wire.

Requirements

authlogic_pam requires the following to be installed on your server:

  • The PAM framework (virtually all Linux distributions include this)
  • The rpam gem
  • authlogic, of course

Setup

  1. sudo gem install authlogic rpam authlogic_pam
  2. In your authlogic-using application, add the following line to config/environment.rb (or wherever you are storing gem dependencies):
    • config.gem ‘authlogic_pam’
  3. Ensure that your User model contains a string field called “pam_login”. The basic authlogic “login”, “crypted_password” and “password_salt” fields are unnecessary for PAM (although you may wish to keep them if you have non-PAM users as well).
  4. Create Users for each user you’d like to grant PAM access. Make sure the “pam_login” field is exactly the same as their PAM username.
  5. In your login form views, add fields for “pam_login” and “pam_password”. Also make sure to use references to these fields (rather than “login” and “password”) elsewhere in your views, where appropriate.

Licensing information

Copyright © 2009-2010 Nat Budin

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ‘Software’), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.