Authen::SASL::Perl(3) | User Contributed Perl Documentation | Authen::SASL::Perl(3) |
Authen::SASL::Perl -- Perl implementation of the SASL Authentication framework
use Authen::SASL qw(Perl); $sasl = Authen::SASL->new( mechanism => 'CRAM-MD5 PLAIN ANONYMOUS', callback => { user => $user, pass => \&fetch_password } );
Authen::SASL::Perl is the pure Perl implementation of SASL mechanisms in the Authen::SASL framework.
At the time of this writing it provides the client part implementation for the following SASL mechanisms:
Since it does no authentication it does not need to send any confidential information such as passwords in plain text over the network.
Since it is a challenge-response authentication mechanism no passwords are transferred in clear-text over the wire.
Due to the simplicity of the protocol CRAM-MD5 is susceptible to replay and dictionary attacks, so DIGEST-MD5 should be used in preferrence.
Like CRAM-MD5 it is a challenge-response authentication method that does not send plain text passwords over the network.
Compared to CRAM-MD5, DIGEST-MD5 prevents chosen plaintext attacks, and permits the use of third party authentication servers, so that it is recommended to use DIGEST-MD5 instead of CRAM-MD5 when possible.
Although GSSAPI is a general mechanism for authentication it is almost exlusively used for Kerberos 5.
It does does not provide a security layer and sends the credentials in clear over the wire. Thus this mechanism should not be used without adequate security protection.
Like LOGIN it sends the credentials in clear over the network and should not be used without sufficient security protection.
As for server support, only PLAIN, LOGIN and DIGEST-MD5 are supported at the time of this writing.
"server_new" OPTIONS is a hashref that is only relevant for DIGEST-MD5 for now and it supports the following options:
which configures how the security layers are negotiated with the client (or rather imposed to the client).
Authen::SASL, Authen::SASL::Perl::ANONYMOUS, Authen::SASL::Perl::CRAM_MD5, Authen::SASL::Perl::DIGEST_MD5, Authen::SASL::Perl::EXTERNAL, Authen::SASL::Perl::GSSAPI, Authen::SASL::Perl::LOGIN, Authen::SASL::Perl::PLAIN
Peter Marschall <peter@adpm.de>
Please report any bugs, or post any suggestions, to the perl-ldap mailing list <perl-ldap@perl.org>
Copyright (c) 2004-2006 Peter Marschall. All rights reserved. This document is distributed, and may be redistributed, under the same terms as Perl itself.
2010-03-11 | perl v5.34.0 |