diff options
author | Simon Wilkinson <simon@sxw.org.uk> | 2014-02-09 16:09:48 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2015-11-29 17:36:18 +0000 |
commit | 09c4d9b7d41ab3c9973f07e0109e931f57c59c43 (patch) | |
tree | 238d7d86bfd8c0080d01fb55cef2ad37df46bd2e /readconf.h | |
parent | 651211fd4a199b299540c00c54a46e27fadb04be (diff) |
GSSAPI key exchange support
This patch has been rejected upstream: "None of the OpenSSH developers are
in favour of adding this, and this situation has not changed for several
years. This is not a slight on Simon's patch, which is of fine quality, but
just that a) we don't trust GSSAPI implementations that much and b) we don't
like adding new KEX since they are pre-auth attack surface. This one is
particularly scary, since it requires hooks out to typically root-owned
system resources."
However, quite a lot of people rely on this in Debian, and it's better to
have it merged into the main openssh package rather than having separate
-krb5 packages (as we used to have). It seems to have a generally good
security history.
Bug: https://bugzilla.mindrot.org/show_bug.cgi?id=1242
Last-Updated: 2015-11-29
Patch-Name: gssapi.patch
Diffstat (limited to 'readconf.h')
-rw-r--r-- | readconf.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/readconf.h b/readconf.h index bb2d55283..e7e80c344 100644 --- a/readconf.h +++ b/readconf.h | |||
@@ -45,7 +45,12 @@ typedef struct { | |||
45 | int challenge_response_authentication; | 45 | int challenge_response_authentication; |
46 | /* Try S/Key or TIS, authentication. */ | 46 | /* Try S/Key or TIS, authentication. */ |
47 | int gss_authentication; /* Try GSS authentication */ | 47 | int gss_authentication; /* Try GSS authentication */ |
48 | int gss_keyex; /* Try GSS key exchange */ | ||
48 | int gss_deleg_creds; /* Delegate GSS credentials */ | 49 | int gss_deleg_creds; /* Delegate GSS credentials */ |
50 | int gss_trust_dns; /* Trust DNS for GSS canonicalization */ | ||
51 | int gss_renewal_rekey; /* Credential renewal forces rekey */ | ||
52 | char *gss_client_identity; /* Principal to initiate GSSAPI with */ | ||
53 | char *gss_server_identity; /* GSSAPI target principal */ | ||
49 | int password_authentication; /* Try password | 54 | int password_authentication; /* Try password |
50 | * authentication. */ | 55 | * authentication. */ |
51 | int kbd_interactive_authentication; /* Try keyboard-interactive auth. */ | 56 | int kbd_interactive_authentication; /* Try keyboard-interactive auth. */ |