mirror of
https://github.com/ail-project/ail-framework.git
synced 2025-02-12 04:16:19 +00:00
fix:[MISP_The_Hive_feeder] set default values
This commit is contained in:
parent
027d0d54ab
commit
dad0365c67
1 changed files with 8 additions and 1 deletions
|
@ -119,10 +119,18 @@ if __name__ == "__main__":
|
||||||
db=cfg.getint("ARDB_Metadata", "db"),
|
db=cfg.getint("ARDB_Metadata", "db"),
|
||||||
decode_responses=True)
|
decode_responses=True)
|
||||||
|
|
||||||
|
# set sensor uuid
|
||||||
uuid_ail = r_serv_db.get('ail:uuid')
|
uuid_ail = r_serv_db.get('ail:uuid')
|
||||||
if uuid_ail is None:
|
if uuid_ail is None:
|
||||||
uuid_ail = r_serv_db.set('ail:uuid', uuid.uuid4() )
|
uuid_ail = r_serv_db.set('ail:uuid', uuid.uuid4() )
|
||||||
|
|
||||||
|
# set default
|
||||||
|
if r_serv_db.get('hive:auto-alerts') is None:
|
||||||
|
r_serv_db.set('hive:auto-alerts', 0)
|
||||||
|
|
||||||
|
if r_serv_db.get('misp:auto-events') is None:
|
||||||
|
r_serv_db.set('misp:auto-events', 0):
|
||||||
|
|
||||||
p = Process(config_section)
|
p = Process(config_section)
|
||||||
# create MISP connection
|
# create MISP connection
|
||||||
if flag_misp:
|
if flag_misp:
|
||||||
|
@ -191,7 +199,6 @@ if __name__ == "__main__":
|
||||||
whitelist_hive = r_serv_db.scard('whitelist_hive')
|
whitelist_hive = r_serv_db.scard('whitelist_hive')
|
||||||
if r_serv_db.sismember('whitelist_hive', tag):
|
if r_serv_db.sismember('whitelist_hive', tag):
|
||||||
create_the_hive_alert(source, path, full_path, tag)
|
create_the_hive_alert(source, path, full_path, tag)
|
||||||
|
|
||||||
else:
|
else:
|
||||||
print('hive, auto alerts creation disable')
|
print('hive, auto alerts creation disable')
|
||||||
if flag_misp:
|
if flag_misp:
|
||||||
|
|
Loading…
Add table
Reference in a new issue