2014-08-06 09:43:40 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2019-05-01 11:49:07 +00:00
|
|
|
# halt on errors
|
2014-08-06 09:43:40 +00:00
|
|
|
set -e
|
2019-05-01 11:49:07 +00:00
|
|
|
|
|
|
|
## bash debug mode togle below
|
|
|
|
#set -x
|
2014-08-06 09:43:40 +00:00
|
|
|
|
|
|
|
sudo apt-get update
|
|
|
|
|
2018-12-11 15:55:47 +00:00
|
|
|
sudo apt-get install python3-pip virtualenv python3-dev python3-tk libfreetype6-dev \
|
2019-05-01 11:49:07 +00:00
|
|
|
screen g++ python-tk unzip libsnappy-dev cmake -qq
|
2014-08-11 07:36:28 +00:00
|
|
|
|
2018-04-09 12:09:15 +00:00
|
|
|
#optional tor install
|
2019-05-01 11:49:07 +00:00
|
|
|
sudo apt-get install tor -qq
|
2018-04-09 12:09:15 +00:00
|
|
|
|
2014-08-11 07:36:28 +00:00
|
|
|
#Needed for bloom filters
|
2019-05-01 11:49:07 +00:00
|
|
|
sudo apt-get install libssl-dev libfreetype6-dev python-numpy -qq
|
2014-08-11 07:36:28 +00:00
|
|
|
|
2017-11-23 13:02:54 +00:00
|
|
|
#pyMISP
|
2018-04-11 08:14:33 +00:00
|
|
|
#sudo apt-get -y install python3-pip
|
2017-11-23 13:02:54 +00:00
|
|
|
|
2014-08-18 11:40:07 +00:00
|
|
|
# DNS deps
|
2019-05-01 11:49:07 +00:00
|
|
|
sudo apt-get install libadns1 libadns1-dev -qq
|
2014-08-11 07:36:28 +00:00
|
|
|
|
2014-08-25 12:44:40 +00:00
|
|
|
#Needed for redis-lvlDB
|
2019-05-01 11:49:07 +00:00
|
|
|
sudo apt-get install libev-dev libgmp-dev -qq
|
2014-08-25 12:44:40 +00:00
|
|
|
|
2016-08-24 09:32:48 +00:00
|
|
|
#Need for generate-data-flow graph
|
2019-05-01 11:49:07 +00:00
|
|
|
sudo apt-get install graphviz -qq
|
2016-08-24 09:32:48 +00:00
|
|
|
|
2018-05-31 13:35:20 +00:00
|
|
|
# install nosetests
|
2019-05-01 11:49:07 +00:00
|
|
|
sudo apt-get install python3-nose -qq
|
2018-05-31 13:35:20 +00:00
|
|
|
|
2016-07-25 09:55:14 +00:00
|
|
|
# ssdeep
|
2019-05-01 11:49:07 +00:00
|
|
|
sudo apt-get install libfuzzy-dev -qq
|
|
|
|
sudo apt-get install build-essential libffi-dev automake autoconf libtool -qq
|
2014-08-11 07:36:28 +00:00
|
|
|
|
2018-06-08 14:49:20 +00:00
|
|
|
# sflock, gz requirement
|
2019-05-01 11:49:07 +00:00
|
|
|
sudo apt-get install p7zip-full -qq
|
2018-06-08 14:49:20 +00:00
|
|
|
|
2014-08-11 07:36:28 +00:00
|
|
|
# REDIS #
|
|
|
|
test ! -d redis/ && git clone https://github.com/antirez/redis.git
|
2014-08-18 11:40:07 +00:00
|
|
|
pushd redis/
|
2019-04-11 15:49:20 +00:00
|
|
|
git checkout 5.0
|
2014-08-11 07:36:28 +00:00
|
|
|
make
|
2014-08-18 11:40:07 +00:00
|
|
|
popd
|
2014-08-11 07:36:28 +00:00
|
|
|
|
2016-07-19 16:13:25 +00:00
|
|
|
# Faup
|
2016-07-25 09:38:41 +00:00
|
|
|
test ! -d faup/ && git clone https://github.com/stricaud/faup.git
|
2016-07-19 16:13:25 +00:00
|
|
|
pushd faup/
|
|
|
|
test ! -d build && mkdir build
|
|
|
|
cd build
|
|
|
|
cmake .. && make
|
|
|
|
sudo make install
|
|
|
|
echo '/usr/local/lib' | sudo tee -a /etc/ld.so.conf.d/faup.conf
|
|
|
|
sudo ldconfig
|
|
|
|
popd
|
|
|
|
|
2016-08-04 09:55:38 +00:00
|
|
|
# tlsh
|
2018-07-06 10:15:02 +00:00
|
|
|
test ! -d tlsh && git clone https://github.com/trendmicro/tlsh.git
|
2016-08-04 09:55:38 +00:00
|
|
|
pushd tlsh/
|
2016-08-17 11:46:01 +00:00
|
|
|
./make.sh
|
2016-09-14 13:27:08 +00:00
|
|
|
pushd build/release/
|
|
|
|
sudo make install
|
|
|
|
sudo ldconfig
|
|
|
|
popd
|
2016-08-04 09:55:38 +00:00
|
|
|
popd
|
|
|
|
|
2019-05-20 12:48:20 +00:00
|
|
|
# pgpdump
|
|
|
|
test ! -d pgpdump && git clone https://github.com/kazu-yamamoto/pgpdump.git
|
|
|
|
pushd pgpdump/
|
|
|
|
./configure
|
|
|
|
make
|
|
|
|
sudo make install
|
|
|
|
popd
|
|
|
|
|
2018-05-07 12:50:40 +00:00
|
|
|
# ARDB #
|
|
|
|
test ! -d ardb/ && git clone https://github.com/yinqiwen/ardb.git
|
|
|
|
pushd ardb/
|
2014-08-22 15:39:58 +00:00
|
|
|
make
|
2014-08-18 11:40:07 +00:00
|
|
|
popd
|
2014-08-11 07:36:28 +00:00
|
|
|
|
2019-11-05 14:18:03 +00:00
|
|
|
if [ ! -f configs/core.cfg ]; then
|
|
|
|
cp configs/core.cfg.sample configs/core.cfg
|
2014-08-25 12:12:06 +00:00
|
|
|
fi
|
|
|
|
|
2020-04-20 09:56:59 +00:00
|
|
|
# create AILENV + intall python packages
|
|
|
|
./install_virtualenv.sh
|
2014-08-22 12:52:02 +00:00
|
|
|
|
|
|
|
|
2019-06-24 12:37:52 +00:00
|
|
|
pushd ${AIL_BIN}helper/gen_cert
|
2019-06-24 11:57:08 +00:00
|
|
|
./gen_root.sh
|
|
|
|
wait
|
|
|
|
./gen_cert.sh
|
|
|
|
wait
|
|
|
|
popd
|
|
|
|
|
2019-06-24 12:37:52 +00:00
|
|
|
cp ${AIL_BIN}helper/gen_cert/server.crt ${AIL_FLASK}server.crt
|
|
|
|
cp ${AIL_BIN}helper/gen_cert/server.key ${AIL_FLASK}server.key
|
2019-06-24 11:57:08 +00:00
|
|
|
|
2018-10-02 14:04:47 +00:00
|
|
|
mkdir -p $AIL_HOME/PASTES
|
2014-08-11 08:41:50 +00:00
|
|
|
|
2016-10-14 12:26:33 +00:00
|
|
|
#Create the file all_module and update the graph in doc
|
|
|
|
$AIL_HOME/doc/generate_modules_data_flow_graph.sh
|
2019-06-24 11:57:08 +00:00
|
|
|
|
|
|
|
#### DB SETUP ####
|
|
|
|
|
2019-06-24 13:09:31 +00:00
|
|
|
# init update version
|
2020-04-23 08:28:47 +00:00
|
|
|
pushd ${AIL_HOME}
|
2020-05-05 08:10:11 +00:00
|
|
|
# shallow clone
|
2020-05-05 09:24:33 +00:00
|
|
|
git fetch --tags --prune --unshallow
|
2019-06-24 13:09:31 +00:00
|
|
|
git describe --abbrev=0 --tags | tr -d '\n' > ${AIL_HOME}/update/current_version
|
2020-05-05 07:48:44 +00:00
|
|
|
echo "AIL current version:"
|
|
|
|
git describe --abbrev=0 --tags
|
2020-04-23 08:28:47 +00:00
|
|
|
popd
|
2019-06-24 13:09:31 +00:00
|
|
|
|
2019-06-24 11:57:08 +00:00
|
|
|
# LAUNCH ARDB
|
2019-06-24 12:37:52 +00:00
|
|
|
bash ${AIL_BIN}LAUNCH.sh -lav &
|
2019-06-24 11:57:08 +00:00
|
|
|
wait
|
|
|
|
echo ""
|
|
|
|
|
|
|
|
# create default user
|
|
|
|
pushd ${AIL_FLASK}
|
|
|
|
python3 create_default_user.py
|
|
|
|
popd
|
|
|
|
|
2019-06-24 12:37:52 +00:00
|
|
|
bash ${AIL_BIN}LAUNCH.sh -k &
|
2019-06-24 11:57:08 +00:00
|
|
|
wait
|
|
|
|
echo ""
|