
fmc_alfredo
New User
Jan 23, 2009, 2:30 AM
Post #1 of 1
(4576 views)
|
Win32::AuthenticateUser
|
Can't Post
|
|
Hi, sorry for my bad english, I have a problem with user authentication on Win NT domain using Win32::AuthenticateUser per module. If the password contain the special character £ the authentication fail: Ex. $password = '£123abc' With a normal password Ex. $password = '123abc' the authentication work fine. help me. The script is:
use Win32::AuthenticateUser; $user = 'TESTUSER'; $pwd = '£badpassword'; $dominio = 'NTDOMAIN'; $ff = AuthenticateUser($dominio, $user, $pwd); print "$ff\n";
|