Déborah Servili 2016-07-22 11:56:19 +02:00
commit d68f92c51a
3 changed files with 29 additions and 2 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')
@ -895,10 +917,10 @@ class PyMISP(object):
archive = zipfile.ZipFile(zipped)
try:
# New format
unzipped = BytesIO(archive.open(f['md5'], pwd='infected').read())
unzipped = BytesIO(archive.open(f['md5'], pwd=b'infected').read())
except KeyError:
# Old format
unzipped = BytesIO(archive.open(f['filename'], pwd='infected').read())
unzipped = BytesIO(archive.open(f['filename'], pwd=b'infected').read())
details.append([f['event_id'], f['filename'], unzipped])
except zipfile.BadZipfile:
# In case the sample isn't zipped

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',