PyMISP/examples/feed-generator-from-redis/settings.default.py

43 lines
1.1 KiB
Python
Raw Normal View History

2018-03-08 12:01:35 +01:00
# Your redis server
host='127.0.0.1'
port=6379
db=0
## The keynames to POP element from
2018-03-08 14:19:28 +01:00
#keyname_pop='misp_feed_generator_key'
keyname_pop=['cowrie']
2018-03-08 12:01:35 +01:00
# The output dir for the feed. This will drop a lot of files, so make
# sure that you use a directory dedicated to the feed
outputdir = 'output'
# Event meta data
## Required
### The organisation id that generated this feed
org_name='myOrg'
### Your organisation UUID
org_uuid=''
### The daily event name to be used in MISP. (e.g. honeypot_1, will produce each day an event of the form honeypot_1 dd-mm-yyyy)
daily_event_name='PyMISP default event name'
## Optional
analysis=0
threat_level_id=3
published=False
Tag=[{
"colour": "#ffffff",
"name": "tlp:white"
2018-03-08 17:33:39 +01:00
},
"colour": "#ff00ff",
"name": "my:custom:feed"
]
2018-03-08 12:01:35 +01:00
# Others
## Redis pooling time
2018-03-08 17:33:39 +01:00
sleep=60
2018-03-08 12:01:35 +01:00
## The redis list keyname in which to put items that generated an error
keyname_error='feed-generation-error'
## Display an animation while adding element to MISP
allow_animation=True
## How frequent the event should be written on disk
2018-03-08 17:33:39 +01:00
flushing_interval=5*60