/usr/share/perl5/Net/SMTP_auth.pm is in libnet-smtpauth-perl 0.08-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 | # Net::SMTP_auth.pm
#
# alex pleiner 2001, 2003, 2006 zeitform Internet Dienste
# thanks to Graham Barr <gbarr@pobox.com> for Net::SMTP
# This program is free software; you can redistribute it and/or
# modify it under the same terms as Perl itself.
# Net::SMTP_auth is a small extension to G. Barr's Net::SMTP
# to authenticate to an SMTP server using one of the AUTH
# methods provided by Authen::SASL and Authen::NTLM (see RFC2554 for details).
# This module can be expanded and is a very first implementation.
package Net::SMTP_auth;
require 5.001;
use strict;
use vars qw($VERSION @ISA);
use Socket 1.3;
use Carp;
use IO::Socket;
use Net::Cmd;
use Net::Config;
use Net::SMTP;
use MIME::Base64;
use Digest::HMAC_MD5 qw(hmac_md5_hex);
use Authen::SASL;
$VERSION = "0.08";
@ISA = qw(Net::SMTP);
# all other method taken from Net::SMTP
sub auth_types {
@_ == 1 or croak 'usage: $pop3->auth_types()';
my $me = shift;
if (exists ${*$me}{'net_smtp_esmtp'}) {
my $esmtp = ${*$me}{'net_smtp_esmtp'};
if(exists $esmtp->{AUTH}) {
return wantarray ? split(/\s+/, $esmtp->{AUTH}) : $esmtp->{AUTH};
}
}
return;
}
sub auth {
@_ == 4 or croak 'usage: $smtp->auth( AUTH, USER, PASS )';
my ($me, $auth, $user, $pass) = @_;
# code by James Fryman
if ($auth eq "NTLM") {
eval "require Authen::NTLM"
or croak 'NTLM not supported. Install Authen::NTLM.';
my $host = ${*$me}{'net_smtp_host'};
Authen::NTLM::ntlm_user($user); ## Init NTLM Variables
Authen::NTLM::ntlm_password($pass);
my $ntlm_chal = Authen::NTLM::ntlm();
$me->_AUTH("$auth $ntlm_chal");
if ( $me->code() == 334 ) {
my $chal = $me->message();
my $ntlm_chal_resp = Authen::NTLM::ntlm($chal);
$me->command($ntlm_chal_resp)->response();
Authen::NTLM::ntlm_reset();
return 1 if $me->code() == 235;
return if $me->code() == 535;
}
return;
}
my $sasl = Authen::SASL->new(
mechanism => uc($auth),
callback => {
authname => $user,
user => $user,
pass => $pass,
},
);
return unless $sasl;
my $host = ${*$me}{'net_smtp_host'};
my $conn = $sasl->client_new("smtp", $host);#, "noplaintext noanonymous");
$me->_AUTH($auth) or return;
if ( $me->code() == 334 ) {
if (my $initial = $conn->client_start)
{
$me->command(encode_base64($initial, ''))->response();
return 1 if $me->code() == 235;
}
while ( $me->code() == 334 )
{
my $message = decode_base64($me->message());
my $return = $conn->client_step($message);
$me->command(encode_base64($return, ''))->response();
return 1 if $me->code() == 235;
return if $me->code() == 535;
}
}
}
sub _AUTH { shift->command("AUTH", @_)->response() == CMD_MORE }
1;
__END__
=head1 NAME
Net::SMTP_auth - Simple Mail Transfer Protocol Client with AUTHentication
=head1 SYNOPSIS
use Net::SMTP_auth;
# Constructors
$smtp = Net::SMTP_auth->new('mailhost');
$smtp = Net::SMTP_auth->new('mailhost', Timeout => 60);
=head1 DESCRIPTION
This module implements a client interface to the SMTP and ESMTP
protocol AUTH service extension, enabling a perl5 application to talk
to and authenticate against SMTP servers. This documentation assumes
that you are familiar with the concepts of the SMTP protocol described
in RFC821 and with the AUTH service extension described in RFC2554.
A new Net::SMTP_auth object must be created with the I<new> method. Once
this has been done, all SMTP commands are accessed through this object.
The Net::SMTP_auth class is a subclass of Net::SMTP, which itself is
a subclass of Net::Cmd and IO::Socket::INET.
=head1 EXAMPLES
This example authenticates via CRAM-MD5 and sends a small message to
the postmaster at the SMTP server known as mailhost:
#!/usr/bin/perl -w
use Net::SMTP_auth;
$smtp = Net::SMTP_auth->new('mailhost');
$smtp->auth('CRAM-MD5', 'user', 'password');
$smtp->mail($ENV{USER});
$smtp->to('postmaster');
$smtp->data();
$smtp->datasend("To: postmaster\n");
$smtp->datasend("\n");
$smtp->datasend("A simple test message\n");
$smtp->dataend();
$smtp->quit;
=head1 CONSTRUCTOR
=over 4
=item new Net::SMTP_auth [ HOST, ] [ OPTIONS ]
This is the constructor for a new Net::SMTP_auth object. It is
taken from Net::SMTP as all other methods (except I<auth> and
I<auth_types>) are, too.
=back
=head1 METHODS
Unless otherwise stated all methods return either a I<true> or I<false>
value, with I<true> meaning that the operation was a success. When a method
states that it returns a value, failure will be returned as I<undef> or an
empty list.
=over 4
=item auth_types ()
Returns the AUTH methods supported by the server as an array or in a
space separated string. This string is exacly the line given by the SMTP
server after the C<EHLO> command containing the keyword C<AUTH>.
=item auth ( AUTH, USER, PASSWORD )
Authenticates the user C<USER> via the authentication method C<AUTH>
and the password C<PASSWORD>. Returns I<true> if successful and I<false>
if the authentication failed. Remember that the connection is not closed
if the authentication fails. You may issue a different authentication
attempt. If you once are successfully authenticated, you cannot send
the C<AUTH> command again.
The C<AUTH> method C<NTLM> is supported via Authen::NTLM (thanks to James Fryman).
=back
=head1 SEE ALSO
L<Net::SMTP> and L<Net::Cmd>
=head1 AUTHOR
Alex Pleiner <alex@zeitform.de>, zeitform Internet Dienste.
Thanks to Graham Barr <gbarr@pobox.com> for Net::SMTP.
NTLM authentication code provided by James Fryman <jfryman@gmail.com>
=head1 COPYRIGHT
Copyright (c) 2001, 2003, 2006 zeitform Internet Dienste. All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
|