From e5d2fa315c9c66a6211d5dcb85ffa219334d2bd6 Mon Sep 17 00:00:00 2001 From: Sascha Rommelfangen Date: Tue, 12 Feb 2019 13:49:46 +0100 Subject: [PATCH] new MISP object templates install --- faq/README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/faq/README.md b/faq/README.md index 10c88f7..1c5c4ae 100644 --- a/faq/README.md +++ b/faq/README.md @@ -166,6 +166,24 @@ There is no official procedure to uninstalling a MISP instance. If you want to re-use a machine where MISP was installed, wipe the machine and do a fresh install. Consider the data in your MISP instance as potentially confidential and if you synchronized with other instances, be respectful and wipe it clean. + +## Updating PyMISP to incorporate newer versions of the MISP object templates + +In some cases, for instance if a newer version of a MISP object is present on the server but not yet on PyMISP, you want to reflect the current state in your PyMISP installation. + +In order to do so, perform the following steps. It fetches the latest object templates and installs PyMISP again: + +``` +git clone https://github.com/MISP/PyMISP.git +cd PyMISP/pymisp/data +git submodule update --init +cd misp-objects +git pull origin master +cd ../../../ +sudo pip3 install -I . +``` + +