Created
May 28, 2020 16:17
-
-
Save blurbdust/3b29a4c3c692e47c4d0719e429c26345 to your computer and use it in GitHub Desktop.
Sample gophish config for use with mail-in-a-box
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"admin_server": { | |
"listen_url": "0.0.0.0:3333", | |
"use_tls": true, | |
"cert_path": "/home/user-data/ssl/ssl_certificate.pem", | |
"key_path": "/home/user-data/ssl/ssl_private_key.pem" | |
}, | |
"phish_server": { | |
"listen_url": "127.0.0.1:6969", | |
"use_tls": false, | |
"cert_path": "/home/user-data/ssl/ssl_certificate.pem", | |
"key_path": "/home/user-data/ssl/ssl_private_key.pem" | |
}, | |
"db_name": "sqlite3", | |
"db_path": "gophish.db", | |
"migrations_prefix": "db/db_", | |
"contact_address": "", | |
"logging": { | |
"filename": "", | |
"level": "" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment