Warn user if using "securityonion" as hostname

This commit is contained in:
William Wernert
2021-02-12 12:55:55 -05:00
parent 8323f3f57a
commit 724f5cad78
2 changed files with 15 additions and 0 deletions

View File

@@ -398,6 +398,13 @@ collect_hostname() {
whiptail_set_hostname "$HOSTNAME"
if [[ $HOSTNAME == 'securityonion' ]]; then # Will only check HOSTNAME=securityonion once
if ! (whiptail_avoid_default_hostname); then
whiptail_set_hostname
fi
fi
while ! valid_hostname "$HOSTNAME"; do
whiptail_invalid_hostname
whiptail_set_hostname "$HOSTNAME"

View File

@@ -28,6 +28,14 @@ whiptail_airgap() {
whiptail_check_exitstatus $exitstatus
}
whiptail_avoid_default_hostname() {
[ -n "$TESTING" ] && return
whiptail --title "Security Onion Setup" \
--yesno "We suggest avoiding the default hostname of 'securityonion' in a distributed environment." 8 75 \
--yes-button "Use" --no-button "Change" --defaultno
}
whiptail_basic_suri() {
[ -n "$TESTING" ] && return