PyMISP/examples/feed-generator-from-redis/README.md

21 lines
399 B
Markdown
Raw Normal View History

2018-03-08 12:01:35 +01:00
# What
This python script can be used to generate a MISP feed based on data stored in redis.
# Installation
````
2018-03-12 15:34:12 +01:00
# Feed generator
2018-03-08 12:01:35 +01:00
git clone https://github.com/CIRCL/PyMISP
cd examples/feed-generator-from-redis
2018-03-12 15:34:12 +01:00
cp settings.default.py settings.py
2018-03-09 15:39:19 +01:00
vi settings.py # adjust your settings
2018-03-12 15:34:12 +01:00
2018-03-09 15:39:19 +01:00
python3 fromredis.py
2018-03-12 15:34:12 +01:00
# Serving file to MISP
bash install.sh
. ./serv-env/bin/activate
python3 server.py
2018-03-08 12:01:35 +01:00
````