search for: ssh_cmsg_have_afs_token

Displaying 6 results from an estimated 6 matches for "ssh_cmsg_have_afs_token".

2001 Oct 02
2
AFS and tokenforwarding
...ot;); - send_afs_tokens(); - } -#endif /* AFS */ return; /* need statement after label */ } --- openssh-2.9.9p2.orig/auth1.c Wed Jul 4 06:21:16 2001 +++ openssh-2.9.9p2/auth1.c Fri Sep 28 08:53:35 2001 @@ -118,6 +118,22 @@ /* Process the packet. */ switch (type) { +#ifdef AFS + case SSH_CMSG_HAVE_AFS_TOKEN: + if (!options.afs_token_passing || !k_hasafs()) { + verbose("AFS token passing disabled."); + break; + } else { + /* Accept AFS token. */ + char *token_string = packet_get_string(&dlen); + packet_integrity_check(plen, 4 + dlen, type); + if (!auth_afs_token(auth...
2002 Jan 23
1
Fix AFS and Kerberos interaction
...**client); --- auth1.c 2002/01/23 12:15:49 1.1 +++ auth1.c 2002/01/23 12:17:26 @@ -162,11 +162,11 @@ case SSH_CMSG_HAVE_KERBEROS_TGT: packet_send_debug("Kerberos TGT passing disabled before authentication."); break; -#ifdef AFS +#if defined(AFS) && defined(KRB4) case SSH_CMSG_HAVE_AFS_TOKEN: packet_send_debug("AFS token passing disabled before authentication."); break; -#endif /* AFS */ +#endif /* AFS && KRB4 */ #endif /* AFS || KRB5 */ case SSH_CMSG_AUTH_RHOSTS: --- radix.c 2002/01/23 10:13:32 1.1 +++ radix.c 2002/01/23 10:27:36 @@ -27,7 +27,7 @@...
2001 Nov 20
3
problem with AFS token forwarding
...erver can use these tokens and can access files in the AFS home directory of the user on the server. In the latest OpenSSH releases the token is only forwarded AFTER a successful user authentication. That means that the older servers are in function do_authenticated1() when the message of type 65 (SSH_CMSG_HAVE_AFS_TOKEN) arrives. This message is no longer accepted at this point. Therefore the error message Unknown packet type received after authentication: 65 is to be found in the server logs. It would be very helpful for us if the next OpenSSH release would solve this interoperability problem because we stil...
2001 Nov 12
4
Please test -current
Could people please test -current? We will be making a release fairly soon. -d -- | By convention there is color, \\ Damien Miller <djm at mindrot.org> | By convention sweetness, By convention bitterness, \\ www.mindrot.org | But in reality there are atoms and space - Democritus (c. 400 BCE)
2001 Oct 12
17
Please test snapshots for 3.0 release
Could everyone please test the latest snapshots as we will be making a new release soon. If you have any patches you would like us to consider, please resend them to the list ASAP. -d -- | Damien Miller <djm at mindrot.org> \ ``E-mail attachments are the poor man's | http://www.mindrot.org / distributed filesystem'' - Dan Geer
1999 Dec 29
1
Patch to use Dante socks library
...brary. */ +#undef HAVE_DANTE + /* Define if your ssl headers are included with #include <ssl/header.h> */ #undef HAVE_SSL --- ssh.h.orig Tue Dec 21 08:12:39 1999 +++ ssh.h Wed Dec 29 10:12:31 1999 @@ -267,6 +267,53 @@ #define SSH_CMSG_HAVE_KERBEROS_TGT 44 /* credentials (s) */ #define SSH_CMSG_HAVE_AFS_TOKEN 65 /* token (s) */ +/* + * The following defines map the normal socket operations to SOCKSified + * versions coming from the Dante package. + */ + +#ifdef HAVE_DANTE +#define accept Raccept +#define bind Rbind +#define bindresvport Rbindresvport +#define connect Rconnect +#define gethostbyname...