search for: locked_passwd_str

Displaying 7 results from an estimated 7 matches for "locked_passwd_str".

2005 Oct 04
3
[patch] LOCKED_PASSWD_STRING for FreeBSD
Hi, I dare to send you this very small patch that defines LOCKED_PASSWD_STRING for the FreeBSD operating system. The manpage had been unclear about this for a long time, up to 5.x days. Since 6.x, it has been made clearer, and thanks to Ceri Davies who highlighted this feature in OpenSSH, I made this patch. I hope this will reach OpenSSH source tree. This is not a big...
2003 Sep 25
2
unexpected change in "locked account" behaviour
...SE_PAM is not even #defined (e.g., UsePam cannot be specified in sshd_config). The code which is being affected by the change is in auth.c: | /* check for locked account */ | if (!options.use_pam && passwd && *passwd) { | int locked = 0; | | #ifdef LOCKED_PASSWD_STRING | if (strcmp(passwd, LOCKED_PASSWD_STRING) == 0) | locked = 1; | #endif [...] I think the current behaviour is more correct than the previous behaviour, so I haven't filed a bug. I haven't checked whether there are other places in the code where...
2004 Dec 02
1
Bug Report
To Whom It May Concern: I am running OpenSSH_3.7.1p2 on an HPUX 10.10 operating system. I recently converted my OS to a trusted system, which, among other things, shadows passwords in the /etc/passwd file. In order to shadow the user passwords, a '*' character is used. Unfortunately, the documentation for sshd states that, for HP operating systems, a '*' character in the
2015 Feb 25
2
Current 6.8 git build issues on HP-UX
On Wed, Feb 25, 2015 at 11:50 AM, Kevin Brott <kevin.brott at gmail.com> wrote: > > Interestingly enough if I re-run 'make tests' using HP-UX cc it continues > into the tests because it actuall did build regress netcat! (not executable > - but it's there) ... > > run test connect.sh ... > ssh connect with protocol 1 failed > ssh connect with protocol 2
2004 Feb 27
3
Change request For OpenSSH 3.8p1
...ould only matter if the flag was set). diff -r -c old/configure.ac new/configure.ac *** old/configure.ac Mon Feb 23 22:47:04 2004 --- new/configure.ac Thu Feb 26 17:23:55 2004 *************** *** 273,278 **** --- 273,285 ---- AC_DEFINE(LOGIN_NEEDS_TERM) AC_DEFINE(PAM_TTY_KLUDGE) AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*") + # Check for existence of POSIX threads. + AC_CHECK_HEADER(pthread.h, [ + AC_CHECK_LIB(pthread, pthread_create, [ + CPPFLAGS="$CPPFLAGS -DUSE_POSIX_THREADS" + LIBS="-lpthread $LIBS" + ]) + ]) # Pushing STREAMS modules will cause sshd to ac...
2003 Sep 17
5
problems with 3.7.1p1 on IRIX (again)
Hi, I've seen a few messages re. problems with 3.7.1p1 on IRIX 6.5... I'm using 6.5.19 and having no trouble compiling, installing and starting, but sshd just closes the connection with no explanation. debug/verbose modes don't seem to give any clues. Darren Tucker suggested defining BROKEN_GETADDRINFO in config.h, but I find that compilation then fails (assuming I've implemented
2005 Sep 19
1
ssh hangs or gives Segmentation fault
...OPENSSL_PRNG_ONLY 1 /* #undef WITH_ABBREV_NO_TTY */ /* #undef SUPERUSER_PATH */ /* #undef PRIVSEP_PATH */ /* #undef DISABLE_FD_PASSING */ #define HAVE_STRICT_MKSTEMP 1 #define HAVE_NANOSLEEP 1 /* #undef SSHD_ACQUIRES_CTTY */ /* #undef BROKEN_CMSG_TYPE */ #define LINK_OPNOTSUPP_ERRNO EPERM /* #undef LOCKED_PASSWD_STRING */ #define LOCKED_PASSWD_PREFIX "!" /* #undef LOCKED_PASSWD_SUBSTR */ /* #undef HAVE_GETRRSETBYNAME */ #define HAVE_HEADER_AD 1 /* #undef BIND_8_COMPAT */ #define HAVE_PROC_PID 1 /* #undef AIX_GETNAMEINFO_HACK */ /* #undef BROKEN_GETGROUPS */ /* #undef BROKEN_LIBIAF */ /* #undef BROKEN...