From fa579ceda7ce2042223c7288e80ae0accc665cb8 Mon Sep 17 00:00:00 2001 From: Steve Clement Date: Mon, 27 Apr 2020 19:12:25 +0900 Subject: [PATCH] fix: [doc] MISP expects lief 0.10.1 --- INSTALL/INSTALL.tpl.sh | 2 +- docs/INSTALL.ubuntu1804.md | 2 +- docs/generic/mail_to_misp-debian.md | 2 +- docs/generic/viper-debian.md | 2 +- docs/xINSTALL.centos6.md | 2 +- docs/xINSTALL.centos7.md | 4 ++-- docs/xINSTALL.debian10.md | 2 +- docs/xINSTALL.debian9.md | 2 +- docs/xINSTALL.tsurugi.md | 2 +- 9 files changed, 10 insertions(+), 10 deletions(-) diff --git a/INSTALL/INSTALL.tpl.sh b/INSTALL/INSTALL.tpl.sh index 97eb57dab..e181b5420 100755 --- a/INSTALL/INSTALL.tpl.sh +++ b/INSTALL/INSTALL.tpl.sh @@ -494,7 +494,7 @@ installMISPonKali () { $SUDO_WWW ${PATH_TO_MISP}/venv/bin/pip install git+https://github.com/kbandla/pydeep.git 2> /dev/null > /dev/null # install lief - $SUDO_WWW ${PATH_TO_MISP}/venv/bin/pip install https://github.com/lief-project/packages/raw/lief-master-latest/pylief-0.9.0.dev.zip 2> /dev/null > /dev/null + $SUDO_WWW ${PATH_TO_MISP}/venv/bin/pip install lief 2> /dev/null > /dev/null # install python-magic $SUDO_WWW ${PATH_TO_MISP}/venv/bin/pip install python-magic 2> /dev/null > /dev/null diff --git a/docs/INSTALL.ubuntu1804.md b/docs/INSTALL.ubuntu1804.md index 9a2935f08..c22fa2c04 100644 --- a/docs/INSTALL.ubuntu1804.md +++ b/docs/INSTALL.ubuntu1804.md @@ -181,7 +181,7 @@ installCore () { $SUDO_WWW ${PATH_TO_MISP}/venv/bin/pip install git+https://github.com/kbandla/pydeep.git # install lief - $SUDO_WWW ${PATH_TO_MISP}/venv/bin/pip install https://github.com/lief-project/packages/raw/lief-master-latest/pylief-0.9.0.dev.zip + $SUDO_WWW ${PATH_TO_MISP}/venv/bin/pip install lief # install zmq needed by mispzmq $SUDO_WWW ${PATH_TO_MISP}/venv/bin/pip install zmq redis diff --git a/docs/generic/mail_to_misp-debian.md b/docs/generic/mail_to_misp-debian.md index 68702543e..c8d758ec5 100644 --- a/docs/generic/mail_to_misp-debian.md +++ b/docs/generic/mail_to_misp-debian.md @@ -25,7 +25,7 @@ mail2misp () { sudo ldconfig cd ../../mail_to_misp $SUDO_CMD virtualenv -p python3 venv - $SUDO_CMD ./venv/bin/pip install https://github.com/lief-project/packages/raw/lief-master-latest/pylief-0.9.0.dev.zip + $SUDO_CMD ./venv/bin/pip install lief $SUDO_CMD ./venv/bin/pip install -r requirements.txt $SUDO_CMD cp mail_to_misp_config.py-example mail_to_misp_config.py ##$SUDO cp mail_to_misp_config.py-example mail_to_misp_config.py diff --git a/docs/generic/viper-debian.md b/docs/generic/viper-debian.md index 9ccf43da3..ff7be239c 100644 --- a/docs/generic/viper-debian.md +++ b/docs/generic/viper-debian.md @@ -29,7 +29,7 @@ viper () { # TODO: Check for current user install permissions $SUDO_CMD git submodule update --init --recursive echo "pip install deps" - $SUDO_CMD ./venv/bin/pip install pefile olefile jbxapi Crypto pypdns pypssl r2pipe pdftools virustotal-api SQLAlchemy PrettyTable python-magic scrapy https://github.com/lief-project/packages/raw/lief-master-latest/pylief-0.9.0.dev.zip + $SUDO_CMD ./venv/bin/pip install pefile olefile jbxapi Crypto pypdns pypssl r2pipe pdftools virustotal-api SQLAlchemy PrettyTable python-magic scrapy lief $SUDO_CMD ./venv/bin/pip install . echo 'update-modules' |/usr/local/src/viper/venv/bin/viper cd /usr/local/src/viper-web diff --git a/docs/xINSTALL.centos6.md b/docs/xINSTALL.centos6.md index da507380d..958e2b611 100644 --- a/docs/xINSTALL.centos6.md +++ b/docs/xINSTALL.centos6.md @@ -196,7 +196,7 @@ $SUDO_WWW make -j3 sudo make install cd api/python/lief_pybind11-prefix/src/lief_pybind11 $SUDO_WWW $PATH_TO_MISP/venv/bin/python setup.py install -$SUDO_WWW ${PATH_TO_MISP}/venv/bin/pip install https://github.com/lief-project/packages/raw/lief-master-latest/pylief-0.9.0.dev.zip +$SUDO_WWW ${PATH_TO_MISP}/venv/bin/pip install lief # install magic, pydeep $SUDO_WWW $PATH_TO_MISP/venv/bin/pip install -U python-magic diff --git a/docs/xINSTALL.centos7.md b/docs/xINSTALL.centos7.md index 71b2babb5..8b68f2b71 100644 --- a/docs/xINSTALL.centos7.md +++ b/docs/xINSTALL.centos7.md @@ -187,8 +187,8 @@ $SUDO_WWW scl enable devtoolset-7 'bash -c "cmake3 \ $SUDO_WWW make -j3 sudo make install cd api/python/lief_pybind11-prefix/src/lief_pybind11 -$SUDO_WWW $PATH_TO_MISP/venv/bin/python setup.py install -$SUDO_WWW ${PATH_TO_MISP}/venv/bin/pip install https://github.com/lief-project/packages/raw/lief-master-latest/pylief-0.9.0.dev.zip +$SUDO_WWW ${PATH_TO_MISP}/venv/bin/python setup.py install +$SUDO_WWW ${PATH_TO_MISP}/venv/bin/pip install lief # install magic, pydeep $SUDO_WWW $PATH_TO_MISP/venv/bin/pip install -U python-magic git+https://github.com/kbandla/pydeep.git diff --git a/docs/xINSTALL.debian10.md b/docs/xINSTALL.debian10.md index 0db801039..1e9232fda 100644 --- a/docs/xINSTALL.debian10.md +++ b/docs/xINSTALL.debian10.md @@ -172,7 +172,7 @@ $SUDO_WWW ${PATH_TO_MISP}/venv/bin/pip install . $SUDO_WWW ${PATH_TO_MISP}/venv/bin/pip install git+https://github.com/kbandla/pydeep.git # install lief -$SUDO_WWW ${PATH_TO_MISP}/venv/bin/pip install https://github.com/lief-project/packages/raw/lief-master-latest/pylief-0.9.0.dev.zip +$SUDO_WWW ${PATH_TO_MISP}/venv/bin/pip install lief # install zmq needed by mispzmq $SUDO_WWW ${PATH_TO_MISP}/venv/bin/pip install zmq redis diff --git a/docs/xINSTALL.debian9.md b/docs/xINSTALL.debian9.md index 396a250ab..e87c2acda 100644 --- a/docs/xINSTALL.debian9.md +++ b/docs/xINSTALL.debian9.md @@ -197,7 +197,7 @@ $SUDO_WWW ${PATH_TO_MISP}/venv/bin/pip install . $SUDO_WWW ${PATH_TO_MISP}/venv/bin/pip install git+https://github.com/kbandla/pydeep.git # install lief -$SUDO_WWW ${PATH_TO_MISP}/venv/bin/pip install https://github.com/lief-project/packages/raw/lief-master-latest/pylief-0.9.0.dev.zip +$SUDO_WWW ${PATH_TO_MISP}/venv/bin/pip install lief # install zmq needed by mispzmq $SUDO_WWW ${PATH_TO_MISP}/venv/bin/pip install zmq redis diff --git a/docs/xINSTALL.tsurugi.md b/docs/xINSTALL.tsurugi.md index ded127fb7..c39e1952a 100644 --- a/docs/xINSTALL.tsurugi.md +++ b/docs/xINSTALL.tsurugi.md @@ -629,7 +629,7 @@ function installMISPonTsurugi() { sudo ldconfig cd ../../mail_to_misp $SUDO_CMD virtualenv -p python3 venv - $SUDO_CMD ./venv/bin/pip install https://github.com/lief-project/packages/raw/lief-master-latest/pylief-0.9.0.dev.zip + $SUDO_CMD ./venv/bin/pip install lief $SUDO_CMD ./venv/bin/pip install -r requirements.txt $SUDO_CMD cp mail_to_misp_config.py-example mail_to_misp_config.py ##$SUDO cp mail_to_misp_config.py-example mail_to_misp_config.py