mirror of https://github.com/MISP/misp-cloud
parent
63fcbd9b2f
commit
4a01b9da3d
548
dev/bootstrap
548
dev/bootstrap
|
@ -1,7 +1,12 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Ubuntu version
|
||||
UBUNTU_VERSION="$(lsb_release -r -s)"
|
||||
MISP_BRANCH='2.4'
|
||||
|
||||
# MISP Configurables
|
||||
PATH_TO_MISP='/var/www/MISP'
|
||||
CAKE="${PATH_TO_MISP}/app/Console/cake"
|
||||
MISP_BASEURL=''
|
||||
MISP_LIVE='1'
|
||||
|
||||
# Database configuration
|
||||
DBHOST='localhost'
|
||||
|
@ -12,62 +17,70 @@ DBUSER_MISP='misp'
|
|||
DBPASSWORD_MISP="zgPKzFasIUj1LLGfzfhDVxRLOObzJLer"
|
||||
|
||||
# Webserver configuration
|
||||
PATH_TO_MISP='/var/www/MISP'
|
||||
MISP_BASEURL=''
|
||||
FQDN='localhost'
|
||||
|
||||
# OpenSSL configuration
|
||||
OPENSSL_C='PT'
|
||||
OPENSSL_ST='Lisbon'
|
||||
OPENSSL_L='Lisbon'
|
||||
OPENSSL_O='MISP'
|
||||
OPENSSL_OU='MISP'
|
||||
OPENSSL_CN='MISP Training'
|
||||
OPENSSL_EMAILADDRESS='info@localhost'
|
||||
# GPG configuration
|
||||
GPG_REAL_NAME='Auto-generated Key'
|
||||
GPG_COMMENT='WARNING: MISP Cloud Auto-generated Key'
|
||||
GPG_EMAIL_ADDRESS='admin@admin.test'
|
||||
GPG_KEY_LENGTH='2048'
|
||||
GPG_PASSPHRASE='Password1234'
|
||||
|
||||
# php.ini configuration
|
||||
upload_max_filesize=50M
|
||||
post_max_size=50M
|
||||
max_execution_time=300
|
||||
memory_limit=512M
|
||||
PHP_INI=/etc/php/7.0/apache2/php.ini
|
||||
PHP_INI='/etc/php/7.2/apache2/php.ini'
|
||||
|
||||
echo "--- Installing MISP... ---"
|
||||
echo "--- Process started ... ---"
|
||||
|
||||
echo "--- Updating packages list and upgrading base image ---"
|
||||
sudo apt-get -qq update > /dev/null 2>&1
|
||||
sudo apt-get -qq upgrade -y > /dev/null 2>&1
|
||||
|
||||
echo "--- Performing OS changes... ---"
|
||||
echo "--- Performing OS changes (branding) ... ---"
|
||||
sudo apt-get install -y update-motd > /dev/null 2>&1
|
||||
sudo cat > /etc/update-motd.d/10-help-text <<EOF
|
||||
printf "\n"
|
||||
sudo cat > /etc/motd <<EOF
|
||||
|
||||
printf " __ __ _____ _____ _____
|
||||
|
||||
__ __ _____ _____ _____
|
||||
| \/ |_ _|/ ____| __ \
|
||||
| \ / | | | | (___ | |__) |
|
||||
| |\/| | | | \___ \| ___/
|
||||
| | | |_| |_ ____) | |
|
||||
|_| |_|_____|_____/|_| "
|
||||
printf "\n"
|
||||
printf "\n"
|
||||
|_| |_|_____|_____/|_|
|
||||
|
||||
|
||||
* MISP Project: https://github.com/MISP/MISP
|
||||
* AMI Documentation: https://github.com/misp/misp-cloud
|
||||
|
||||
printf " * MISP Project: https://github.com/MISP/MISP\n"
|
||||
printf " * AMI Documentation: https://github.com/misp/misp-cloud\n"
|
||||
EOF
|
||||
|
||||
sudo cat > /etc/update-motd.d/51-cloudguest <<EOF
|
||||
# REMOVED
|
||||
EOF
|
||||
|
||||
echo "--- Upgrading base system and autoremoving packages ---"
|
||||
sudo apt -qq update > /dev/null 2>&1
|
||||
sudo apt upgrade -y # > /dev/null 2>&1 # is this working! fucking apt!
|
||||
sudo apt -y autoremove > /dev/null 2>&1
|
||||
|
||||
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
|
||||
sudo apt-get -y install curl net-tools gcc git gnupg-agent make python openssl redis-server sudo tmux vim virtualenvwrapper zip python3-pythonmagick tesseract-ocr htop imagemagick asciidoctor jq > /dev/null 2>&1
|
||||
|
||||
echo "--- Installing and configuring Postfix ---"
|
||||
# # Postfix Configuration: Satellite system
|
||||
# # change the relay server later with:
|
||||
# sudo postconf -e 'relayhost = example.com'
|
||||
# sudo postfix reload
|
||||
echo "postfix postfix/mailname string `hostname`.misp.local" | sudo debconf-set-selections
|
||||
echo "postfix postfix/main_mailer_type string 'Satellite system'" | sudo debconf-set-selections
|
||||
sudo apt-get install -y postfix > /dev/null 2>&1
|
||||
|
||||
echo "--- Installing MariaDB specific packages and settings ---"
|
||||
sudo apt-get install -y mariadb-client mariadb-server > /dev/null 2>&1
|
||||
|
||||
# DB Hardening
|
||||
# Secure the MariaDB installation (especially by setting a strong root password)
|
||||
sleep 10 # give some time to the DB to launch...
|
||||
sudo systemctl restart mariadb.service
|
||||
sleep 10
|
||||
sudo apt-get install -y expect > /dev/null 2>&1
|
||||
## do we need to spawn mysql_secure_install with sudo in future?
|
||||
expect -f - <<-EOF
|
||||
set timeout 10
|
||||
spawn mysql_secure_installation
|
||||
|
@ -91,17 +104,17 @@ expect -f - <<-EOF
|
|||
EOF
|
||||
sudo apt-get purge -y expect > /dev/null 2>&1
|
||||
|
||||
echo ""
|
||||
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
|
||||
sudo a2enmod rewrite > /dev/null 2>&1
|
||||
sudo a2enmod headers > /dev/null 2>&1
|
||||
sudo a2dissite 000-default > /dev/null 2>&1
|
||||
sudo a2ensite default-ssl > /dev/null 2>&1
|
||||
|
||||
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
|
||||
sudo apt-get install -y libapache2-mod-php php php-cli php-dev php-mbstring php-json php-mysql php-opcache php-readline php-redis php-xml > /dev/null 2>&1
|
||||
|
||||
echo "--- Configuring PHP ---"
|
||||
for key in upload_max_filesize post_max_size max_execution_time max_input_time memory_limit
|
||||
|
@ -109,127 +122,101 @@ do
|
|||
sudo sed -i "s/^\($key\).*/\1 = $(eval echo \${$key})/" $PHP_INI
|
||||
done
|
||||
|
||||
echo "--- Adding Apache virtualhost ---"
|
||||
|
||||
openssl req -newkey rsa:4096 -days 365 -nodes -x509 -subj "/CN=MISP-Cloud" -keyout /etc/ssl/private/misp.local.key -out /etc/ssl/private/misp.local.crt > /dev/null 2>&1
|
||||
|
||||
sudo cat > /etc/apache2/sites-available/misp-ssl.conf <<EOF
|
||||
<VirtualHost *:443>
|
||||
ServerAdmin admin@misp.local
|
||||
ServerName misp.local
|
||||
DocumentRoot $PATH_TO_MISP/app/webroot
|
||||
<Directory $PATH_TO_MISP/app/webroot>
|
||||
Options -Indexes
|
||||
AllowOverride all
|
||||
Require all granted
|
||||
</Directory>
|
||||
LogLevel warn
|
||||
ErrorLog /var/log/apache2/misp.local_error.log
|
||||
CustomLog /var/log/apache2/misp.local_access.log combined
|
||||
ServerSignature Off
|
||||
Header set X-Content-Type-Options nosniff
|
||||
Header set X-Frame-Options DENY
|
||||
|
||||
SSLEngine On
|
||||
SSLCertificateFile /etc/ssl/private/misp.local.crt
|
||||
SSLCertificateKeyFile /etc/ssl/private/misp.local.key
|
||||
</VirtualHost>
|
||||
EOF
|
||||
|
||||
sudo a2dissite default-ssl > /dev/null 2>&1
|
||||
sudo a2ensite misp-ssl > /dev/null 2>&1
|
||||
|
||||
echo "--- Restarting Apache ---"
|
||||
sudo systemctl restart apache2 > /dev/null 2>&1
|
||||
|
||||
echo "--- Retrieving MISP ---"
|
||||
## Double check perms.
|
||||
sudo mkdir $PATH_TO_MISP
|
||||
sudo chown www-data:www-data $PATH_TO_MISP
|
||||
cd $PATH_TO_MISP
|
||||
|
||||
# PROBLEM
|
||||
#sudo -u www-data git clone -b $MISP_BRANCH https://github.com/MISP/MISP.git $PATH_TO_MISP
|
||||
sudo -u www-data git clone https://github.com/MISP/MISP.git /var/www/MISP > /dev/null 2>&1
|
||||
git checkout tags/$(git describe --tags `git rev-list --tags --max-count=1`) > /dev/null 2>&1
|
||||
sudo -u www-data git config core.filemode false > /dev/null 2>&1
|
||||
sudo -u www-data git clone -b $MISP_BRANCH https://github.com/MISP/MISP.git $PATH_TO_MISP > /dev/null 2>&1
|
||||
#git checkout tags/$(git describe --tags `git rev-list --tags --max-count=1`)
|
||||
sudo -u www-data git config core.filemode false
|
||||
# chown -R www-data $PATH_TO_MISP
|
||||
# chgrp -R www-data $PATH_TO_MISP
|
||||
# chmod -R 700 $PATH_TO_MISP
|
||||
|
||||
|
||||
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
|
||||
sudo apt-get install -y python-dev python3-dev python3-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
|
||||
sudo -u www-data git clone https://github.com/STIXProject/python-stix.git
|
||||
|
||||
sudo -u www-data git clone https://github.com/CybOXProject/python-cybox.git > /dev/null 2>&1
|
||||
sudo -u www-data git clone https://github.com/STIXProject/python-stix.git > /dev/null 2>&1
|
||||
cd $PATH_TO_MISP/app/files/scripts/python-cybox
|
||||
sudo -u www-data git checkout v2.1.0.12
|
||||
sudo python3 setup.py install
|
||||
|
||||
sudo python3 setup.py install > /dev/null 2>&1
|
||||
cd $PATH_TO_MISP/app/files/scripts/python-stix
|
||||
sudo -u www-data git checkout v1.1.1.4
|
||||
sudo python3 setup.py install
|
||||
|
||||
sudo python3 setup.py install > /dev/null 2>&1
|
||||
# install mixbox to accomodate the new STIX dependencies:
|
||||
cd $PATH_TO_MISP/app/files/scripts/
|
||||
sudo -u www-data git clone https://github.com/CybOXProject/mixbox.git
|
||||
sudo -u www-data git clone https://github.com/CybOXProject/mixbox.git > /dev/null 2>&1
|
||||
cd $PATH_TO_MISP/app/files/scripts/mixbox
|
||||
sudo -u www-data git checkout v1.0.2
|
||||
sudo python3 setup.py install
|
||||
sudo python3 setup.py install > /dev/null 2>&1
|
||||
|
||||
# install STIX2.0 library to support STIX 2.0 export:
|
||||
sudo pip3 install stix2
|
||||
|
||||
echo "--- Retrieving CakePHP… ---"
|
||||
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
|
||||
sudo -u www-data git submodule update
|
||||
sudo -u www-data git submodule foreach git config core.filemode false
|
||||
|
||||
sudo -u www-data git submodule init > /dev/null 2>&1
|
||||
sudo -u www-data git submodule update > /dev/null 2>&1
|
||||
# Once done, install CakeResque along with its dependencies if you intend to use the built in background jobs:
|
||||
# Make composer cache happy
|
||||
mkdir /var/www/.composer ; chown www-data:www-data /var/www/.composer
|
||||
cd $PATH_TO_MISP/app
|
||||
sudo -u www-data php composer.phar require kamisama/cake-resque:4.1.2
|
||||
sudo -u www-data php composer.phar config vendor-dir Vendor
|
||||
sudo -u www-data php composer.phar install
|
||||
|
||||
sudo -u www-data php composer.phar require kamisama/cake-resque:4.1.2 > /dev/null 2>&1
|
||||
sudo -u www-data php composer.phar config vendor-dir Vendor > /dev/null 2>&1
|
||||
sudo -u www-data php composer.phar install > /dev/null 2>&1
|
||||
# Enable CakeResque with php-redis
|
||||
sudo phpenmod redis
|
||||
|
||||
# To use the scheduler worker for scheduled tasks, do the following:
|
||||
sudo -u www-data cp -fa $PATH_TO_MISP/INSTALL/setup/config.php $PATH_TO_MISP/app/Plugin/CakeResque/Config/config.php
|
||||
|
||||
echo "--- Setting the permissions… ---"
|
||||
|
||||
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
|
||||
sudo chmod -R g+ws $PATH_TO_MISP/app/files
|
||||
sudo chmod -R g+ws $PATH_TO_MISP/app/files/scripts/tmp
|
||||
|
||||
echo "--- Creating a database user… ---"
|
||||
|
||||
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';"
|
||||
sudo mysql -u $DBUSER_ADMIN -p$DBPASSWORD_ADMIN -e "flush privileges;"
|
||||
|
||||
# Import the empty MISP database from MYSQL.sql
|
||||
sudo -u www-data cat /var/www/MISP/INSTALL/MYSQL.sql | mysql -u $DBUSER_MISP -p$DBPASSWORD_MISP $DBNAME
|
||||
|
||||
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 "--- Add a VirtualHost for MISP ---"
|
||||
cat > /etc/apache2/sites-available/misp-ssl.conf <<EOF
|
||||
<VirtualHost *:80>
|
||||
ServerName misp.local
|
||||
|
||||
Redirect permanent / https://$FQDN
|
||||
|
||||
LogLevel warn
|
||||
ErrorLog /var/log/apache2/misp.local_error.log
|
||||
CustomLog /var/log/apache2/misp.local_access.log combined
|
||||
ServerSignature Off
|
||||
</VirtualHost>
|
||||
|
||||
<VirtualHost *:443>
|
||||
ServerAdmin me@me.local
|
||||
ServerName misp.local
|
||||
DocumentRoot $PATH_TO_MISP/app/webroot
|
||||
|
||||
<Directory $PATH_TO_MISP/app/webroot>
|
||||
Options -Indexes
|
||||
AllowOverride all
|
||||
Require all granted
|
||||
</Directory>
|
||||
|
||||
SSLEngine On
|
||||
SSLCertificateFile /etc/ssl/private/misp.local.crt
|
||||
SSLCertificateKeyFile /etc/ssl/private/misp.local.key
|
||||
#SSLCertificateChainFile /etc/ssl/private/misp-chain.crt
|
||||
|
||||
LogLevel warn
|
||||
ErrorLog /var/log/apache2/misp.local_error.log
|
||||
CustomLog /var/log/apache2/misp.local_access.log combined
|
||||
ServerSignature Off
|
||||
</VirtualHost>
|
||||
EOF
|
||||
|
||||
# activate new vhost
|
||||
sudo a2dissite default-ssl
|
||||
sudo a2ensite misp-ssl
|
||||
|
||||
echo "--- Restarting Apache ---"
|
||||
sudo systemctl restart apache2 > /dev/null 2>&1
|
||||
|
||||
|
@ -243,7 +230,6 @@ sudo -u www-data cp -a $PATH_TO_MISP/app/Config/bootstrap.default.php /var/www/M
|
|||
sudo -u www-data cp -a $PATH_TO_MISP/app/Config/database.default.php /var/www/MISP/app/Config/database.php
|
||||
sudo -u www-data cp -a $PATH_TO_MISP/app/Config/core.default.php /var/www/MISP/app/Config/core.php
|
||||
sudo -u www-data cp -a $PATH_TO_MISP/app/Config/config.default.php /var/www/MISP/app/Config/config.php
|
||||
|
||||
sudo -u www-data cat > $PATH_TO_MISP/app/Config/database.php <<EOF
|
||||
<?php
|
||||
class DATABASE_CONFIG {
|
||||
|
@ -262,31 +248,222 @@ class DATABASE_CONFIG {
|
|||
);
|
||||
}
|
||||
EOF
|
||||
|
||||
# and make sure the file permissions are still OK
|
||||
sudo chown -R www-data:www-data $PATH_TO_MISP/app/Config
|
||||
sudo chmod -R 750 $PATH_TO_MISP/app/Config
|
||||
|
||||
# Set some MISP directives with the command line tool
|
||||
##sudo $PATH_TO_MISP/app/Console/cake Baseurl ""
|
||||
##sudo -u www-data /var/www/MISP/app/Console/cake Baseurl http://
|
||||
sudo $PATH_TO_MISP/app/Console/cake Live 1
|
||||
#sudo $PATH_TO_MISP/app/Console/cake org MISP-CLOUD
|
||||
#sudo $PATH_TO_MISP/app/Console/cake showorg 1
|
||||
#sudo $PATH_TO_MISP/app/Console/cake background_jobs 1
|
||||
# Create Terms and Conditions File
|
||||
#echo "Don't use this image in production." > $PATH_TO_MISP/app/files/terms/training
|
||||
#sudo $PATH_TO_MISP/app/Console/cake terms_file training
|
||||
#sudo $PATH_TO_MISP/app/Console/cake terms_download 0
|
||||
#sudo $PATH_TO_MISP/app/Console/cake disable_emailing 1
|
||||
# Logs
|
||||
#sudo $PATH_TO_MISP/app/Console/cake log_client_ip 1
|
||||
#sudo $PATH_TO_MISP/app/Console/cake log_auth 1
|
||||
# Footer
|
||||
#sudo $PATH_TO_MISP/app/Console/cake footermidright "Powered by MISP | MISP-CLOUD"
|
||||
#sudo $PATH_TO_MISP/app/Console/cake footermidleft "https://github.com/0xtf/misp-cloud"
|
||||
$CAKE Live $MISP_LIVE > /dev/null
|
||||
|
||||
echo "--- Making the background workers start on boot… ---"
|
||||
# Enable ZeroMQ
|
||||
$CAKE Admin setSetting "Plugin.ZeroMQ_enable" true > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.ZeroMQ_event_notifications_enable" true > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.ZeroMQ_object_notifications_enable" true > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.ZeroMQ_object_reference_notifications_enable" true > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.ZeroMQ_attribute_notifications_enable" true > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.ZeroMQ_sighting_notifications_enable" true > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.ZeroMQ_user_notifications_enable" true > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.ZeroMQ_organisation_notifications_enable" true > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.ZeroMQ_port" 50000 > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.ZeroMQ_redis_host" "localhost" > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.ZeroMQ_redis_port" 6379 > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.ZeroMQ_redis_database" 1 > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.ZeroMQ_redis_namespace" "mispq" > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.ZeroMQ_include_attachments" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.ZeroMQ_tag_notifications_enable" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.ZeroMQ_audit_notifications_enable" false > /dev/null
|
||||
|
||||
# Enable GnuPG
|
||||
$CAKE Admin setSetting "GnuPG.email" "admin@admin.test" > /dev/null
|
||||
$CAKE Admin setSetting "GnuPG.homedir" ${PATH_TO_MISP}/.gnupg > /dev/null
|
||||
$CAKE Admin setSetting "GnuPG.binary" `which gpg` > /dev/null
|
||||
$CAKE Admin setSetting "GnuPG.password" "Password1234" > /dev/null
|
||||
|
||||
# Enable Enrichment set better timeouts
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_services_enable" true > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_hover_enable" true > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_timeout" 300 > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_hover_timeout" 150 > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_cve_enabled" true > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_dns_enabled" true > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_services_url" "http://127.0.0.1" > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_services_port" 6666 > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_vmray_submit_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_asn_history_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_circl_passivedns_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_circl_passivessl_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_countrycode_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_domaintools_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_eupi_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_farsight_passivedns_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_ipasn_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_passivetotal_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_sourcecache_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_virustotal_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_whois_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_shodan_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_reversedns_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_geoip_country_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_wiki_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_iprep_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_threatminer_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_otx_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_threatcrowd_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_vulndb_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_crowdstrike_falcon_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_yara_syntax_validator_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_hashdd_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_onyphe_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_onyphe_full_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_rbl_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_xforceexchange_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Enrichment_xforceexchange_enabled" false > /dev/null
|
||||
|
||||
# Enable Import modules set better timout
|
||||
$CAKE Admin setSetting "Plugin.Import_services_enable" true > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Import_services_url" "http://127.0.0.1" > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Import_services_port" 6666 > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Import_timeout" 300 > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Import_ocr_enabled" true > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Import_csvimport_enabled" true > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Import_vmray_import_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Import_testimport_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Import_ocr_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Import_cuckooimport_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Import_goamlimport_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Import_email_import_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Import_mispjson_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Import_openiocimport_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Import_threatanalyzer_import_enabled" false > /dev/null
|
||||
|
||||
# Enable Export modules set better timout
|
||||
$CAKE Admin setSetting "Plugin.Export_services_enable" true > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Export_services_url" "http://127.0.0.1" > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Export_services_port" 6666 > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Export_timeout" 300 > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Export_pdfexport_enabled" true > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Export_testexport_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Export_testexport_restrict" 1 > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Export_cef_export_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Export_liteexport_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Export_goamlexport_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Export_threat_connect_export_enabled" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Export_threatStream_misp_export_enabled" false > /dev/null
|
||||
|
||||
|
||||
# Enable installer org and tune some configurables
|
||||
$CAKE Admin setSetting "MISP.host_org_id" 1 > /dev/null
|
||||
$CAKE Admin setSetting "MISP.email" "info@admin.test" > /dev/null
|
||||
$CAKE Admin setSetting "MISP.disable_emailing" true > /dev/null
|
||||
$CAKE Admin setSetting "MISP.contact" "info@admin.test" > /dev/null
|
||||
$CAKE Admin setSetting "MISP.disablerestalert" true > /dev/null
|
||||
$CAKE Admin setSetting "MISP.showCorrelationsOnIndex" true > /dev/null
|
||||
|
||||
# Provisional Cortex tunes
|
||||
$CAKE Admin setSetting "Plugin.Cortex_services_enable" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Cortex_services_url" "http://127.0.0.1" > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Cortex_services_port" 9000 > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Cortex_timeout" 120 > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Cortex_services_url" "http://127.0.0.1" > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Cortex_services_port" 9000 > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Cortex_services_timeout" 120 > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Cortex_services_authkey" "" > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Cortex_ssl_verify_peer" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Cortex_ssl_verify_host" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Cortex_ssl_allow_self_signed" true > /dev/null
|
||||
|
||||
# Provisional Elastic Search tunes
|
||||
$CAKE Admin setSetting "Plugin.ElasticSearch_logging_enable" false > /dev/null
|
||||
|
||||
# Various plugin sightings settings
|
||||
$CAKE Admin setSetting "Plugin.Sightings_policy" 0 > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Sightings_anonymise" false > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.Sightings_range" 365 > /dev/null
|
||||
|
||||
# Plugin CustomAuth tuneable
|
||||
$CAKE Admin setSetting "Plugin.CustomAuth_disable_logout" false > /dev/null
|
||||
|
||||
# RPZ Plugin settings
|
||||
|
||||
$CAKE Admin setSetting "Plugin.RPZ_policy" "DROP" > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.RPZ_walled_garden" "127.0.0.1" > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.RPZ_serial" "\$date00" > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.RPZ_refresh" "2h" > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.RPZ_retry" "30m" > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.RPZ_expiry" "30d" > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.RPZ_minimum_ttl" "1h" > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.RPZ_ttl" "1w" > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.RPZ_ns" "localhost." > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.RPZ_ns_alt" "" > /dev/null
|
||||
$CAKE Admin setSetting "Plugin.RPZ_email" "root.localhost" > /dev/null
|
||||
|
||||
# Force defaults to make MISP Server Settings less RED
|
||||
$CAKE Admin setSetting "MISP.language" "eng" > /dev/null
|
||||
$CAKE Admin setSetting "MISP.proposals_block_attributes" false > /dev/null
|
||||
## Redis block
|
||||
$CAKE Admin setSetting "MISP.redis_host" "127.0.0.1" > /dev/null
|
||||
$CAKE Admin setSetting "MISP.redis_port" 6379 > /dev/null
|
||||
$CAKE Admin setSetting "MISP.redis_database" 13 > /dev/null
|
||||
$CAKE Admin setSetting "MISP.redis_password" "" > /dev/null
|
||||
|
||||
# Force defaults to make MISP Server Settings less YELLOW
|
||||
$CAKE Admin setSetting "MISP.ssdeep_correlation_threshold" 40 > /dev/null
|
||||
$CAKE Admin setSetting "MISP.extended_alert_subject" false > /dev/null
|
||||
$CAKE Admin setSetting "MISP.default_event_threat_level" 4 > /dev/null
|
||||
$CAKE Admin setSetting "MISP.newUserText" "Dear new MISP user,\\n\\nWe would hereby like to welcome you to the \$org MISP community.\\n\\n Use the credentials below to log into MISP at \$misp, where you will be prompted to manually change your password to something of your own choice.\\n\\nUsername: \$username\\nPassword: \$password\\n\\nIf you have any questions, don't hesitate to contact us at: \$contact.\\n\\nBest regards,\\nYour \$org MISP support team" > /dev/null
|
||||
$CAKE Admin setSetting "MISP.passwordResetText" "Dear MISP user,\\n\\nA password reset has been triggered for your account. Use the below provided temporary password to log into MISP at \$misp, where you will be prompted to manually change your password to something of your own choice.\\n\\nUsername: \$username\\nYour temporary password: \$password\\n\\nIf you have any questions, don't hesitate to contact us at: \$contact.\\n\\nBest regards,\\nYour \$org MISP support team" > /dev/null
|
||||
$CAKE Admin setSetting "MISP.enableEventBlacklisting" true > /dev/null
|
||||
$CAKE Admin setSetting "MISP.enableOrgBlacklisting" true > /dev/null
|
||||
$CAKE Admin setSetting "MISP.log_client_ip" false > /dev/null
|
||||
$CAKE Admin setSetting "MISP.log_auth" false > /dev/null
|
||||
$CAKE Admin setSetting "MISP.disableUserSelfManagement" false > /dev/null
|
||||
$CAKE Admin setSetting "MISP.block_event_alert" false > /dev/null
|
||||
$CAKE Admin setSetting "MISP.block_event_alert_tag" "no-alerts=\"true\"" > /dev/null
|
||||
$CAKE Admin setSetting "MISP.block_old_event_alert" false > /dev/null
|
||||
$CAKE Admin setSetting "MISP.block_old_event_alert_age" "" > /dev/null
|
||||
$CAKE Admin setSetting "MISP.incoming_tags_disabled_by_default" false > /dev/null
|
||||
$CAKE Admin setSetting "MISP.maintenance_message" "Great things are happening! MISP is undergoing maintenance, but will return shortly. You can contact the administration at \$email. " > /dev/null
|
||||
$CAKE Admin setSetting "MISP.footermidleft" "This is an autogenerated VM" > /dev/null
|
||||
$CAKE Admin setSetting "MISP.footermidright" "Please configure accordingly and do not use in production. 3fb8269" > /dev/null
|
||||
$CAKE Admin setSetting "MISP.welcome_text_top" "Production usage is considered harmful. Read: https://github.com/MISP/misp-cloud/wiki/MISP-and-Cloud-Security" > /dev/null
|
||||
$CAKE Admin setSetting "MISP.download_attachments_on_load" true > /dev/null
|
||||
$CAKE Admin setSetting "MISP.title_text" "MISP" > /dev/null
|
||||
$CAKE Admin setSetting "MISP.terms_download" false > /dev/null
|
||||
$CAKE Admin setSetting "MISP.showorgalternate" false > /dev/null
|
||||
$CAKE Admin setSetting "MISP.event_view_filter_fields" "id, uuid, value, comment, type, category, Tag.name" > /dev/null
|
||||
|
||||
# Force defaults to make MISP Server Settings less GREEN
|
||||
$CAKE Admin setSetting "Security.password_policy_length" 12 > /dev/null
|
||||
$CAKE Admin setSetting "Security.password_policy_complexity" '/^((?=.*\d)|(?=.*\W+))(?![\n])(?=.*[A-Z])(?=.*[a-z]).*$|.{16,}/' > /dev/null
|
||||
|
||||
# Tune global time outs
|
||||
$CAKE Admin setSetting "Session.autoRegenerate" 0 > /dev/null
|
||||
$CAKE Admin setSetting "Session.timeout" 600 > /dev/null
|
||||
$CAKE Admin setSetting "Session.cookie_timeout" 3600 > /dev/null
|
||||
|
||||
echo "--- Generating a GPG encryption key ---"
|
||||
sudo apt-get install -y rng-tools haveged > /dev/null 2>&1
|
||||
sudo -u www-data mkdir $PATH_TO_MISP/.gnupg
|
||||
sudo chmod 700 $PATH_TO_MISP/.gnupg
|
||||
cat >/tmp/gen-key-script <<EOF
|
||||
%echo Generating a default key
|
||||
Key-Type: default
|
||||
Key-Length: $GPG_KEY_LENGTH
|
||||
Subkey-Type: default
|
||||
Name-Real: $GPG_REAL_NAME
|
||||
Name-Comment: $GPG_COMMENT
|
||||
Name-Email: $GPG_EMAIL_ADDRESS
|
||||
Expire-Date: 0
|
||||
Passphrase: $GPG_PASSPHRASE
|
||||
# Do a commit here, so that we can later print "done"
|
||||
%commit
|
||||
%echo done
|
||||
EOF
|
||||
sudo -u www-data gpg --homedir $PATH_TO_MISP/.gnupg --batch --gen-key /tmp/gen-key-script
|
||||
rm /tmp/gen-key-script
|
||||
# And export the public key to the webroot
|
||||
sudo -u www-data sh -c "gpg --homedir $PATH_TO_MISP/.gnupg --export --armor $GPG_EMAIL_ADDRESS > $PATH_TO_MISP/app/webroot/gpg.asc"
|
||||
|
||||
echo "--- Making the background workers start on boot ---"
|
||||
sudo chmod 755 $PATH_TO_MISP/app/Console/worker/start.sh
|
||||
|
||||
# With initd:
|
||||
|
@ -294,47 +471,92 @@ if [ ! -e /etc/rc.local ]
|
|||
then
|
||||
echo '#!/bin/sh -e' | sudo tee -a /etc/rc.local
|
||||
echo 'exit 0' | sudo tee -a /etc/rc.local
|
||||
sudo chmod u+x /etc/rc.local
|
||||
chmod u+x /etc/rc.local
|
||||
fi
|
||||
sudo sed -i -e '$i \sudo -u www-data bash /var/www/MISP/app/Console/worker/start.sh\n' /etc/rc.local
|
||||
|
||||
echo "--- Installing ZeroMQ... ---"
|
||||
sudo pip install pyzmq
|
||||
sudo pip install redis
|
||||
# redis-server requires the following /sys/kernel tweak
|
||||
sed -i -e '$i \echo never > /sys/kernel/mm/transparent_hugepage/enabled\n' /etc/rc.local
|
||||
sed -i -e '$i \echo 1024 > /proc/sys/net/core/somaxconn\n' /etc/rc.local
|
||||
sed -i -e '$i \sysctl vm.overcommit_memory=1\n' /etc/rc.local
|
||||
sed -i -e '$i \sudo -u www-data bash /var/www/MISP/app/Console/worker/start.sh\n' /etc/rc.local
|
||||
sed -i -e '$i \sudo -u www-data misp-modules -l 0.0.0.0 -s &\n' /etc/rc.local
|
||||
sed -i -e '$i \for d in $git_dirs; do\n' /etc/rc.local
|
||||
sed -i -e '$i \ echo "Updating ${d}"\n' /etc/rc.local
|
||||
sed -i -e '$i \ cd $d && sudo git pull &\n' /etc/rc.local
|
||||
sed -i -e '$i \done\n' /etc/rc.local
|
||||
|
||||
echo "--- Installing MISP modules… ---"
|
||||
sudo apt-get install -y python3-dev python3-pip libpq5 libjpeg-dev libfuzzy-dev > /dev/null 2>&1
|
||||
echo "--- Installing MISP modules ---"
|
||||
sudo apt-get install -y libpq5 libjpeg-dev libfuzzy-dev > /dev/null 2>&1
|
||||
cd /usr/local/src/
|
||||
sudo git clone https://github.com/MISP/misp-modules.git
|
||||
cd misp-modules
|
||||
sudo pip3 install -I -r REQUIREMENTS
|
||||
sudo pip3 install -I .
|
||||
sudo pip3 install lief
|
||||
sudo pip3 install pymisp python-magic
|
||||
sudo pip3 install git+https://github.com/kbandla/pydeep.git
|
||||
sudo pip install pymisp python-magic
|
||||
sudo pip install git+https://github.com/kbandla/pydeep.git
|
||||
sudo pip install lief
|
||||
# With initd:
|
||||
sudo sed -i -e '$i \sudo -u www-data misp-modules -l 0.0.0.0 -s &\n' /etc/rc.local
|
||||
|
||||
echo "--- Restarting Apache… ---"
|
||||
# pip3 install
|
||||
sudo pip3 install -I -r REQUIREMENTS > /dev/null 2>&1
|
||||
sudo pip3 install -I . > /dev/null 2>&1
|
||||
sudo pip3 install lief 2>&1
|
||||
sudo pip3 install maec 2>&1
|
||||
sudo pip3 install pathlib 2>&1
|
||||
sudo pip3 install pymisp python-magic wand yara > /dev/null 2>&1
|
||||
sudo pip3 install git+https://github.com/kbandla/pydeep.git > /dev/null 2>&1
|
||||
|
||||
# install STIX2.0 library to support STIX 2.0 export:
|
||||
sudo pip3 install stix2 > /dev/null 2>&1
|
||||
|
||||
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
|
||||
sudo chmod -R g+ws $PATH_TO_MISP/app/files
|
||||
sudo chmod -R g+ws $PATH_TO_MISP/app/files/scripts/tmp
|
||||
|
||||
echo "--- Restarting Apache ---"
|
||||
sudo systemctl restart apache2 > /dev/null 2>&1
|
||||
sleep 5
|
||||
|
||||
echo "--- Updating the galaxies… ---"
|
||||
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)
|
||||
echo "--- Updating the galaxies… ---"
|
||||
curl --header "Authorization: $AUTH_KEY" --header "Accept: application/json" --header "Content-Type: application/json" -o /dev/null -s -X POST http://127.0.0.1/galaxies/update
|
||||
# Update the galaxies
|
||||
$CAKE Admin updateGalaxies > /dev/null 2>&1
|
||||
|
||||
echo "--- Updating the taxonomies… ---"
|
||||
curl --header "Authorization: $AUTH_KEY" --header "Accept: application/json" --header "Content-Type: application/json" -o /dev/null -s -X POST http://127.0.0.1/taxonomies/update
|
||||
# Updating the taxonomies
|
||||
$CAKE Admin updateTaxonomies > /dev/null 2>&1
|
||||
|
||||
echo "--- Updating the warning lists… ---"
|
||||
curl --header "Authorization: $AUTH_KEY" --header "Accept: application/json" --header "Content-Type: application/json" -o /dev/null -s -X POST http://127.0.0.1/warninglists/update
|
||||
# Updating the warning lists
|
||||
## $CAKE Admin updateWarningLists
|
||||
curl --header "Authorization: $AUTH_KEY" --header "Accept: application/json" --header "Content-Type: application/json" -o /dev/null -s -X POST http://127.0.0.1/warninglists/update > /dev/null 2>&1
|
||||
|
||||
echo "--- Updating the object templates… ---"
|
||||
curl --header "Authorization: $AUTH_KEY" --header "Accept: application/json" --header "Content-Type: application/json" -o /dev/null -s -X POST http://127.0.0.1/objectTemplates/update
|
||||
# Updating the notice lists
|
||||
## sudo $CAKE Admin updateNoticeLists
|
||||
curl --header "Authorization: $AUTH_KEY" --header "Accept: application/json" --header "Content-Type: application/json" -o /dev/null -s -X POST http://127.0.0.1/noticelists/update > /dev/null 2>&1
|
||||
|
||||
echo "Configurations finished!"
|
||||
# Updating the object templates
|
||||
##sudo $CAKE Admin updateObjectTemplates
|
||||
curl --header "Authorization: $AUTH_KEY" --header "Accept: application/json" --header "Content-Type: application/json" -o /dev/null -s -X POST http://127.0.0.1/objectTemplates/update > /dev/null 2>&1
|
||||
|
||||
echo "--- Enabling MISP new pub/sub feature (ZeroMQ) ---"
|
||||
sudo apt-get install -y pkg-config python-redis python-zmq python3-zmq > /dev/null 2>&1
|
||||
|
||||
echo "--- Installing asciidoctor-pdf ---"
|
||||
gem install asciidoctor-pdf --pre > /dev/null 2>&1
|
||||
gem install pygments.rb > /dev/null 2>&1
|
||||
|
||||
echo "--- Ignoring filemode on all submodules ---"
|
||||
cd $PATH_TO_MISP
|
||||
sudo -u www-data git submodule foreach --recursive git config core.filemode false > /dev/null 2>&1
|
||||
|
||||
echo "--- autoremove for apt ---"
|
||||
sudo apt autoremove -y > /dev/null 2>&1
|
||||
|
||||
echo "--- Setting Baseurl and making sure Sessions do NOT auto regenerate ---"
|
||||
$CAKE Baseurl "" > /dev/null 2>&1
|
||||
$CAKE Admin setSetting "Session.autoRegenerate" 0 > /dev/null 2>&1
|
||||
|
||||
echo "--- Setting the permissions ---"
|
||||
chown -R www-data:www-data $PATH_TO_MISP
|
||||
chmod -R 750 $PATH_TO_MISP
|
||||
chmod -R g+ws $PATH_TO_MISP/app/tmp
|
||||
chmod -R g+ws $PATH_TO_MISP/app/files
|
||||
chmod -R g+ws $PATH_TO_MISP/app/files/scripts/tmp
|
||||
chmod 700 $PATH_TO_MISP/.gnupg
|
||||
|
|
Loading…
Reference in New Issue