AIL-framework/installing_deps.sh

120 lines
2.7 KiB
Bash
Raw Normal View History

#!/bin/bash
set -e
set -x
sudo apt-get update
2018-04-11 10:14:33 +02:00
sudo apt-get install python3-pip python3-virtualenv python3-dev libfreetype6-dev \
screen g++ python-tk unzip libsnappy-dev cmake -y
#optional tor install
sudo apt-get install tor
#Needed for bloom filters
sudo apt-get install libssl-dev libfreetype6-dev python-numpy -y
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 -y
2014-08-25 14:44:40 +02:00
#Needed for redis-lvlDB
sudo apt-get install libev-dev libgmp-dev -y
2014-08-25 14:44:40 +02:00
#Need for generate-data-flow graph
sudo apt-get install graphviz -y
#needed for mathplotlib
sudo easy_install -U distribute
2016-07-25 11:55:14 +02:00
# ssdeep
sudo apt-get install libfuzzy-dev
sudo apt-get install build-essential libffi-dev automake autoconf libtool -y
# REDIS #
test ! -d redis/ && git clone https://github.com/antirez/redis.git
2014-08-18 13:40:07 +02:00
pushd redis/
2016-07-19 18:13:25 +02:00
git checkout 3.2
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 git://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
# REDIS LEVEL DB #
test ! -d redis-leveldb/ && git clone https://github.com/KDr2/redis-leveldb.git
2014-08-18 13:40:07 +02:00
pushd redis-leveldb/
git submodule init
git submodule update
make
2014-08-18 13:40:07 +02:00
popd
if [ ! -f bin/packages/config.cfg ]; then
cp bin/packages/config.cfg.sample bin/packages/config.cfg
fi
2016-07-25 11:38:41 +02:00
pushd var/www/
2018-04-11 10:14:33 +02:00
sudo ./update_thirdparty.sh
2016-07-25 11:38:41 +02:00
popd
2014-08-22 14:52:02 +02:00
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
echo export AIL_LEVELDB=$(pwd)/redis-leveldb/ >> ./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
year1=20`date +%y`
year2=20`date --date='-1 year' +%y`
2014-08-22 14:52:02 +02:00
mkdir -p $AIL_HOME/{PASTES,Blooms,dumps}
mkdir -p $AIL_HOME/LEVEL_DB_DATA/{$year1,$year2}
2018-04-11 10:14:33 +02:00
pip3 install -U pip
pip3 install -U -r pip3_packages_requirement.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
#python setup.py build
#python setup.py install
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
#Create the file all_module and update the graph in doc
$AIL_HOME/doc/generate_modules_data_flow_graph.sh