mirror of
https://github.com/gophish/gophish
synced 2024-11-14 16:27:23 +00:00
Added a contact_address entry in config.json to support transparency efforts (ref #1057).
Also added a warning in the case where a contact address isn't provided, and fixed the JSON formatting of the configuration.
This commit is contained in:
parent
da6091e021
commit
64c5e54c64
2 changed files with 22 additions and 13 deletions
27
config.json
27
config.json
|
@ -1,17 +1,18 @@
|
|||
{
|
||||
"admin_server" : {
|
||||
"listen_url" : "127.0.0.1:3333",
|
||||
"use_tls" : true,
|
||||
"cert_path" : "gophish_admin.crt",
|
||||
"key_path" : "gophish_admin.key"
|
||||
"admin_server": {
|
||||
"listen_url": "127.0.0.1:3333",
|
||||
"use_tls": true,
|
||||
"cert_path": "gophish_admin.crt",
|
||||
"key_path": "gophish_admin.key"
|
||||
},
|
||||
"phish_server" : {
|
||||
"listen_url" : "0.0.0.0:80",
|
||||
"use_tls" : false,
|
||||
"cert_path" : "example.crt",
|
||||
"phish_server": {
|
||||
"listen_url": "0.0.0.0:80",
|
||||
"use_tls": false,
|
||||
"cert_path": "example.crt",
|
||||
"key_path": "example.key"
|
||||
},
|
||||
"db_name" : "sqlite3",
|
||||
"db_path" : "gophish.db",
|
||||
"migrations_prefix" : "db/db_"
|
||||
}
|
||||
"db_name": "sqlite3",
|
||||
"db_path": "gophish.db",
|
||||
"migrations_prefix": "db/db_",
|
||||
"contact_address": ""
|
||||
}
|
|
@ -31,6 +31,7 @@ type Config struct {
|
|||
DBPath string `json:"db_path"`
|
||||
MigrationsPath string `json:"migrations_prefix"`
|
||||
TestFlag bool `json:"test_flag"`
|
||||
ContactAddress string `json:"contact_address"`
|
||||
}
|
||||
|
||||
// Conf contains the initialized configuration struct
|
||||
|
@ -52,4 +53,11 @@ func LoadConfig(filepath string) {
|
|||
Conf.MigrationsPath = Conf.MigrationsPath + Conf.DBName
|
||||
// Explicitly set the TestFlag to false to prevent config.json overrides
|
||||
Conf.TestFlag = false
|
||||
|
||||
// Print a warning if a contact address isn't provided
|
||||
// (see: https://github.com/gophish/gophish/issues/1057)
|
||||
if Conf.ContactAddress == "" {
|
||||
log.Warnf("No contact address has been configured.")
|
||||
log.Warnf("Please consider adding a contact_address entry in your config.json")
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue