From e1f7c090f34a3d1946e689b8b073df4d3d4410ef Mon Sep 17 00:00:00 2001 From: m0duspwnens Date: Mon, 25 Jan 2021 10:25:41 -0500 Subject: [PATCH 1/7] detect os and cloud sooner --- setup/so-setup | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup/so-setup b/setup/so-setup index 68800c85b..30896729f 100755 --- a/setup/so-setup +++ b/setup/so-setup @@ -104,6 +104,8 @@ function progress() { fi } +detect_os && detect_cloud + if [[ -f automation/$automation && $(basename $automation) == $automation ]]; then echo "Preselecting variable values based on automated setup: $automation" >> $setup_log 2>&1 source automation/$automation @@ -152,7 +154,6 @@ set_ssh_cmds $automated local_sbin="$(pwd)/../salt/common/tools/sbin" export PATH=$PATH:$local_sbin -detect_os && detect_cloud set_network_dev_status_list if [ "$OS" == ubuntu ]; then From 7dcca6f364c1f2155b2de81df6b3f4e379bbdcbb Mon Sep 17 00:00:00 2001 From: m0duspwnens Date: Mon, 25 Jan 2021 13:47:51 -0500 Subject: [PATCH 2/7] change when we detect os and wait_for_apt when installing sshpass --- setup/so-functions | 42 ++++++++++++++++++++++++------------------ setup/so-setup | 5 +++-- 2 files changed, 27 insertions(+), 20 deletions(-) diff --git a/setup/so-functions b/setup/so-functions index 1df065e71..5603e7c95 100755 --- a/setup/so-functions +++ b/setup/so-functions @@ -913,6 +913,29 @@ detect_os() { exit 1 fi + elif [ -f /etc/os-release ]; then + OS=ubuntu + if grep -q "UBUNTU_CODENAME=bionic" /etc/os-release; then + OSVER=bionic + elif grep -q "UBUNTU_CODENAME=xenial" /etc/os-release; then + OSVER=xenial + else + echo "We do not support your current version of Ubuntu." + exit 1 + fi + + else + echo "We were unable to determine if you are using a supported OS." + exit 1 + fi + + echo "Found OS: $OS $OSVER" >> "$setup_log" 2>&1 + +} + +installer_prereq_packages() { + + if [ "$OS" == centos ]; then # Print message to stdout so the user knows setup is doing something echo "Installing required packages to run installer..." # Install bind-utils so the host command exists @@ -937,17 +960,7 @@ detect_os() { logCmd "systemctl enable NetworkManager" logCmd "systemctl start NetworkManager" fi - elif [ -f /etc/os-release ]; then - OS=ubuntu - if grep -q "UBUNTU_CODENAME=bionic" /etc/os-release; then - OSVER=bionic - elif grep -q "UBUNTU_CODENAME=xenial" /etc/os-release; then - OSVER=xenial - else - echo "We do not support your current version of Ubuntu." - exit 1 - fi - + elif [ "$OS" == ubuntu ]; then # Print message to stdout so the user knows setup is doing something echo "Installing required packages to run installer..." # Install network manager so we can do interface stuff @@ -960,13 +973,6 @@ detect_os() { fi if wait_for_apt; then apt-get install -y bc curl >> "$setup_log" 2>&1; else exit 1; fi - else - echo "We were unable to determine if you are using a supported OS." - exit 1 - fi - - echo "Found OS: $OS $OSVER" >> "$setup_log" 2>&1 - } disable_auto_start() { diff --git a/setup/so-setup b/setup/so-setup index 30896729f..da885c6b3 100755 --- a/setup/so-setup +++ b/setup/so-setup @@ -104,7 +104,7 @@ function progress() { fi } -detect_os && detect_cloud +detect_os if [[ -f automation/$automation && $(basename $automation) == $automation ]]; then echo "Preselecting variable values based on automated setup: $automation" >> $setup_log 2>&1 @@ -130,7 +130,7 @@ if [[ -f automation/$automation && $(basename $automation) == $automation ]]; th if [[ ! $is_iso ]]; then echo "Installing sshpass for automated testing." >> $setup_log 2>&1 if [ "$OS" == ubuntu ]; then - apt-get -y install sshpass >> $setup_log 2>&1 + if wait_for_apt; then apt-get -y install sshpass >> $setup_log 2>&1 else yum -y install sshpass >> $setup_log 2>&1 fi @@ -154,6 +154,7 @@ set_ssh_cmds $automated local_sbin="$(pwd)/../salt/common/tools/sbin" export PATH=$PATH:$local_sbin +installer_prereq_packages && detect_cloud set_network_dev_status_list if [ "$OS" == ubuntu ]; then From 944817732b54eb640bab941d1f87da066de1178d Mon Sep 17 00:00:00 2001 From: m0duspwnens Date: Mon, 25 Jan 2021 15:22:04 -0500 Subject: [PATCH 3/7] grep for the scrip to be running https://github.com/Security-Onion-Solutions/securityonion/issues/2722 --- salt/common/tools/sbin/so-sensor-clean | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/salt/common/tools/sbin/so-sensor-clean b/salt/common/tools/sbin/so-sensor-clean index a7aa64d99..63f102f0c 100755 --- a/salt/common/tools/sbin/so-sensor-clean +++ b/salt/common/tools/sbin/so-sensor-clean @@ -115,7 +115,7 @@ clean() { } # Check to see if we are already running -IS_RUNNING=$(ps aux | grep "sensor_clean" | grep -v grep | wc -l) +IS_RUNNING=$(ps aux | grep "so-sensor-clean" | grep -v grep | wc -l) [ "$IS_RUNNING" -gt 2 ] && echo "$(date) - $IS_RUNNING sensor clean script processes running...exiting." >>$LOG && exit 0 if [ "$CUR_USAGE" -gt "$CRIT_DISK_USAGE" ]; then From 8ec0b95f02a6134d22224c30ae7c65ac4cfb4b6d Mon Sep 17 00:00:00 2001 From: Jason Ertel Date: Mon, 25 Jan 2021 15:48:37 -0500 Subject: [PATCH 4/7] Rename AMI automation files for consistency with other files --- .../{distributed-ami-searchnode => distributed-ami-search} | 0 .../{distributed-ami-forwardnode => distributed-ami-sensor} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename setup/automation/{distributed-ami-searchnode => distributed-ami-search} (100%) rename setup/automation/{distributed-ami-forwardnode => distributed-ami-sensor} (100%) diff --git a/setup/automation/distributed-ami-searchnode b/setup/automation/distributed-ami-search similarity index 100% rename from setup/automation/distributed-ami-searchnode rename to setup/automation/distributed-ami-search diff --git a/setup/automation/distributed-ami-forwardnode b/setup/automation/distributed-ami-sensor similarity index 100% rename from setup/automation/distributed-ami-forwardnode rename to setup/automation/distributed-ami-sensor From ae233b5757a7890b7c949370cf1a4c1ce4992ee5 Mon Sep 17 00:00:00 2001 From: Jason Ertel Date: Mon, 25 Jan 2021 15:53:19 -0500 Subject: [PATCH 5/7] Update AMI automation files for distributed install --- setup/automation/distributed-ami-manager | 10 +++++----- setup/automation/distributed-ami-search | 4 ++-- setup/automation/distributed-ami-sensor | 6 +++--- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/setup/automation/distributed-ami-manager b/setup/automation/distributed-ami-manager index b1effcf7a..d1cbb5ddb 100644 --- a/setup/automation/distributed-ami-manager +++ b/setup/automation/distributed-ami-manager @@ -26,7 +26,7 @@ ALLOW_ROLE=a BASICZEEK=2 BASICSURI=2 # BLOGS= -BNICS=ens6 +#BNICS=eth1 ZEEKVERSION=ZEEK # CURCLOSEDAYS= # EVALADVANCED=BASIC @@ -34,7 +34,7 @@ GRAFANA=1 # HELIXAPIKEY= HNMANAGER=10.0.0.0/8,192.168.0.0/16,172.16.0.0/12 HNSENSOR=inherit -HOSTNAME=manager-aws +HOSTNAME=distributed-manager install_type=MANAGER # LSINPUTBATCHCOUNT= # LSINPUTTHREADS= @@ -46,7 +46,7 @@ MANAGERUPDATES=1 # MGATEWAY= # MIP= # MMASK= -MNIC=ens5 +MNIC=eth0 # MSEARCH= # MSRV= # MTU= @@ -62,8 +62,8 @@ OSQUERY=1 # PATCHSCHEDULEHOURS= PATCHSCHEDULENAME=auto PLAYBOOK=1 -# REDIRECTHOST= -REDIRECTINFO=HOSTNAME +REDIRECTHOST=$(curl http://169.254.169.254/latest/meta-data/public-ipv4) +REDIRECTINFO=OTHER RULESETUP=ETOPEN # SHARDCOUNT= SKIP_REBOOT=0 diff --git a/setup/automation/distributed-ami-search b/setup/automation/distributed-ami-search index e50e18475..f21b9e87a 100644 --- a/setup/automation/distributed-ami-search +++ b/setup/automation/distributed-ami-search @@ -34,7 +34,7 @@ ADMINPASS2=onionuser # HELIXAPIKEY= HNMANAGER=10.0.0.0/8,192.168.0.0/16,172.16.0.0/12 HNSENSOR=inherit -HOSTNAME=searchnode-aws +HOSTNAME=distributed-search install_type=SEARCHNODE # LSINPUTBATCHCOUNT= # LSINPUTTHREADS= @@ -46,7 +46,7 @@ MANAGERUPDATES=1 # MGATEWAY= # MIP= # MMASK= -MNIC=ens5 +MNIC=eth0 # MSEARCH= MSRV=manager-aws MSRVIP=172.16.163.10 diff --git a/setup/automation/distributed-ami-sensor b/setup/automation/distributed-ami-sensor index a3cd2cccb..062ca1e2d 100644 --- a/setup/automation/distributed-ami-sensor +++ b/setup/automation/distributed-ami-sensor @@ -26,7 +26,7 @@ ADMINPASS2=onionuser BASICZEEK=2 BASICSURI=2 # BLOGS= -BNICS=ens6 +BNICS=eth1 ZEEKVERSION=ZEEK # CURCLOSEDAYS= # EVALADVANCED=BASIC @@ -34,7 +34,7 @@ ZEEKVERSION=ZEEK # HELIXAPIKEY= HNMANAGER=10.0.0.0/8,192.168.0.0/16,172.16.0.0/12 HNSENSOR=inherit -HOSTNAME=forwardnode-aws +HOSTNAME=distributed-sensor install_type=SENSOR # LSINPUTBATCHCOUNT= # LSINPUTTHREADS= @@ -46,7 +46,7 @@ MANAGERUPDATES=1 # MGATEWAY= # MIP= # MMASK= -MNIC=ens5 +MNIC=eth0 # MSEARCH= MSRV=manager-aws MSRVIP=172.16.163.10 From b0c74cf38cd450c14e51b4b87987b6ca7648f130 Mon Sep 17 00:00:00 2001 From: Jason Ertel Date: Mon, 25 Jan 2021 16:46:52 -0500 Subject: [PATCH 6/7] Add import automation files for other platforms --- setup/automation/import-airgap | 78 ++++++++++++++++++++++++++++++ setup/automation/import-ami | 77 +++++++++++++++++++++++++++++ setup/automation/import-iso | 2 +- setup/automation/import-net-centos | 77 +++++++++++++++++++++++++++++ setup/automation/import-net-ubuntu | 77 +++++++++++++++++++++++++++++ 5 files changed, 310 insertions(+), 1 deletion(-) create mode 100644 setup/automation/import-airgap create mode 100644 setup/automation/import-ami create mode 100644 setup/automation/import-net-centos create mode 100644 setup/automation/import-net-ubuntu diff --git a/setup/automation/import-airgap b/setup/automation/import-airgap new file mode 100644 index 000000000..56fbc9bfe --- /dev/null +++ b/setup/automation/import-airgap @@ -0,0 +1,78 @@ +#!/bin/bash + +# Copyright 2014,2015,2016,2017,2018,2019,2020 Security Onion Solutions, LLC + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +TESTING=true + +address_type=DHCP +ADMINUSER=onionuser +ADMINPASS1=onionuser +ADMINPASS2=onionuser +ALLOW_CIDR=0.0.0.0/0 +ALLOW_ROLE=a +BASICZEEK=2 +BASICSURI=2 +# BLOGS= +#BNICS=eth1 +ZEEKVERSION=ZEEK +# CURCLOSEDAYS= +# EVALADVANCED=BASIC +GRAFANA=1 +# HELIXAPIKEY= +HNMANAGER=10.0.0.0/8,192.168.0.0/16,172.16.0.0/12 +HNSENSOR=inherit +HOSTNAME=import +install_type=IMPORT +INTERWEBS=AIRGAP +# LSINPUTBATCHCOUNT= +# LSINPUTTHREADS= +# LSPIPELINEBATCH= +# LSPIPELINEWORKERS= +MANAGERADV=BASIC +MANAGERUPDATES=1 +# MDNS= +# MGATEWAY= +# MIP= +# MMASK= +MNIC=eth0 +# MSEARCH= +# MSRV= +# MTU= +NIDS=Suricata +# NODE_ES_HEAP_SIZE= +# NODE_LS_HEAP_SIZE= +NODESETUP=NODEBASIC +NSMSETUP=BASIC +NODEUPDATES=MANAGER +# OINKCODE= +OSQUERY=1 +# PATCHSCHEDULEDAYS= +# PATCHSCHEDULEHOURS= +PATCHSCHEDULENAME=auto +# PLAYBOOK=1 +REDIRECTHOST=$(curl http://169.254.169.254/latest/meta-data/public-ipv4) +REDIRECTINFO=OTHER +RULESETUP=ETOPEN +# SHARDCOUNT= +# SKIP_REBOOT= +# SOREMOTEPASS1=onionuser +# SOREMOTEPASS2=onionuser +STRELKA=1 +THEHIVE=1 +WAZUH=1 +WEBUSER=onionuser@somewhere.invalid +WEBPASSWD1=0n10nus3r +WEBPASSWD2=0n10nus3r diff --git a/setup/automation/import-ami b/setup/automation/import-ami new file mode 100644 index 000000000..2aee35c08 --- /dev/null +++ b/setup/automation/import-ami @@ -0,0 +1,77 @@ +#!/bin/bash + +# Copyright 2014,2015,2016,2017,2018,2019,2020 Security Onion Solutions, LLC + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +TESTING=true + +address_type=DHCP +ADMINUSER=onionuser +ADMINPASS1=onionuser +ADMINPASS2=onionuser +ALLOW_CIDR=0.0.0.0/0 +ALLOW_ROLE=a +BASICZEEK=2 +BASICSURI=2 +# BLOGS= +#BNICS=eth1 +ZEEKVERSION=ZEEK +# CURCLOSEDAYS= +# EVALADVANCED=BASIC +GRAFANA=1 +# HELIXAPIKEY= +HNMANAGER=10.0.0.0/8,192.168.0.0/16,172.16.0.0/12 +HNSENSOR=inherit +HOSTNAME=import +install_type=IMPORT +# LSINPUTBATCHCOUNT= +# LSINPUTTHREADS= +# LSPIPELINEBATCH= +# LSPIPELINEWORKERS= +MANAGERADV=BASIC +MANAGERUPDATES=1 +# MDNS= +# MGATEWAY= +# MIP= +# MMASK= +MNIC=eth0 +# MSEARCH= +# MSRV= +# MTU= +NIDS=Suricata +# NODE_ES_HEAP_SIZE= +# NODE_LS_HEAP_SIZE= +NODESETUP=NODEBASIC +NSMSETUP=BASIC +NODEUPDATES=MANAGER +# OINKCODE= +OSQUERY=1 +# PATCHSCHEDULEDAYS= +# PATCHSCHEDULEHOURS= +PATCHSCHEDULENAME=auto +# PLAYBOOK=1 +REDIRECTHOST=$(curl http://169.254.169.254/latest/meta-data/public-ipv4) +REDIRECTINFO=OTHER +RULESETUP=ETOPEN +# SHARDCOUNT= +# SKIP_REBOOT= +# SOREMOTEPASS1=onionuser +# SOREMOTEPASS2=onionuser +STRELKA=1 +THEHIVE=1 +WAZUH=1 +WEBUSER=onionuser@somewhere.invalid +WEBPASSWD1=0n10nus3r +WEBPASSWD2=0n10nus3r diff --git a/setup/automation/import-iso b/setup/automation/import-iso index 7eb455b89..11d9229a7 100644 --- a/setup/automation/import-iso +++ b/setup/automation/import-iso @@ -61,7 +61,7 @@ OSQUERY=1 # PATCHSCHEDULEDAYS= # PATCHSCHEDULEHOURS= PATCHSCHEDULENAME=auto -PLAYBOOK=1 +# PLAYBOOK=1 # REDIRECTHOST= REDIRECTINFO=IP RULESETUP=ETOPEN diff --git a/setup/automation/import-net-centos b/setup/automation/import-net-centos new file mode 100644 index 000000000..42c9bdfce --- /dev/null +++ b/setup/automation/import-net-centos @@ -0,0 +1,77 @@ +#!/bin/bash + +# Copyright 2014,2015,2016,2017,2018,2019,2020 Security Onion Solutions, LLC + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +TESTING=true + +# address_type=DHCP +ADMINUSER=onionuser +ADMINPASS1=onionuser +ADMINPASS2=onionuser +ALLOW_CIDR=0.0.0.0/0 +ALLOW_ROLE=a +BASICZEEK=2 +BASICSURI=2 +# BLOGS= +#BNICS=eth1 +ZEEKVERSION=ZEEK +# CURCLOSEDAYS= +# EVALADVANCED=BASIC +GRAFANA=1 +# HELIXAPIKEY= +HNMANAGER=10.0.0.0/8,192.168.0.0/16,172.16.0.0/12 +HNSENSOR=inherit +HOSTNAME=import +install_type=IMPORT +# LSINPUTBATCHCOUNT= +# LSINPUTTHREADS= +# LSPIPELINEBATCH= +# LSPIPELINEWORKERS= +MANAGERADV=BASIC +MANAGERUPDATES=1 +# MDNS= +# MGATEWAY= +# MIP= +# MMASK= +MNIC=eth0 +# MSEARCH= +# MSRV= +# MTU= +NIDS=Suricata +# NODE_ES_HEAP_SIZE= +# NODE_LS_HEAP_SIZE= +NODESETUP=NODEBASIC +NSMSETUP=BASIC +NODEUPDATES=MANAGER +# OINKCODE= +OSQUERY=1 +# PATCHSCHEDULEDAYS= +# PATCHSCHEDULEHOURS= +PATCHSCHEDULENAME=auto +#PLAYBOOK=1 +# REDIRECTHOST= +REDIRECTINFO=IP +RULESETUP=ETOPEN +# SHARDCOUNT= +# SKIP_REBOOT= +# SOREMOTEPASS1=onionuser +# SOREMOTEPASS2=onionuser +STRELKA=1 +THEHIVE=1 +WAZUH=1 +WEBUSER=onionuser@somewhere.invalid +WEBPASSWD1=0n10nus3r +WEBPASSWD2=0n10nus3r diff --git a/setup/automation/import-net-ubuntu b/setup/automation/import-net-ubuntu new file mode 100644 index 000000000..886e89862 --- /dev/null +++ b/setup/automation/import-net-ubuntu @@ -0,0 +1,77 @@ +#!/bin/bash + +# Copyright 2014,2015,2016,2017,2018,2019,2020 Security Onion Solutions, LLC + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +TESTING=true + +# address_type=DHCP +ADMINUSER=onionuser +ADMINPASS1=onionuser +ADMINPASS2=onionuser +ALLOW_CIDR=0.0.0.0/0 +ALLOW_ROLE=a +BASICZEEK=2 +BASICSURI=2 +# BLOGS= +#BNICS=eth1 +ZEEKVERSION=ZEEK +# CURCLOSEDAYS= +# EVALADVANCED=BASIC +GRAFANA=1 +# HELIXAPIKEY= +HNMANAGER=10.0.0.0/8,192.168.0.0/16,172.16.0.0/12 +HNSENSOR=inherit +HOSTNAME=import +install_type=IMPORT +# LSINPUTBATCHCOUNT= +# LSINPUTTHREADS= +# LSPIPELINEBATCH= +# LSPIPELINEWORKERS= +MANAGERADV=BASIC +MANAGERUPDATES=1 +# MDNS= +# MGATEWAY= +# MIP= +# MMASK= +MNIC=ens18 +# MSEARCH= +# MSRV= +# MTU= +NIDS=Suricata +# NODE_ES_HEAP_SIZE= +# NODE_LS_HEAP_SIZE= +NODESETUP=NODEBASIC +NSMSETUP=BASIC +NODEUPDATES=MANAGER +# OINKCODE= +OSQUERY=1 +# PATCHSCHEDULEDAYS= +# PATCHSCHEDULEHOURS= +PATCHSCHEDULENAME=auto +#PLAYBOOK=1 +# REDIRECTHOST= +REDIRECTINFO=IP +RULESETUP=ETOPEN +# SHARDCOUNT= +# SKIP_REBOOT= +# SOREMOTEPASS1=onionuser +# SOREMOTEPASS2=onionuser +STRELKA=1 +THEHIVE=1 +WAZUH=1 +WEBUSER=onionuser@somewhere.invalid +WEBPASSWD1=0n10nus3r +WEBPASSWD2=0n10nus3r From df21b28d5c619743a421e812789fcdf333115a2e Mon Sep 17 00:00:00 2001 From: Jason Ertel Date: Mon, 25 Jan 2021 17:11:42 -0500 Subject: [PATCH 7/7] Update copyright year --- setup/automation/distributed-ami-manager | 2 +- setup/automation/distributed-ami-search | 2 +- setup/automation/distributed-ami-sensor | 2 +- setup/automation/import-airgap | 2 +- setup/automation/import-ami | 2 +- setup/automation/import-iso | 2 +- setup/automation/import-net-centos | 2 +- setup/automation/import-net-ubuntu | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/setup/automation/distributed-ami-manager b/setup/automation/distributed-ami-manager index d1cbb5ddb..719b2ea9d 100644 --- a/setup/automation/distributed-ami-manager +++ b/setup/automation/distributed-ami-manager @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright 2014,2015,2016,2017,2018,2019,2020 Security Onion Solutions, LLC +# Copyright 2014,2015,2016,2017,2018,2019,2020,2021 Security Onion Solutions, LLC # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/setup/automation/distributed-ami-search b/setup/automation/distributed-ami-search index f21b9e87a..a7ad6710e 100644 --- a/setup/automation/distributed-ami-search +++ b/setup/automation/distributed-ami-search @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright 2014,2015,2016,2017,2018,2019,2020 Security Onion Solutions, LLC +# Copyright 2014,2015,2016,2017,2018,2019,2020,2021 Security Onion Solutions, LLC # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/setup/automation/distributed-ami-sensor b/setup/automation/distributed-ami-sensor index 062ca1e2d..0d03b9b69 100644 --- a/setup/automation/distributed-ami-sensor +++ b/setup/automation/distributed-ami-sensor @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright 2014,2015,2016,2017,2018,2019,2020 Security Onion Solutions, LLC +# Copyright 2014,2015,2016,2017,2018,2019,2020,2021 Security Onion Solutions, LLC # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/setup/automation/import-airgap b/setup/automation/import-airgap index 56fbc9bfe..8844d19d1 100644 --- a/setup/automation/import-airgap +++ b/setup/automation/import-airgap @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright 2014,2015,2016,2017,2018,2019,2020 Security Onion Solutions, LLC +# Copyright 2014,2015,2016,2017,2018,2019,2020,2021 Security Onion Solutions, LLC # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/setup/automation/import-ami b/setup/automation/import-ami index 2aee35c08..6855fee93 100644 --- a/setup/automation/import-ami +++ b/setup/automation/import-ami @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright 2014,2015,2016,2017,2018,2019,2020 Security Onion Solutions, LLC +# Copyright 2014,2015,2016,2017,2018,2019,2020,2021 Security Onion Solutions, LLC # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/setup/automation/import-iso b/setup/automation/import-iso index 11d9229a7..377d00207 100644 --- a/setup/automation/import-iso +++ b/setup/automation/import-iso @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright 2014,2015,2016,2017,2018,2019,2020 Security Onion Solutions, LLC +# Copyright 2014,2015,2016,2017,2018,2019,2020,2021 Security Onion Solutions, LLC # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/setup/automation/import-net-centos b/setup/automation/import-net-centos index 42c9bdfce..bc8fbaaa0 100644 --- a/setup/automation/import-net-centos +++ b/setup/automation/import-net-centos @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright 2014,2015,2016,2017,2018,2019,2020 Security Onion Solutions, LLC +# Copyright 2014,2015,2016,2017,2018,2019,2020,2021 Security Onion Solutions, LLC # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/setup/automation/import-net-ubuntu b/setup/automation/import-net-ubuntu index 886e89862..eb7a4254d 100644 --- a/setup/automation/import-net-ubuntu +++ b/setup/automation/import-net-ubuntu @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright 2014,2015,2016,2017,2018,2019,2020 Security Onion Solutions, LLC +# Copyright 2014,2015,2016,2017,2018,2019,2020,2021 Security Onion Solutions, LLC # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by