AIL-framework/installing_deps.sh

159 lines
3.3 KiB
Bash
Raw Normal View History

#!/bin/bash
# halt on errors
set -e
## bash debug mode togle below
#set -x
sudo apt-get update
sudo apt-get install python3-pip virtualenv python3-dev python3-tk libfreetype6-dev \
screen g++ python-tk unzip libsnappy-dev cmake -qq
#optional tor install
sudo apt-get install tor -qq
#Needed for bloom filters
sudo apt-get install libssl-dev libfreetype6-dev python-numpy -qq
2017-11-23 14:02:54 +01:00
#pyMISP
2018-04-11 10:14:33 +02:00
#sudo apt-get -y install python3-pip
2017-11-23 14:02:54 +01:00
2014-08-18 13:40:07 +02:00
# DNS deps
sudo apt-get install libadns1 libadns1-dev -qq
2014-08-25 14:44:40 +02:00
#Needed for redis-lvlDB
sudo apt-get install libev-dev libgmp-dev -qq
2014-08-25 14:44:40 +02:00
#Need for generate-data-flow graph
sudo apt-get install graphviz -qq
2018-05-31 15:35:20 +02:00
# install nosetests
sudo apt-get install python3-nose -qq
2018-05-31 15:35:20 +02:00
2016-07-25 11:55:14 +02:00
# ssdeep
sudo apt-get install libfuzzy-dev -qq
sudo apt-get install build-essential libffi-dev automake autoconf libtool -qq
# sflock, gz requirement
sudo apt-get install p7zip-full -qq
# REDIS #
test ! -d redis/ && git clone https://github.com/antirez/redis.git
2014-08-18 13:40:07 +02:00
pushd redis/
git checkout 5.0
make
2014-08-18 13:40:07 +02:00
popd
2016-07-19 18:13:25 +02:00
# Faup
2016-07-25 11:38:41 +02:00
test ! -d faup/ && git clone https://github.com/stricaud/faup.git
2016-07-19 18:13:25 +02: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
# tlsh
test ! -d tlsh && git clone https://github.com/trendmicro/tlsh.git
pushd tlsh/
./make.sh
2016-09-14 15:27:08 +02:00
pushd build/release/
sudo make install
sudo ldconfig
popd
popd
2019-05-20 14:48:20 +02: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 14:50:40 +02:00
# ARDB #
test ! -d ardb/ && git clone https://github.com/yinqiwen/ardb.git
pushd ardb/
make
2014-08-18 13:40:07 +02:00
popd
if [ ! -f configs/core.cfg ]; then
cp configs/core.cfg.sample configs/core.cfg
fi
2016-07-25 11:38:41 +02:00
if [ -z "$VIRTUAL_ENV" ]; then
2014-08-22 14:52:02 +02:00
2018-04-11 10:14:33 +02:00
virtualenv -p python3 AILENV
2016-07-25 11:38:41 +02:00
echo export AIL_HOME=$(pwd) >> ./AILENV/bin/activate
echo export AIL_BIN=$(pwd)/bin/ >> ./AILENV/bin/activate
echo export AIL_FLASK=$(pwd)/var/www/ >> ./AILENV/bin/activate
echo export AIL_REDIS=$(pwd)/redis/src/ >> ./AILENV/bin/activate
2018-05-07 14:50:40 +02:00
echo export AIL_ARDB=$(pwd)/ardb/src/ >> ./AILENV/bin/activate
2014-08-22 14:52:02 +02:00
2016-07-25 11:38:41 +02:00
. ./AILENV/bin/activate
fi
2014-08-22 14:52:02 +02:00
2019-06-24 14:37:52 +02:00
pushd ${AIL_BIN}helper/gen_cert
2019-06-24 13:57:08 +02:00
./gen_root.sh
wait
./gen_cert.sh
wait
popd
2019-06-24 14:37:52 +02: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 13:57:08 +02:00
2019-06-24 14:37:52 +02:00
pushd ${AIL_FLASK}
./update_thirdparty.sh
popd
2018-10-02 16:04:47 +02:00
mkdir -p $AIL_HOME/PASTES
2018-04-11 10:14:33 +02:00
pip3 install -U pip
pip3 install 'git+https://github.com/D4-project/BGP-Ranking.git/@7e698f87366e6f99b4d0d11852737db28e3ddc62#egg=pybgpranking&subdirectory=client'
2019-05-03 17:02:56 +02:00
pip3 install -U -r requirements.txt
2014-08-22 14:52:02 +02:00
2016-07-19 18:13:25 +02:00
# Pyfaup
pushd faup/src/lib/bindings/python/
2018-04-11 10:14:33 +02:00
python3 setup.py install
2016-07-19 18:13:25 +02:00
popd
# Py tlsh
pushd tlsh/py_ext
2018-04-11 10:14:33 +02:00
python3 setup.py build
python3 setup.py install
2016-07-19 18:13:25 +02:00
2016-08-23 17:51:04 +02:00
# Download the necessary NLTK corpora and sentiment vader
2018-04-11 10:14:33 +02:00
HOME=$(pwd) python3 -m textblob.download_corpora
python3 -m nltk.downloader vader_lexicon
python3 -m nltk.downloader punkt
2019-06-24 13:57:08 +02:00
popd
#Create the file all_module and update the graph in doc
$AIL_HOME/doc/generate_modules_data_flow_graph.sh
2019-06-24 13:57:08 +02:00
#### DB SETUP ####
# init update version
git describe --abbrev=0 --tags | tr -d '\n' > ${AIL_HOME}/update/current_version
2019-06-24 13:57:08 +02:00
# LAUNCH ARDB
2019-06-24 14:37:52 +02:00
bash ${AIL_BIN}LAUNCH.sh -lav &
2019-06-24 13:57:08 +02:00
wait
echo ""
# create default user
pushd ${AIL_FLASK}
python3 create_default_user.py
popd
2019-06-24 14:37:52 +02:00
bash ${AIL_BIN}LAUNCH.sh -k &
2019-06-24 13:57:08 +02:00
wait
echo ""