From 9603294bc0f38aac9c604ca60ac54bd0310575c7 Mon Sep 17 00:00:00 2001 From: chrisr3d Date: Thu, 26 Apr 2018 10:45:37 +0200 Subject: [PATCH] chg: Removed specific version install - Last versions of stix, cybox & mixbox librairies are now supported with the last update on stix1 export script in MISP to be merged --- scripts/bootstrap.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index e77b165..0c7b57e 100644 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -196,16 +196,13 @@ 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 cd $PATH_TO_MISP/app/files/scripts/python-cybox -sudo -u www-data git checkout v2.1.0.12 sudo python 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 python 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 cd $PATH_TO_MISP/app/files/scripts/mixbox -sudo -u www-data git checkout v1.0.2 sudo python setup.py install > /dev/null 2>&1 echo "--- Installing misp-dashboard ---"