search for: kivinen

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

Did you mean: kivien
1998 Oct 07
1
Re: sshd and PAM [summary]
-----BEGIN PGP SIGNED MESSAGE----- Hi, I''ve got several replies, thank you for them. Let me summarize: o Many people say there is a PAMified version of ssh available at ftp://ftp.replay.com/pub/crypto/redhat/SRPMS (the source) ftp://ftp.replay.com/pub/crypto/redhat/i386 (Intel binaries) (there are analogous paths for the other architectures). The packages are made by Jan
2002 Jun 03
3
[PATCH] forwarding environment vars ala RFC2026
I have coded a patch witch allows to forward environment variables from the client to the server. To specify forwarding in your ssh client add the option ForwardEnv varname # forward varname with value # as in environment of the # ssh client. If variable is # not defined in the environment # of the ssh client nothing will # be forwarded. ForwardEnv varname=value # forward
1998 Oct 29
0
Digest.
...orig Tue Oct 6 18:15:32 1998 +++ sshd.c Tue Oct 6 18:14:31 1998 @@ -89,6 +89,9 @@ * feature. Added {Allow,Deny}Users feature from Steve Kann * <stevek@SteveK.COM>. * + * Revision 1.42a 1997/06/06 18:40:00 jonchen + * Added support for PAM + * * Revision 1.42 1997/04/23 00:05:35 kivinen * Added ifdefs around password expiration and inactivity checks, * because some systems dont have sp_expire and sp_inact fields. @@ -525,6 +528,14 @@ char *ticket = "none\0"; #endif /* KERBEROS */ +#ifdef HAVE_PAM +#include <security/pam_appl.h> +struct pam_handle_t *pamh=...