Authlogic LDAP: Communication Encryption

I have a rails application with authlogic and LDAP, but my problem is that I can see all user passwords in the log file, is there anything that can be fixed to encrypt these passwords. For ldap, I use: encryption simple_TLS

thanks for the help

+3
source share
1 answer

So I do this using authlogic and net-ldap :

config / ldap.yml

    production:
      host: localhost
      port: 636
      base: ou=people,dc=mydomain
      admin_user: cn=admin,dc=mydomain
      admin_password: password
      ssl: true

application / models / ldap_connect.rb

    class LdapConnect

      attr_reader :ldap

      def initialize(params = {})
        ldap_config = YAML.load_file("#{RAILS_ROOT}/config/ldap.yml")[RAILS_ENV]
        ldap_options = params
        ldap_options[:encryption] = :simple_tls if ldap_config["ssl"]

        @ldap = Net::LDAP.new(ldap_options)
        @ldap.host = ldap_config["host"]
        @ldap.port = ldap_config["port"]
        @ldap.base = ldap_config["base"]
        @ldap.auth ldap_config["admin_user"], ldap_config["admin_password"] if params[:admin] 
      end

    end

application / models / user_session.rb

    class UserSession < Authlogic::Session::Base

      verify_password_method :valid_ldap_credentials?

    end

application / models / user.rb

class User < ActiveRecord::Base

  acts_as_authentic do |c|
    c.validate_password_field = false
    c.logged_in_timeout = 30.minutes
  end

  def dn
    "cn=#{self.email},ou=people,dc=mydomain"
  end

  def valid_ldap_credentials?(password_plaintext)
    ldap = LdapConnect.new.ldap
    ldap.auth self.dn, password_plaintext
    ldap.bind # will return false if authentication is NOT successful
  end

end
+12
source

Source: https://habr.com/ru/post/1742099/


All Articles