Beefy Boxes and Bandwidth Generously Provided by pair Networks DiBona
P is for Practical
 
PerlMonks  

Re: Windows NT Authentication

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

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


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
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.