Added STIX retrieval

- misp.get_stix(event_id=ID, with_attachment=True/False,
			from_date=YYYY-MM-DD, to_date=YYYY-MM-DD,
			tags=["tag1", "tag2"]
	                )
pull/22/head
Hannah Ward 2016-07-14 12:55:37 +01:00
parent c97651e6ac
commit 414ddaec01
No known key found for this signature in database
GPG Key ID: BA89E572EE1B4C5F
3 changed files with 27 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
*.pem
*.pyc
examples/keys.py
examples/cudeso.py

View File

@ -217,6 +217,24 @@ class PyMISP(object):
url = urljoin(self.root_url, 'events/{}'.format(event_id))
return session.get(url)
def get_stix_event(self, event_id=None, out_format="json", with_attachments=False, from_date=False, to_date=False, tags=False):
"""
Get an event/events in STIX format
"""
out_format = out_format.lower()
if tags:
if isinstance(tags, list):
tags = "&&".join(tags)
session = self.__prepare_session(out_format)
url = urljoin(self.root_url,
"/events/stix/download/{}/{}/{}/{}/{}".format(
event_id, with_attachments, tags, from_date, to_date
))
if self.debug:
print("Getting STIX event from {}".format(url))
return session.get(url)
def add_event(self, event, force_out=None):
"""
Add a new event
@ -339,6 +357,10 @@ class PyMISP(object):
response = self.get_event(int(eid), 'json')
return self._check_response(response)
def get_stix(self, **kwargs):
response = self.get_stix_event(**kwargs)
return self._check_response(response)
def update(self, event):
eid = event['Event']['id']
response = self.update_event(eid, event, 'json')

View File

@ -109,6 +109,10 @@ class TestBasic(unittest.TestCase):
event = self.misp.get_event(eventid)
print event.json()
def get_stix(self, **kwargs):
event = self.misp.get_stix(kwargs)
print(event)
def add(self):
event = {u'Event': {u'info': u'This is a test', u'locked': False,
u'attribute_count': u'3', u'analysis': u'0',