0799bfbae8
Sanitized version of red team infrastructure automation platform. Operational content (implant pipelines, lures, credential capture) replaced with documented stubs. Architecture and infrastructure automation code intact.
23 lines
835 B
Django/Jinja
23 lines
835 B
Django/Jinja
{
|
|
"admin_server": {
|
|
"listen_url": "0.0.0.0:{{ gophish_admin_port }}",
|
|
"use_tls": true,
|
|
"cert_path": "/etc/letsencrypt/live/{{ domain }}/fullchain.pem",
|
|
"key_path": "/etc/letsencrypt/live/{{ domain }}/privkey.pem",
|
|
"trusted_origins": []
|
|
},
|
|
"phish_server": {
|
|
"listen_url": "0.0.0.0:8081",
|
|
"use_tls": false,
|
|
"cert_path": "/etc/letsencrypt/live/{{ domain }}/fullchain.pem",
|
|
"key_path": "/etc/letsencrypt/live/{{ domain }}/privkey.pem"
|
|
},
|
|
"db_name": "sqlite3",
|
|
"db_path": "gophish.db",
|
|
"migrations_prefix": "db/db_",
|
|
"contact_address": "",
|
|
"logging": {
|
|
"filename": "",
|
|
"level": ""
|
|
}
|
|
} |