From ce4ad0575bbfc78cbf3ad8a7aadc695dd6159e35 Mon Sep 17 00:00:00 2001 From: Benjamin Mako Hill Date: Thu, 19 Nov 2020 17:39:48 -0800 Subject: [PATCH 1/1] disable IPv6 (it doesn't seem to work) --- gp-saml-gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gp-saml-gui.py b/gp-saml-gui.py index d6f8f15..b702d0c 100755 --- a/gp-saml-gui.py +++ b/gp-saml-gui.py @@ -193,7 +193,7 @@ if __name__ == "__main__": sam, uri, html = 'URI', args.server, None else: endpoint = 'https://{}/{}'.format(args.server, if2prelogin[args.interface]) - data = {'tmp':'tmp', 'kerberos-support':'yes', 'ipv6-support':'yes', 'clientVer':4100, 'clientos':args.clientos, **args.extra} + data = {'tmp':'tmp', 'kerberos-support':'yes', 'ipv6-support':'no', 'clientVer':4100, 'clientos':args.clientos, **args.extra} if args.verbose: print("Looking for SAML auth tags in response to %s..." % endpoint, file=stderr) try: -- 2.39.5