# File lib/authlogic/session/brute_force_protection.rb, line 59
        def being_brute_force_protected?
          exceeded_failed_logins_limit? && (failed_login_ban_for <= 0 ||
            (attempted_record.respond_to?(:updated_at) && attempted_record.updated_at >= failed_login_ban_for.seconds.ago))
        end