Displaying 1 result from an estimated 1 matches for "passwordhashreplac".
Did you mean:
passwordhashreplaced
2005 Jun 11
1
strange getpwnam issue
...pam module (pam_dhkeys) fail
all pam stack when try to obtain userinfo about windows domain users.
small investigate show that getpwnam() result with windows user as
parameter different from unix user. for example:
#perl -e "print getpwnam('unixuser');" return
"unixuser:passwordHASHreplaced:vv:vv:/home/unixuser:/bin/sh"
#perl -e "print getpwnam('winduser');" return
"vlad:x:vv:vv:/home/winduser:/bin/sh"
so, structure about windows user do not contain password hash, that
possibly needed by pam_dhkeys module. without it, it return user not
found mes...