search for: methoddata

Displaying 4 results from an estimated 4 matches for "methoddata".

2003 Oct 28
2
Privilege separation
.../auth2-gss.c openssh-3.7.1p2/auth2-gss.c --- openssh-3.7.1p2.privsep/auth2-gss.c Tue Sep 2 16:59:01 2003 +++ openssh-3.7.1p2/auth2-gss.c Sat Oct 4 23:17:47 2003 @@ -130,7 +130,11 @@ OM_uint32 maj_status, min_status; u_int len; +#ifndef DISABLE_PRIVSEP if (authctxt == NULL || (authctxt->methoddata == NULL && !use_privsep)) +#else + if (authctxt == NULL || authctxt->methoddata == NULL) +#endif /* DISABLE_PRIVSEP */ fatal("No authentication or GSSAPI context"); gssctxt = authctxt->methoddata; @@ -179,7 +183,11 @@ OM_uint32 maj_status; u_int len; +#ifndef DI...
2003 Aug 10
9
updated gssapi diff
...file: /home/hack/jakob/mycvs/sshgss/auth.h,v retrieving revision 1.1.1.2 retrieving revision 1.3 diff -u -r1.1.1.2 -r1.3 --- auth.h 10 Aug 2003 14:06:43 -0000 1.1.1.2 +++ auth.h 10 Aug 2003 14:25:01 -0000 1.3 @@ -67,6 +67,7 @@ krb5_principal krb5_user; char *krb5_ticket_file; #endif + void *methoddata; }; /* * Every authentication method has to handle authentication requests for Index: auth2-gss.c =================================================================== RCS file: auth2-gss.c diff -N auth2-gss.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ auth2-gss.c 18 May 2003 16:51:43 -0000 1.13...
2018 Oct 09
97
[Bug 2915] New: Tracking bug for 8.0 release
https://bugzilla.mindrot.org/show_bug.cgi?id=2915 Bug ID: 2915 Summary: Tracking bug for 8.0 release Product: Portable OpenSSH Version: -current Hardware: Other OS: All Status: NEW Severity: enhancement Priority: P5 Component: Miscellaneous Assignee: unassigned-bugs at
2001 Aug 15
0
[ossh patch] principal name/patterns in authorized_keys2
...uot;, " ssh2"); dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL); userauth_reply(authctxt, 0); } @@ -563,6 +584,8 @@ OM_uint32 maj_status, min_status; int authenticated; gss_buffer_desc gssbuf,msg_tok; + char *info; + int info_len; if (authctxt == NULL || authctxt->methoddata == NULL) fatal("No authentication or GSSAPI context"); @@ -598,8 +621,24 @@ packet_write_wait(); } - auth_log(authctxt, authenticated, "gssapi", " ssh2"); + switch (gssapi_client_type) { +#ifdef KRB5 + case GSS_KERBEROS: + info_len = strlen(gss...