mirror of https://github.com/CIRCL/AIL-framework
fix hive connection + add keys sample
parent
0ee36e484f
commit
bc40bb3c38
|
@ -0,0 +1,6 @@
|
||||||
|
#!/usr/bin/env python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
misp_url = 'http://10.1.0.143'
|
||||||
|
misp_key = 'c5VRXJahYVux3rkPULbbILTNmAwlXU8Eas9zvl36' # The MISP auth key can be found on the MISP web interface under the automation section
|
||||||
|
misp_verifycert = True
|
|
@ -0,0 +1,6 @@
|
||||||
|
#!/usr/bin/env python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
the_hive_url = 'http://10.1.0.145:9000'
|
||||||
|
the_hive_key = 'KfiPGz3Bi8E5styWbC2eU4WiTKDGdf22' # The Hive auth key can be found on the The Hive web interface under the User Management
|
||||||
|
the_hive_verifycert = True
|
|
@ -115,18 +115,18 @@ try:
|
||||||
else:
|
else:
|
||||||
HiveApi = TheHiveApi(the_hive_url, the_hive_key, cert=the_hive_verifycert)
|
HiveApi = TheHiveApi(the_hive_url, the_hive_key, cert=the_hive_verifycert)
|
||||||
hive_case_url = the_hive_url+'/index.html#/case/id_here/details'
|
hive_case_url = the_hive_url+'/index.html#/case/id_here/details'
|
||||||
#HiveApi.do_patch(the_hive_url)
|
|
||||||
except:
|
except:
|
||||||
print('The HIVE not connected')
|
print('The HIVE not connected')
|
||||||
HiveApi = False
|
HiveApi = False
|
||||||
hive_case_url = '#'
|
hive_case_url = '#'
|
||||||
|
|
||||||
try:
|
if HiveApi != False
|
||||||
HiveApi.get_alert(0)
|
try:
|
||||||
print('The Hive connected')
|
HiveApi.get_alert(0)
|
||||||
except thehive4py.exceptions.AlertException:
|
print('The Hive connected')
|
||||||
HiveApi = False
|
except thehive4py.exceptions.AlertException:
|
||||||
print('The Hive not connected')
|
HiveApi = False
|
||||||
|
print('The Hive not connected')
|
||||||
|
|
||||||
# VARIABLES #
|
# VARIABLES #
|
||||||
max_preview_char = int(cfg.get("Flask", "max_preview_char")) # Maximum number of character to display in the tooltip
|
max_preview_char = int(cfg.get("Flask", "max_preview_char")) # Maximum number of character to display in the tooltip
|
||||||
|
|
Loading…
Reference in New Issue