Connecting to Gophish
Changing the Host
from gophish import Gophish
api = Gophish(API_KEY, host='http://admin_server')Ignoring SSL Certificates
from gophish import Gophish
api = Gophish(API_KEY, host='https://admin_server', verify=False)Last updated