Browse Source

GSSAPI key exchange authentication is off by default as it caused failures when old version of MIT Kerberos was installed on the machine

https://winscp.net/tracker/1874

Source commit: 79d6c736dcb9e7865435fe2d39f5a0456fa06714
Martin Prikryl 5 years ago
parent
commit
dceed175a8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      source/core/SessionData.cpp

+ 1 - 1
source/core/SessionData.cpp

@@ -133,7 +133,7 @@ void __fastcall TSessionData::DefaultSettings()
   AuthKI = true;
   AuthKIPassword = true;
   AuthGSSAPI = true;
-  AuthGSSAPIKEX = true;
+  AuthGSSAPIKEX = false;
   GSSAPIFwdTGT = false;
   LogicalHostName = L"";
   ChangeUsername = false;