mirror of https://github.com/MISP/mail_to_misp
new: Add easy install
parent
864764abc4
commit
f3bf811237
21
README.md
21
README.md
|
@ -133,6 +133,27 @@ Obviously, you would like to filter mails based on subject or from address and p
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
|
|
||||||
|
### The easy way
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Install faup
|
||||||
|
git clone git://github.com/stricaud/faup.git
|
||||||
|
cd faup
|
||||||
|
mkdir build
|
||||||
|
cd build
|
||||||
|
cmake .. && make
|
||||||
|
sudo make install
|
||||||
|
|
||||||
|
# Update Shared libs
|
||||||
|
sudo ldconfig
|
||||||
|
|
||||||
|
# Install other python requirements
|
||||||
|
pip3 install -r requirements.txt
|
||||||
|
|
||||||
|
# Test if the script is working
|
||||||
|
./mail_to_misp.py -h
|
||||||
|
```
|
||||||
|
|
||||||
### General
|
### General
|
||||||
|
|
||||||
- mail_to_misp requires access to a MISP instance (via API).
|
- mail_to_misp requires access to a MISP instance (via API).
|
||||||
|
|
Loading…
Reference in New Issue