From 2583592ab3db262e39a33320e7d2abf453e73b80 Mon Sep 17 00:00:00 2001 From: SuperMarioDaBom Date: Tue, 18 Jul 2023 11:33:18 -0700 Subject: [PATCH] Enable insecure login --- nex/register_common_authentication_server_protocols.go | 1 + 1 file changed, 1 insertion(+) diff --git a/nex/register_common_authentication_server_protocols.go b/nex/register_common_authentication_server_protocols.go index 3420806..a9c3d85 100644 --- a/nex/register_common_authentication_server_protocols.go +++ b/nex/register_common_authentication_server_protocols.go @@ -23,6 +23,7 @@ func registerCommonAuthenticationServerProtocols() { ticketGrantingProtocol.SetSecureStationURL(secureStationURL) ticketGrantingProtocol.SetBuildName(serverBuildString) + ticketGrantingProtocol.EnableInsecureLogin() globals.AuthenticationServer.SetPasswordFromPIDFunction(globals.PasswordFromPID) }