2014-08-06 09:43:40 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
set -x
|
|
|
|
|
|
|
|
sudo apt-get update
|
|
|
|
|
2014-08-22 12:52:02 +00:00
|
|
|
sudo apt-get install python-pip python-virtualenv python-dev libfreetype6-dev \
|
2016-09-08 06:02:13 +00:00
|
|
|
screen g++ python-tk unzip libsnappy-dev cmake -y
|
2014-08-11 07:36:28 +00:00
|
|
|
|
|
|
|
#Needed for bloom filters
|
2016-09-08 06:02:13 +00:00
|
|
|
sudo apt-get install libssl-dev libfreetype6-dev python-numpy -y
|
2014-08-11 07:36:28 +00:00
|
|
|
|
2017-11-23 13:02:54 +00:00
|
|
|
#pyMISP
|
|
|
|
sudo apt-get -y install python3-pip
|
|
|
|
sudo pip3 install pymisp
|
|
|
|
|
2014-08-18 11:40:07 +00:00
|
|
|
# DNS deps
|
2016-09-08 06:02:13 +00:00
|
|
|
sudo apt-get install libadns1 libadns1-dev -y
|
2014-08-11 07:36:28 +00:00
|
|
|
|
2014-08-25 12:44:40 +00:00
|
|
|
#Needed for redis-lvlDB
|
2016-09-08 06:02:13 +00:00
|
|
|
sudo apt-get install libev-dev libgmp-dev -y
|
2014-08-25 12:44:40 +00:00
|
|
|
|
2016-08-24 09:32:48 +00:00
|
|
|
#Need for generate-data-flow graph
|
2016-09-08 06:02:13 +00:00
|
|
|
sudo apt-get install graphviz -y
|
2016-08-24 09:32:48 +00:00
|
|
|
|
2014-08-11 07:36:28 +00:00
|
|
|
#needed for mathplotlib
|
2015-07-27 09:48:21 +00:00
|
|
|
sudo easy_install -U distribute
|
2016-07-25 09:55:14 +00:00
|
|
|
# ssdeep
|
|
|
|
sudo apt-get install libfuzzy-dev
|
2016-10-14 12:26:33 +00:00
|
|
|
sudo apt-get install build-essential libffi-dev automake autoconf libtool -y
|
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/
|
2016-07-19 16:13:25 +00:00
|
|
|
git checkout 3.2
|
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
|
|
|
|
test ! -d tlsh && git clone git://github.com/trendmicro/tlsh.git
|
|
|
|
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
|
|
|
|
|
2014-08-11 07:36:28 +00:00
|
|
|
# REDIS LEVEL DB #
|
|
|
|
test ! -d redis-leveldb/ && git clone https://github.com/KDr2/redis-leveldb.git
|
2014-08-18 11:40:07 +00:00
|
|
|
pushd redis-leveldb/
|
2014-08-11 07:36:28 +00:00
|
|
|
git submodule init
|
|
|
|
git submodule update
|
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
|
|
|
|
2014-08-25 12:12:06 +00:00
|
|
|
if [ ! -f bin/packages/config.cfg ]; then
|
|
|
|
cp bin/packages/config.cfg.sample bin/packages/config.cfg
|
|
|
|
fi
|
|
|
|
|
2016-07-25 09:38:41 +00:00
|
|
|
pushd var/www/
|
|
|
|
./update_thirdparty.sh
|
|
|
|
popd
|
2014-08-22 12:52:02 +00:00
|
|
|
|
2016-07-25 09:38:41 +00:00
|
|
|
if [ -z "$VIRTUAL_ENV" ]; then
|
2014-08-22 12:52:02 +00:00
|
|
|
|
2016-07-25 09:38:41 +00:00
|
|
|
virtualenv AILENV
|
2014-08-06 09:43:40 +00:00
|
|
|
|
2016-07-25 09:38:41 +00: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 12:52:02 +00:00
|
|
|
|
2016-07-25 09:38:41 +00:00
|
|
|
. ./AILENV/bin/activate
|
|
|
|
|
|
|
|
fi
|
2014-08-22 12:52:02 +00:00
|
|
|
|
2017-08-21 11:48:02 +00:00
|
|
|
year1=20`date +%y`
|
2014-08-22 12:52:02 +00:00
|
|
|
mkdir -p $AIL_HOME/{PASTES,Blooms,dumps}
|
2017-08-21 11:48:02 +00:00
|
|
|
mkdir -p $AIL_HOME/LEVEL_DB_DATA/$year1
|
2014-08-11 08:41:50 +00:00
|
|
|
|
2016-02-04 14:24:18 +00:00
|
|
|
pip install -U pip
|
2016-07-25 09:38:41 +00:00
|
|
|
pip install -U -r pip_packages_requirement.txt
|
2014-08-22 12:52:02 +00:00
|
|
|
|
2016-07-19 16:13:25 +00:00
|
|
|
# Pyfaup
|
|
|
|
pushd faup/src/lib/bindings/python/
|
|
|
|
python setup.py install
|
|
|
|
popd
|
|
|
|
|
2016-08-04 09:55:38 +00:00
|
|
|
# Py tlsh
|
|
|
|
pushd tlsh/py_ext
|
|
|
|
python setup.py build
|
|
|
|
python setup.py install
|
2016-07-19 16:13:25 +00:00
|
|
|
|
2016-08-23 15:51:04 +00:00
|
|
|
# Download the necessary NLTK corpora and sentiment vader
|
2014-08-22 12:52:02 +00:00
|
|
|
HOME=$(pwd) python -m textblob.download_corpora
|
2016-08-23 15:51:04 +00:00
|
|
|
python -m nltk.downloader vader_lexicon
|
2016-10-27 07:05:56 +00:00
|
|
|
python -m nltk.downloader punkt
|
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
|