summaryrefslogtreecommitdiff
path: root/config.h.in
diff options
context:
space:
mode:
authorSimon Wilkinson <simon@sxw.org.uk>2014-02-09 16:09:48 +0000
committerColin Watson <cjwatson@debian.org>2018-04-03 08:20:56 +0100
commitcb427e23bf78d65407c78d868c4ef525dbfaa68f (patch)
tree595fd02db7d37d885ce1d309f50c6b9698ed4243 /config.h.in
parented6ae9c1a014a08ff5db3d768f01f2e427eeb476 (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: 2017-10-04 Patch-Name: gssapi.patch
Diffstat (limited to 'config.h.in')
-rw-r--r--config.h.in6
1 files changed, 6 insertions, 0 deletions
diff --git a/config.h.in b/config.h.in
index 572087407..4c9545c78 100644
--- a/config.h.in
+++ b/config.h.in
@@ -1746,6 +1746,9 @@
1746/* Use btmp to log bad logins */ 1746/* Use btmp to log bad logins */
1747#undef USE_BTMP 1747#undef USE_BTMP
1748 1748
1749/* platform uses an in-memory credentials cache */
1750#undef USE_CCAPI
1751
1749/* Use libedit for sftp */ 1752/* Use libedit for sftp */
1750#undef USE_LIBEDIT 1753#undef USE_LIBEDIT
1751 1754
@@ -1761,6 +1764,9 @@
1761/* Use PIPES instead of a socketpair() */ 1764/* Use PIPES instead of a socketpair() */
1762#undef USE_PIPES 1765#undef USE_PIPES
1763 1766
1767/* platform has the Security Authorization Session API */
1768#undef USE_SECURITY_SESSION_API
1769
1764/* Define if you have Solaris privileges */ 1770/* Define if you have Solaris privileges */
1765#undef USE_SOLARIS_PRIVS 1771#undef USE_SOLARIS_PRIVS
1766 1772