From b5d82330d88072021a8f54f9fb8818beee986beb Mon Sep 17 00:00:00 2001 From: Jordan Wright Date: Thu, 17 Sep 2020 20:56:12 -0500 Subject: [PATCH] Changed default host to use HTTPS --- gophish/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gophish/client.py b/gophish/client.py index 944ab68..64d9c9f 100644 --- a/gophish/client.py +++ b/gophish/client.py @@ -3,7 +3,7 @@ from gophish.api import (campaigns, groups, imap, pages, smtp, templates, webhooks) -DEFAULT_URL = 'http://localhost:3333' +DEFAULT_URL = 'https://localhost:3333' class GophishClient(object):