search for: passreq

Displaying 2 results from an estimated 2 matches for "passreq".

Did you mean: passrep
2001 Mar 01
1
Bug report against openssh-2.3.0p1
...08528-06 sun4u sparc SUNW,Ultra-5_10 OpenSSH was configured with the following options: > ./configure --prefix=/jackdaw --with-default-path=/jackdaw/bin:/usr/bin On this OS, with this configuration, it uses PAM. I have a passwordless account. and passwordless login is permitted, both by 'PASSREQ=NO' in /etc/default/login and 'PermitEmptyPasswords yes' in sshd_config. The symptom of the bug is that interactive ssh to the passwordless account fails. The sshd session process takes a SIGSEGV just after the debugging message 'PAM setting tty to ...'. I think that the SIGSEG...
2001 Mar 29
3
Patches for OpenSSH 2.5.2p2: evaluate /etc/default/login, makefiles manpages
...ironment_value(default_login_env, "ULIMIT"); + if (value != NULL && atoi(value) > 0) + ulimit(UL_SETFSIZE, atoi(value)); +#endif /* HAVE_ULIMIT_H */ + + /* + * The following flags from file ETC_DEFAULT_LOGIN_FILENAME + * are not processed by this procedure: + * CONSOLE + * PASSREQ + * TIMEOUT + * SYSLOG + * SLEEPTIME + * RETRIES + * SYSLOG_FAILED_LOGINS + */ + + /* Clean up: Free the temporary environment. */ + { + u_int i; + for (i = 0; default_login_env[i]; i++) + xfree(default_login_env[i]); + } + xfree(default_login_env); +} + #if defined(HAVE_GETUSERATTR) /*...