Files
SpecterOps-Nemesis/env.example
T
Lee Chagolla-Christensen a2796a940b nemesis-ctl, fix cli compose
2025-06-26 12:29:48 -07:00

46 lines
1.8 KiB
Plaintext

MINIO_ROOT_PASSWORD=Qwerty12345
MINIO_ROOT_USER=nemesis
POSTGRES_PASSWORD=Qwerty12345
POSTGRES_USER=nemesis
RABBITMQ_PASSWORD=Qwerty12345
RABBITMQ_USER=nemesis
# NEMESIS_URL is used when building hyperlinks for findings and Apprise alerts.
# If you change the port Nemesis listens on using NEMESIS_PORT (below), ensure this URL's port matches.
NEMESIS_URL=https://localhost:7443/
####################
# Optional Settings
####################
# Setup users using BASIC_AUTH_USERS (default is 'n:n'). Define multiple users by separating them with a comma.
# You can generate hashes for the users using various methods:
# - Via the CLI using the "htpasswd" command from the apache2-utils:
# - echo asdf | htpasswd -nmi myusername
# - Online generator: https://htpasswd.utils.com/
#
# Example: Defining the users 'alice' and 'bob':
# BASIC_AUTH_USERS='alice:$apr1$dVGX3WZH$r2b86WcF/F0oSxVivfLMg.,bob:$apr1$ZJIjt2ti$nbXWdeIQfQzKmWSMTsrW9/'
# Change the port Nemesis listens using NEMESIS_PORT (default is 7443).
# - Ensure the NEMESIS_URL value also uses this port.
# Example:
# NEMESIS_PORT=7443
# Configure Apprise alerting using APPRISE_URLS.
# - See Apprise's docs for how to format each provider: https://github.com/caronc/apprise/wiki#notification-services
# - To route user feedback to a specific channel use "?tag=feedback" as shown in the example below.
# Otherwise, only alerts listed.
# - See the Alerting docs for more details: https://specterops.github.io/Nemesis/usage_guide/#alerting
# Example:
# APPRISE_URLS=slack://Nemesis@T...6x/#nemesis-testing,slack://Nemesis@T...k/#nemesis-feedback?tag=feedback
# (Optional) Set Jupyter credentials using JUPYTER_PASSWORD.
# If not defined, a random password will be generated and printed in the jupyter container's logs.
# Example:
# JUPYTER_PASSWORD=Qwerty12345