Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: Windows NT Authentication

by amphiplex (Monk)
on Jul 04, 2002 at 06:19 UTC ( [id://179398]=note: print w/replies, xml ) Need Help??


in reply to Windows NT Authentication

I have done this once on a un*x host, using Authen::Smb.
There are propably better ways if you are on a NT host, but anyway, some code:
use strict; use Authen::Smb qw(NTV_NO_ERROR); my $pdc = "primary"; my $bdc = undef; my $nt_domain = "DOMAIN"; .... .... sub password_ok { my ($username, $password) = @_; my $r = {}; my $authResult = Authen::Smb::authen ($username,$password, $pdc, $bd +c, $nt_domain); if ($authResult == $Smb::Authen::NTV_NO_ERROR) { if ($r = $mondb->get_user_data($username)) { return $r; } else { return {error=>"user not authorized"}; } } else { $l->log("E", "User [$username] not authenticated with error level +$authResult: $smb_errtext{$authResult}"); return {error=>"user authentification error"}; } return undef; }
---- kurt

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://179398]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (11)
As of 2024-03-28 09:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found