mirror of https://github.com/MISP/PyMISP
pull/23/head
commit
d68f92c51a
|
@ -1,3 +1,4 @@
|
||||||
|
*.pem
|
||||||
*.pyc
|
*.pyc
|
||||||
examples/keys.py
|
examples/keys.py
|
||||||
examples/cudeso.py
|
examples/cudeso.py
|
||||||
|
|
|
@ -217,6 +217,24 @@ class PyMISP(object):
|
||||||
url = urljoin(self.root_url, 'events/{}'.format(event_id))
|
url = urljoin(self.root_url, 'events/{}'.format(event_id))
|
||||||
return session.get(url)
|
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):
|
def add_event(self, event, force_out=None):
|
||||||
"""
|
"""
|
||||||
Add a new event
|
Add a new event
|
||||||
|
@ -339,6 +357,10 @@ class PyMISP(object):
|
||||||
response = self.get_event(int(eid), 'json')
|
response = self.get_event(int(eid), 'json')
|
||||||
return self._check_response(response)
|
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):
|
def update(self, event):
|
||||||
eid = event['Event']['id']
|
eid = event['Event']['id']
|
||||||
response = self.update_event(eid, event, 'json')
|
response = self.update_event(eid, event, 'json')
|
||||||
|
@ -895,10 +917,10 @@ class PyMISP(object):
|
||||||
archive = zipfile.ZipFile(zipped)
|
archive = zipfile.ZipFile(zipped)
|
||||||
try:
|
try:
|
||||||
# New format
|
# New format
|
||||||
unzipped = BytesIO(archive.open(f['md5'], pwd='infected').read())
|
unzipped = BytesIO(archive.open(f['md5'], pwd=b'infected').read())
|
||||||
except KeyError:
|
except KeyError:
|
||||||
# Old format
|
# 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])
|
details.append([f['event_id'], f['filename'], unzipped])
|
||||||
except zipfile.BadZipfile:
|
except zipfile.BadZipfile:
|
||||||
# In case the sample isn't zipped
|
# In case the sample isn't zipped
|
||||||
|
|
|
@ -109,6 +109,10 @@ class TestBasic(unittest.TestCase):
|
||||||
event = self.misp.get_event(eventid)
|
event = self.misp.get_event(eventid)
|
||||||
print event.json()
|
print event.json()
|
||||||
|
|
||||||
|
def get_stix(self, **kwargs):
|
||||||
|
event = self.misp.get_stix(kwargs)
|
||||||
|
print(event)
|
||||||
|
|
||||||
def add(self):
|
def add(self):
|
||||||
event = {u'Event': {u'info': u'This is a test', u'locked': False,
|
event = {u'Event': {u'info': u'This is a test', u'locked': False,
|
||||||
u'attribute_count': u'3', u'analysis': u'0',
|
u'attribute_count': u'3', u'analysis': u'0',
|
||||||
|
|
Loading…
Reference in New Issue