in reply to Special Characters in Passwords
#!/usr/bin/perl -w use strict; use CGI; my $query = CGI::new(); my $username = $query->param('username'); my $password = $query->param('password'); my $authResult = Authen::Smb::authen($username, $password, 'pdc', 'bdc', 'domain'); return(1) if !$authResult; return(0);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Special Characters in Passwords
by radiantmatrix (Parson) on May 17, 2005 at 14:36 UTC | |
|
Re^2: Special Characters in Passwords
by ikegami (Patriarch) on May 17, 2005 at 15:19 UTC | |
|
Re^2: Special Characters in Passwords
by jhourcle (Prior) on May 17, 2005 at 15:23 UTC |