search for: pass_max

Displaying 3 results from an estimated 3 matches for "pass_max".

Did you mean: abs_max
2003 May 29
2
Interactive Rsync Authentication Problem
...e command line: RSYNC_PASSWORD=the_Password rsync -r /tmp/test test_user@test_server::test_user/topdir/subdir However, if I do not specify the password on the command line and am prompted interactively, it always fails. After some investigation I find that Solaris getpass() returns a maximum of PASS_MAX bytes which on our systems is set to 8. The comment in authenticate.c is: cyeoh says that getpass is deprecated, because it may return a truncated password on some systems, and it is not in the LSB. Does this issue deserve a code fix/workaround? Andy Klein
2002 May 31
3
About password length in solaris 8 and samba 2.2.4
Hello You wrote as below in samba-list: Message: 19 Date: Tue, 28 May 2002 22:13:35 -0500 (CDT) From: "Gerald (Jerry) Carter" <jerry@samba.org> To: Carl Vincent <c.a.vincent@ncl.ac.uk> Cc: samba@lists.samba.org Subject: Re: [Samba] Password Length Conundrum On Fri, 24 May 2002, Carl Vincent wrote: > I've jsut installed Samba-2.2.4, from source on a Solaris 2.6 box.
2007 Mar 27
0
Joining ADS Domain from Solaris9
To everybody who tries do join an ADS Domain from a Samba 3.0.25pre2 server on Solaris 9: The Solaris9 getpass(3C) takes passwords up to PASS_MAX length, which is only 8. That means if you try something like # net ads join -U admin@MY.REALM and the admin password is more than 8 characters in length, you'll get "Preauthentication failed". The solution to this is to use getpassphrase(3C), which according to the manpage "r...