improved output of bootstrap script

pull/3/head
Cédric Bonhomme 2017-09-06 09:22:58 +02:00
parent 0fe073ad00
commit 676ce88d29
No known key found for this signature in database
GPG Key ID: A1CB94DE57B7A70D
1 changed files with 25 additions and 25 deletions

View File

@ -32,18 +32,18 @@ GPG_PASSPHRASE=''
echo "\n--- Installing MISP... ---\n"
echo "--- Installing MISP... ---"
echo "\n--- Updating packages list ---\n"
echo "--- Updating packages list ---"
sudo apt-get -qq update
echo "\n--- Install base packages ---\n"
echo "--- Install base packages ---"
sudo apt-get -y install curl net-tools gcc git gnupg-agent make python openssl redis-server sudo vim zip > /dev/null 2>&1
echo "\n--- Installing and configuring Postfix ---\n"
echo "--- Installing and configuring Postfix ---"
# # Postfix Configuration: Satellite system
# # change the relay server later with:
# sudo postconf -e 'relayhost = example.com'
@ -53,7 +53,7 @@ echo "postfix postfix/main_mailer_type string 'Satellite system'" | debconf-set-
sudo apt-get install -y postfix > /dev/null 2>&1
echo "\n--- Installing MariaDB specific packages and settings ---\n"
echo "--- Installing MariaDB specific packages and settings ---"
sudo apt-get install -y mariadb-client mariadb-server > /dev/null 2>&1
# Secure the MariaDB installation (especially by setting a strong root password)
sleep 7 # give some time to the DB to launch...
@ -82,7 +82,7 @@ EOF
sudo apt-get purge -y expect > /dev/null 2>&1
echo "\n--- Installing Apache2 ---\n"
echo "--- Installing Apache2 ---"
sudo apt-get install -y apache2 apache2-doc apache2-utils > /dev/null 2>&1
sudo a2dismod status > /dev/null 2>&1
sudo a2enmod ssl > /dev/null 2>&1
@ -91,15 +91,15 @@ sudo a2dissite 000-default > /dev/null 2>&1
sudo a2ensite default-ssl > /dev/null 2>&1
echo "\n--- Installing PHP-specific packages ---\n"
echo "--- Installing PHP-specific packages ---"
sudo apt-get install -y libapache2-mod-php php php-cli php-crypt-gpg php-dev php-json php-mysql php-opcache php-readline php-redis php-xml > /dev/null 2>&1
echo "\n--- Restarting Apache ---\n"
echo "--- Restarting Apache ---"
sudo systemctl restart apache2 > /dev/null 2>&1
echo "\n--- Retrieving MISP ---\n"
echo "--- Retrieving MISP ---"
mkdir $PATH_TO_MISP
sudo chown www-data:www-data $PATH_TO_MISP
cd $PATH_TO_MISP
@ -111,7 +111,7 @@ sudo -u www-data git config core.filemode false
# chmod -R 700 $PATH_TO_MISP
echo "\n--- Installing Mitre's STIX ---\n"
echo "--- Installing Mitre's STIX ---"
sudo apt-get install -y python-dev python-pip libxml2-dev libxslt1-dev zlib1g-dev python-setuptools > /dev/null 2>&1
cd $PATH_TO_MISP/app/files/scripts
sudo -u www-data git clone https://github.com/CybOXProject/python-cybox.git
@ -130,7 +130,7 @@ sudo -u www-data git checkout v1.0.2
sudo python setup.py install > /dev/null 2>&1
echo "\n--- Retrieving CakePHP... ---\n"
echo "--- Retrieving CakePHP... ---"
# CakePHP is included as a submodule of MISP, execute the following commands to let git fetch it:
cd $PATH_TO_MISP
sudo -u www-data git submodule init
@ -146,7 +146,7 @@ sudo phpenmod redis
sudo -u www-data cp -fa $PATH_TO_MISP/INSTALL/setup/config.php $PATH_TO_MISP/app/Plugin/CakeResque/Config/config.php
echo "\n--- Setting the permissions... ---\n"
echo "--- Setting the permissions... ---"
sudo chown -R www-data:www-data $PATH_TO_MISP
sudo chmod -R 750 $PATH_TO_MISP
sudo chmod -R g+ws $PATH_TO_MISP/app/tmp
@ -154,7 +154,7 @@ sudo chmod -R g+ws $PATH_TO_MISP/app/files
sudo chmod -R g+ws $PATH_TO_MISP/app/files/scripts/tmp
echo "\n--- Creating a database user... ---\n"
echo "--- Creating a database user... ---"
sudo mysql -u $DBUSER_ADMIN -p$DBPASSWORD_ADMIN -e "create database $DBNAME;"
sudo mysql -u $DBUSER_ADMIN -p$DBPASSWORD_ADMIN -e "grant usage on *.* to $DBNAME@localhost identified by '$DBPASSWORD_MISP';"
sudo mysql -u $DBUSER_ADMIN -p$DBPASSWORD_ADMIN -e "grant all privileges on $DBNAME.* to '$DBUSER_MISP'@'localhost';"
@ -163,14 +163,14 @@ sudo mysql -u $DBUSER_ADMIN -p$DBPASSWORD_ADMIN -e "flush privileges;"
sudo -u www-data mysql -u $DBUSER_MISP -p$DBPASSWORD_MISP $DBNAME < /var/www/MISP/INSTALL/MYSQL.sql
echo "\n--- Configuring Apache... ---\n"
echo "--- Configuring Apache... ---"
# !!! apache.24.misp.ssl seems to be missing
#cp $PATH_TO_MISP/INSTALL/apache.24.misp.ssl /etc/apache2/sites-available/misp-ssl.conf
# If a valid SSL certificate is not already created for the server, create a self-signed certificate:
sudo openssl req -newkey rsa:4096 -days 365 -nodes -x509 -subj "/C=$OPENSSL_C/ST=$OPENSSL_ST/L=$OPENSSL_L/O=<$OPENSSL_O/OU=$OPENSSL_OU/CN=$OPENSSL_CN/emailAddress=$OPENSSL_EMAILADDRESS" -keyout /etc/ssl/private/misp.local.key -out /etc/ssl/private/misp.local.crt > /dev/null
echo "\n--- Add a VirtualHost for MISP ---\n"
echo "--- Add a VirtualHost for MISP ---"
sudo cat > /etc/apache2/sites-available/misp-ssl.conf <<EOF
<VirtualHost *:80>
ServerAdmin admin@misp.local
@ -228,15 +228,15 @@ sudo a2dissite default-ssl
sudo a2ensite misp-ssl
echo "\n--- Restarting Apache ---\n"
echo "--- Restarting Apache ---"
sudo systemctl restart apache2 > /dev/null 2>&1
echo "\n--- Configuring log rotation ---\n"
echo "--- Configuring log rotation ---"
sudo cp $PATH_TO_MISP/INSTALL/misp.logrotate /etc/logrotate.d/misp
echo "\n--- MISP configuration ---\n"
echo "--- MISP configuration ---"
# There are 4 sample configuration files in /var/www/MISP/app/Config that need to be copied
sudo -u www-data cp -a $PATH_TO_MISP/app/Config/bootstrap.default.php /var/www/MISP/app/Config/bootstrap.php
sudo -u www-data cp -a $PATH_TO_MISP/app/Config/database.default.php /var/www/MISP/app/Config/database.php
@ -268,7 +268,7 @@ sudo $PATH_TO_MISP/app/Console/cake Baseurl $MISP_BASEURL
sudo $PATH_TO_MISP/app/Console/cake Live $MISP_LIVE
echo "\n--- Generating a GPG encryption key... ---\n"
echo "--- Generating a GPG encryption key... ---"
sudo apt-get install -y rng-tools haveged
sudo -u www-data mkdir $PATH_TO_MISP/.gnupg
sudo chmod 700 $PATH_TO_MISP/.gnupg
@ -292,7 +292,7 @@ rm gen-key-script
sudo -u www-data gpg --homedir $PATH_TO_MISP/.gnupg --batch --gen-key gen-key-scriptgpg --homedir $PATH_TO_MISP/.gnupg --export --armor $EMAIL_ADDRESS > $PATH_TO_MISP/app/webroot/gpg.asc
echo "\n--- Making the background workers start on boot... ---\n"
echo "--- Making the background workers start on boot... ---"
sudo chmod 755 $PATH_TO_MISP/app/Console/worker/start.sh
# With systemd:
# sudo cat > /etc/systemd/system/workers.service <<EOF
@ -320,7 +320,7 @@ fi
sudo sed -i -e '$i \sudo -u www-data bash /var/www/MISP/app/Console/worker/start.sh\n' /etc/rc.local
echo "\n--- Installing MISP modules... ---\n"
echo "--- Installing MISP modules... ---"
sudo apt-get install -y python3-dev python3-pip libpq5 libjpeg-dev > /dev/null 2>&1
cd /usr/local/src/
sudo git clone https://github.com/MISP/misp-modules.git
@ -348,21 +348,21 @@ sudo sed -i -e '$i \sudo -u www-data misp-modules -l 0.0.0.0 -s &\n' /etc/rc.loc
echo "\n--- Restarting Apache... ---\n"
echo "--- Restarting Apache... ---"
sudo systemctl restart apache2 > /dev/null 2>&1
sleep 5
echo "\n--- Updating the galaxies... ---\n"
echo "--- Updating the galaxies... ---"
sudo -E $PATH_TO_MISP/app/Console/cake userInit -q > /dev/null
AUTH_KEY=$(mysql -u $DBUSER_MISP -p$DBPASSWORD_MISP misp -e "SELECT authkey FROM users;" | tail -1)
curl -k -X POST -H "Authorization: $AUTH_KEY" -H "Accept: application/json" -v http://127.0.0.1/galaxies/update > /dev/null 2>&1
echo "\n--- Updating the taxonomies... ---\n"
echo "--- Updating the taxonomies... ---"
curl -k -X POST -H "Authorization: $AUTH_KEY" -H "Accept: application/json" -v http://127.0.0.1/taxonomies/update > /dev/null 2>&1
# echo "\n--- Enabling MISP new pub/sub feature (ZeroMQ)... ---\n"
# echo "--- Enabling MISP new pub/sub feature (ZeroMQ)... ---"
# # ZeroMQ depends on the Python client for Redis
# pip install redis > /dev/null 2>&1
# ## Install ZeroMQ and prerequisites