2016-04-29 16:35:27 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
from pymisp import PyMISP
|
2018-10-14 19:26:03 +02:00
|
|
|
from keys import misp_url, misp_key, misp_verifycert
|
2016-04-29 16:35:27 +02:00
|
|
|
import argparse
|
|
|
|
|
|
|
|
# For python2 & 3 compat, a bit dirty, but it seems to be the least bad one
|
|
|
|
try:
|
|
|
|
input = raw_input
|
|
|
|
except NameError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
def init(url, key):
|
2018-10-14 19:26:03 +02:00
|
|
|
return PyMISP(url, key, misp_verifycert, 'json')
|
2016-04-29 16:35:27 +02:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
parser = argparse.ArgumentParser(description='Add sighting.')
|
2016-11-03 11:23:48 +01:00
|
|
|
parser.add_argument("-f", "--json_file", required=True, help="The name of the json file describing the attribute you want to add sighting to.")
|
2016-04-29 16:35:27 +02:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
misp = init(misp_url, misp_key)
|
|
|
|
|
|
|
|
misp.sighting_per_json(args.json_file)
|