2017-07-24 13:26:22 +02:00
2014-03-19 19:10:36 +01:00
# -*- coding: utf-8 -*-
2016-08-26 14:19:19 +02:00
""" Python API using the REST interface of MISP """
2014-03-19 19:10:36 +01:00
2016-11-03 21:01:48 +01:00
import sys
2015-02-16 14:31:29 +01:00
import json
import datetime
2017-12-11 15:01:25 +01:00
from dateutil . parser import parse
2015-08-04 16:24:55 +02:00
import os
import base64
2015-09-18 12:03:56 +02:00
import re
2017-05-03 14:14:13 +02:00
import logging
2017-11-09 02:33:55 +01:00
from io import BytesIO , open
import zipfile
2017-12-22 14:49:14 +01:00
from . import __version__ , deprecated
2017-11-09 02:33:55 +01:00
from . exceptions import PyMISPError , SearchError , NoURL , NoKey
2018-05-08 11:43:27 +02:00
from . mispevent import MISPEvent , MISPAttribute , MISPUser , MISPOrganisation , MISPSighting , MISPFeed , MISPObject
2018-01-12 18:47:45 +01:00
from . abstract import AbstractMISP , MISPEncode
2017-03-09 16:32:51 +01:00
2017-11-08 03:10:04 +01:00
logger = logging . getLogger ( ' pymisp ' )
2015-09-18 12:03:56 +02:00
2015-09-02 13:56:08 +02:00
try :
from urllib . parse import urljoin
2017-11-08 03:10:04 +01:00
# Least dirty way to support python 2 and 3
basestring = str
unicode = str
2015-09-02 13:56:08 +02:00
except ImportError :
from urlparse import urljoin
2017-11-08 03:19:57 +01:00
logger . warning ( " You ' re using python 2, it is strongly recommended to use python >=3.5 " )
2014-04-14 10:55:20 +02:00
2015-09-18 12:03:56 +02:00
try :
import requests
HAVE_REQUESTS = True
except ImportError :
HAVE_REQUESTS = False
2017-02-16 16:39:36 +01:00
try :
from requests_futures . sessions import FuturesSession
ASYNC_OK = True
except ImportError :
ASYNC_OK = False
2018-06-07 11:13:51 +02:00
everything_broken = ''' Unknown error: the response is not in JSON.
Something is broken server - side , please send us everything that follows ( careful with the auth key ) :
Request headers :
{ }
Request body :
{ }
Response ( if any ) :
{ } '''
2015-09-18 12:03:56 +02:00
2014-04-11 18:45:52 +02:00
class PyMISP ( object ) :
2017-01-16 15:27:44 +01:00
""" Python API for MISP
: param url : URL of the MISP instance you want to connect to
: param key : API key of the user you want to use
2017-12-22 17:22:07 +01:00
: param ssl : can be True or False ( to check ot not the validity of the certificate . Or a CA_BUNDLE in case of self signed certiifcate ( the concatenation of all the \* . crt of the chain )
2017-01-16 15:27:44 +01:00
: param out_type : Type of object ( json ) NOTE : XML output isn ' t supported anymore, keeping the flag for compatibility reasons.
2017-11-10 23:56:53 +01:00
: param debug : Write all the debug information to stderr
2017-01-16 15:27:44 +01:00
: param proxies : Proxy dict as describes here : http : / / docs . python - requests . org / en / master / user / advanced / #proxies
2018-02-26 17:04:38 +01:00
: param cert : Client certificate , as described there : http : / / docs . python - requests . org / en / master / user / advanced / #client-side-certificates
2017-05-02 11:11:01 +02:00
: param asynch : Use asynchronous processing where possible
2014-04-16 14:09:56 +02:00
"""
2017-05-03 14:14:13 +02:00
def __init__ ( self , url , key , ssl = True , out_type = ' json ' , debug = None , proxies = None , cert = None , asynch = False ) :
2015-09-18 17:48:10 +02:00
if not url :
raise NoURL ( ' Please provide the URL of your MISP instance. ' )
if not key :
raise NoKey ( ' Please provide your authorization key. ' )
2015-08-07 17:24:03 +02:00
self . root_url = url
2014-04-11 18:45:52 +02:00
self . key = key
2014-04-16 14:09:56 +02:00
self . ssl = ssl
2016-07-28 09:49:40 +02:00
self . proxies = proxies
2016-08-26 09:11:01 +02:00
self . cert = cert
2017-05-03 16:49:51 +02:00
self . asynch = asynch
2017-02-16 16:39:36 +01:00
if asynch and not ASYNC_OK :
2017-11-09 02:33:55 +01:00
logger . critical ( " You turned on Async, but don ' t have requests_futures installed " )
2017-02-16 16:39:36 +01:00
self . asynch = False
2017-02-16 16:23:42 +01:00
2017-07-27 17:14:49 +02:00
self . resources_path = os . path . join ( os . path . abspath ( os . path . dirname ( __file__ ) ) , ' data ' )
2016-08-09 13:58:54 +02:00
if out_type != ' json ' :
raise PyMISPError ( ' The only output type supported by PyMISP is JSON. If you still rely on XML, use PyMISP v2.4.49 ' )
2017-11-08 04:10:54 +01:00
if debug :
logger . setLevel ( logging . DEBUG )
logger . info ( ' To configure logging in your script, leave it to None and use the following: import logging; logging.getLogger( \' pymisp \' ).setLevel(logging.DEBUG) ' )
2014-04-11 18:45:52 +02:00
2015-09-21 14:40:06 +02:00
try :
# Make sure the MISP instance is working and the URL is valid
2017-01-27 11:58:00 +01:00
response = self . get_recommended_api_version ( )
2017-07-20 15:33:15 +02:00
if response . get ( ' errors ' ) :
logger . warning ( response . get ( ' errors ' ) [ 0 ] )
elif not response . get ( ' version ' ) :
2017-05-03 14:14:13 +02:00
logger . warning ( " Unable to check the recommended PyMISP version (MISP <2.4.60), please upgrade. " )
2017-01-27 11:58:00 +01:00
else :
2017-05-03 14:47:06 +02:00
pymisp_version_tup = tuple ( int ( x ) for x in __version__ . split ( ' . ' ) )
recommended_version_tup = tuple ( int ( x ) for x in response [ ' version ' ] . split ( ' . ' ) )
2017-10-28 22:57:03 +02:00
if recommended_version_tup < pymisp_version_tup [ : 3 ] :
logger . info ( " The version of PyMISP recommended by the MISP instance ( {} ) is older than the one you ' re using now ( {} ). If you have a problem, please upgrade the MISP instance or use an older PyMISP version. " . format ( response [ ' version ' ] , __version__ ) )
elif pymisp_version_tup [ : 3 ] < recommended_version_tup :
2017-05-03 14:47:06 +02:00
logger . warning ( " The version of PyMISP recommended by the MISP instance ( {} ) is newer than the one you ' re using now ( {} ). Please upgrade PyMISP. " . format ( response [ ' version ' ] , __version__ ) )
2016-12-14 15:42:43 +01:00
2015-09-21 14:40:06 +02:00
except Exception as e :
raise PyMISPError ( ' Unable to connect to MISP ( {} ). Please make sure the API key and the URL are correct (http/https is required): {} ' . format ( self . root_url , e ) )
2016-10-10 12:24:17 +02:00
try :
2017-12-01 14:02:04 +01:00
self . describe_types = self . get_live_describe_types ( )
2017-05-03 13:22:15 +02:00
except Exception :
2017-12-01 16:15:46 +01:00
self . describe_types = self . get_local_describe_types ( )
2016-10-10 12:24:17 +02:00
self . categories = self . describe_types [ ' categories ' ]
self . types = self . describe_types [ ' types ' ]
self . category_type_mapping = self . describe_types [ ' category_type_mappings ' ]
self . sane_default = self . describe_types [ ' sane_defaults ' ]
2016-04-14 10:29:36 +02:00
2017-12-15 17:34:54 +01:00
def __repr__ ( self ) :
return ' < {self.__class__.__name__} (url= {self.root_url} ) ' . format ( self = self )
2017-12-01 14:35:19 +01:00
def get_live_query_acl ( self ) :
""" This should return an empty list, unless the ACL is outdated. """
response = self . __prepare_request ( ' GET ' , urljoin ( self . root_url , ' events/queryACL.json ' ) )
return self . _check_response ( response )
2017-12-01 16:15:46 +01:00
def get_local_describe_types ( self ) :
with open ( os . path . join ( self . resources_path , ' describeTypes.json ' ) , ' r ' ) as f :
describe_types = json . load ( f )
return describe_types [ ' result ' ]
2017-12-01 14:02:04 +01:00
def get_live_describe_types ( self ) :
response = self . __prepare_request ( ' GET ' , urljoin ( self . root_url , ' attributes/describeTypes.json ' ) )
describe_types = self . _check_response ( response )
if describe_types . get ( ' error ' ) :
for e in describe_types . get ( ' error ' ) :
raise PyMISPError ( ' Failed: {} ' . format ( e ) )
describe_types = describe_types [ ' result ' ]
if not describe_types . get ( ' sane_defaults ' ) :
raise PyMISPError ( ' The MISP server your are trying to reach is outdated (<2.4.52). Please use PyMISP v2.4.51.1 (pip install -I PyMISP==v2.4.51.1) and/or contact your administrator. ' )
return describe_types
2017-11-09 02:33:55 +01:00
def __prepare_request ( self , request_type , url , data = None ,
background_callback = None , output_type = ' json ' ) :
if logger . isEnabledFor ( logging . DEBUG ) :
logger . debug ( ' {} - {} ' . format ( request_type , url ) )
if data is not None :
logger . debug ( data )
if data is None :
req = requests . Request ( request_type , url )
else :
req = requests . Request ( request_type , url , data = data )
if self . asynch and background_callback is not None :
s = FuturesSession ( )
2017-02-16 16:39:36 +01:00
else :
2017-11-09 02:33:55 +01:00
s = requests . Session ( )
prepped = s . prepare_request ( req )
prepped . headers . update (
2014-04-14 10:55:20 +02:00
{ ' Authorization ' : self . key ,
2017-11-09 02:33:55 +01:00
' Accept ' : ' application/ {} ' . format ( output_type ) ,
' content-type ' : ' application/ {} ' . format ( output_type ) ,
2016-11-03 21:01:48 +01:00
' User-Agent ' : ' PyMISP {} - Python {} . {} . {} ' . format ( __version__ , * sys . version_info ) } )
2017-11-08 03:10:04 +01:00
if logger . isEnabledFor ( logging . DEBUG ) :
2017-11-09 02:33:55 +01:00
logger . debug ( prepped . headers )
if self . asynch and background_callback is not None :
return s . send ( prepped , verify = self . ssl , proxies = self . proxies , cert = self . cert , background_callback = background_callback )
else :
return s . send ( prepped , verify = self . ssl , proxies = self . proxies , cert = self . cert )
2014-04-11 18:45:52 +02:00
2017-03-09 16:32:51 +01:00
# #####################
# ### Core helpers ####
# #####################
2015-12-19 17:57:29 +01:00
def flatten_error_messages ( self , response ) :
2017-10-21 20:22:38 +02:00
""" Dirty dirty method to normalize the error messages between the API calls.
Any response containing the a key ' error ' or ' errors ' failed at some point ,
we make one single list out of it .
"""
2015-12-19 17:57:29 +01:00
messages = [ ]
if response . get ( ' error ' ) :
if isinstance ( response [ ' error ' ] , list ) :
2017-12-11 14:00:43 +01:00
for e in response [ ' error ' ] :
if isinstance ( e , dict ) :
messages . append ( e [ ' error ' ] [ ' value ' ] [ 0 ] )
else :
messages . append ( e )
2015-12-19 17:57:29 +01:00
else :
messages . append ( [ ' error ' ] )
elif response . get ( ' errors ' ) :
if isinstance ( response [ ' errors ' ] , dict ) :
for where , errors in response [ ' errors ' ] . items ( ) :
2016-08-26 18:22:41 +02:00
if isinstance ( errors , dict ) :
for where , msg in errors . items ( ) :
2016-08-27 18:13:15 +02:00
if isinstance ( msg , list ) :
for m in msg :
messages . append ( ' Error in {} : {} ' . format ( where , m ) )
else :
messages . append ( ' Error in {} : {} ' . format ( where , msg ) )
2016-08-26 18:22:41 +02:00
else :
2017-07-15 20:35:00 +02:00
if isinstance ( errors , list ) :
for e in errors :
if not e :
continue
if isinstance ( e , basestring ) :
messages . append ( e )
continue
for type_e , msgs in e . items ( ) :
for m in msgs :
messages . append ( ' Error in {} : {} ' . format ( where , m ) )
else :
messages . append ( ' {} ( {} ) ' . format ( errors , where ) )
2015-12-19 17:57:29 +01:00
return messages
2015-09-23 18:47:47 +02:00
def _check_response ( self , response ) :
2017-10-21 20:22:38 +02:00
""" Check if the response from the server is not an unexpected error """
2015-11-25 09:51:22 +01:00
try :
2018-06-07 11:13:51 +02:00
json_response = response . json ( )
2017-05-03 13:22:15 +02:00
except ValueError :
2017-11-08 03:10:04 +01:00
# It the server didn't return a JSON blob, we've a problem.
2018-06-07 11:13:51 +02:00
raise PyMISPError ( everything_broken . format ( response . request . headers , response . request . body , response . text ) )
errors = [ ]
2015-12-19 17:57:29 +01:00
2018-06-07 11:13:51 +02:00
if response . status_code > = 500 :
errors . append ( ' 500 exception: {} ' . format ( json_response ) )
logger . critical ( everything_broken . format ( response . request . headers , response . request . body , json_response ) )
to_return = json_response
2017-07-12 11:51:26 +02:00
if isinstance ( to_return , ( list , str ) ) :
2018-06-07 11:13:51 +02:00
# FIXME: This case look like a bug.
2016-04-04 18:34:08 +02:00
to_return = { ' response ' : to_return }
2018-06-07 11:13:51 +02:00
else :
if to_return . get ( ' error ' ) :
if not isinstance ( to_return [ ' error ' ] , list ) :
errors . append ( to_return [ ' error ' ] )
else :
errors + = to_return [ ' error ' ]
if to_return . get ( ' errors ' ) :
if not isinstance ( to_return [ ' errors ' ] , list ) :
errors . append ( to_return [ ' errors ' ] )
else :
errors + = to_return [ ' errors ' ]
2015-12-19 17:57:29 +01:00
2015-09-23 18:47:47 +02:00
if 400 < = response . status_code < 500 :
2017-02-22 09:03:47 +01:00
if not errors and to_return . get ( ' message ' ) :
2015-12-19 17:57:29 +01:00
errors . append ( to_return [ ' message ' ] )
else :
2017-05-02 13:09:59 +02:00
errors . append ( str ( response . status_code ) )
2015-12-19 17:57:29 +01:00
errors + = self . flatten_error_messages ( to_return )
if errors :
to_return [ ' errors ' ] = errors
2017-05-03 14:14:13 +02:00
if logger . isEnabledFor ( logging . DEBUG ) :
logger . debug ( json . dumps ( to_return , indent = 4 ) )
2015-09-23 18:47:47 +02:00
return to_return
2017-03-09 16:32:51 +01:00
def _one_or_more ( self , value ) :
""" Returns a list/tuple of one or more items, regardless of input. """
return value if isinstance ( value , ( tuple , list ) ) else ( value , )
def _make_mispevent ( self , event ) :
2017-10-21 20:22:38 +02:00
""" Transform a Json MISP event into a MISPEvent """
2017-03-09 16:32:51 +01:00
if not isinstance ( event , MISPEvent ) :
e = MISPEvent ( self . describe_types )
e . load ( event )
else :
e = event
return e
def _prepare_full_event ( self , distribution , threat_level_id , analysis , info , date = None , published = False , orgc_id = None , org_id = None , sharing_group_id = None ) :
2017-10-21 20:22:38 +02:00
""" Initialize a new MISPEvent from scratch """
2017-03-09 16:32:51 +01:00
misp_event = MISPEvent ( self . describe_types )
2017-12-22 14:49:14 +01:00
misp_event . from_dict ( info = info , distribution = distribution , threat_level_id = threat_level_id ,
analysis = analysis , date = date , orgc_id = orgc_id , org_id = org_id , sharing_group_id = sharing_group_id )
2017-03-09 16:32:51 +01:00
if published :
misp_event . publish ( )
return misp_event
2017-10-28 23:09:11 +02:00
def _prepare_full_attribute ( self , category , type_value , value , to_ids , comment = None , distribution = None , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Initialize a new MISPAttribute from scratch """
2017-03-09 16:32:51 +01:00
misp_attribute = MISPAttribute ( self . describe_types )
2017-12-22 14:49:14 +01:00
misp_attribute . from_dict ( type = type_value , value = value , category = category ,
to_ids = to_ids , comment = comment , distribution = distribution , * * kwargs )
2017-03-09 16:32:51 +01:00
return misp_attribute
def _valid_uuid ( self , uuid ) :
""" Test if uuid is valid
Will test against CakeText ' s RFC 4122, i.e
" the third group must start with a 4,
and the fourth group must start with 8 , 9 , a or b . "
: param uuid : an uuid
"""
regex = re . compile ( ' ^[a-f0-9] {8} -?[a-f0-9] {4} -?4[a-f0-9] {3} -?[89ab][a-f0-9] {3} -?[a-f0-9] {12} \ Z ' , re . I )
match = regex . match ( uuid )
return bool ( match )
2015-09-01 10:31:22 +02:00
# ################################################
# ############### Simple REST API ################
# ################################################
2014-04-11 18:45:52 +02:00
2017-07-21 15:16:00 +02:00
def test_connection ( self ) :
2017-07-20 15:33:15 +02:00
""" Test the auth key """
response = self . get_version ( )
if response . get ( ' errors ' ) :
raise PyMISPError ( response . get ( ' errors ' ) [ 0 ] )
return True
2016-08-09 13:58:54 +02:00
def get_index ( self , filters = None ) :
2017-01-16 15:27:44 +01:00
""" Return the index.
2014-04-11 18:45:52 +02:00
2017-01-16 15:27:44 +01:00
Warning , there ' s a limit on the number of results
2014-04-11 18:45:52 +02:00
"""
2016-03-01 16:20:10 +01:00
url = urljoin ( self . root_url , ' events/index ' )
2017-11-09 02:33:55 +01:00
if filters is None :
response = self . __prepare_request ( ' GET ' , url )
2016-03-01 15:32:58 +01:00
else :
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' POST ' , url , json . dumps ( filters ) )
2016-08-09 13:58:54 +02:00
return self . _check_response ( response )
2014-04-11 18:45:52 +02:00
2016-08-09 13:58:54 +02:00
def get_event ( self , event_id ) :
2017-01-16 15:27:44 +01:00
""" Get an event
2014-04-16 14:09:56 +02:00
2017-01-16 15:27:44 +01:00
: param event_id : Event id to get
2014-04-11 18:45:52 +02:00
"""
2015-08-12 13:23:38 +02:00
url = urljoin ( self . root_url , ' events/ {} ' . format ( event_id ) )
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' GET ' , url )
2016-08-09 13:58:54 +02:00
return self . _check_response ( response )
2014-04-11 18:45:52 +02:00
2016-08-09 13:58:54 +02:00
def add_event ( self , event ) :
2017-01-16 15:27:44 +01:00
""" Add a new event
2017-01-16 20:41:32 +01:00
2017-03-15 14:10:51 +01:00
: param event : Event as JSON object / string to add
2014-04-11 18:45:52 +02:00
"""
2015-08-10 11:58:20 +02:00
url = urljoin ( self . root_url , ' events ' )
2017-03-15 14:10:51 +01:00
if isinstance ( event , MISPEvent ) :
2017-11-09 02:33:55 +01:00
event = event . to_json ( )
elif not isinstance ( event , basestring ) :
event = json . dumps ( event )
response = self . __prepare_request ( ' POST ' , url , event )
2016-08-09 13:58:54 +02:00
return self . _check_response ( response )
2018-04-21 16:29:38 +02:00
def update_attribute ( self , attribute_id , attribute ) :
""" Update an attribute
: param attribute_id : Attribute id / uuid to update
: param attribute : Attribute as JSON object / string to add
"""
url = urljoin ( self . root_url , ' attributes/ {} ' . format ( attribute_id ) )
if isinstance ( attribute , MISPAttribute ) :
attribute = attribute . to_json ( )
elif not isinstance ( attribute , basestring ) :
attribute = json . dumps ( attribute )
response = self . __prepare_request ( ' POST ' , url , attribute )
return self . _check_response ( response )
2014-04-11 18:45:52 +02:00
2016-08-09 13:58:54 +02:00
def update_event ( self , event_id , event ) :
2017-01-16 15:27:44 +01:00
""" Update an event
2014-04-16 14:09:56 +02:00
2017-01-16 15:27:44 +01:00
: param event_id : Event id to update
2017-03-15 14:10:51 +01:00
: param event : Event as JSON object / string to add
2014-04-11 18:45:52 +02:00
"""
2015-08-12 13:23:38 +02:00
url = urljoin ( self . root_url , ' events/ {} ' . format ( event_id ) )
2017-03-15 14:10:51 +01:00
if isinstance ( event , MISPEvent ) :
2017-11-09 02:33:55 +01:00
event = event . to_json ( )
elif not isinstance ( event , basestring ) :
event = json . dumps ( event )
response = self . __prepare_request ( ' POST ' , url , event )
2016-08-09 13:58:54 +02:00
return self . _check_response ( response )
2014-04-11 18:45:52 +02:00
2016-08-09 13:58:54 +02:00
def delete_event ( self , event_id ) :
2017-01-16 15:27:44 +01:00
""" Delete an event
2014-04-16 14:09:56 +02:00
2017-01-16 15:27:44 +01:00
: param event_id : Event id to delete
2014-04-11 18:45:52 +02:00
"""
2015-08-12 13:23:38 +02:00
url = urljoin ( self . root_url , ' events/ {} ' . format ( event_id ) )
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' DELETE ' , url )
2016-08-09 13:58:54 +02:00
return self . _check_response ( response )
2014-04-11 18:45:52 +02:00
2017-10-22 20:02:47 +02:00
def delete_attribute ( self , attribute_id , hard_delete = False ) :
2017-10-21 20:22:38 +02:00
""" Delete an attribute by ID """
2017-10-22 20:02:47 +02:00
if hard_delete :
url = urljoin ( self . root_url , ' attributes/delete/ {} /1 ' . format ( attribute_id ) )
else :
url = urljoin ( self . root_url , ' attributes/delete/ {} ' . format ( attribute_id ) )
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' GET ' , url )
2016-08-09 13:58:54 +02:00
return self . _check_response ( response )
2015-08-28 17:03:35 +02:00
2017-08-03 17:17:37 +02:00
def pushEventToZMQ ( self , event_id ) :
2017-10-21 20:22:38 +02:00
""" Force push an event on ZMQ """
2017-08-03 17:17:37 +02:00
url = urljoin ( self . root_url , ' events/pushEventToZMQ/ {} .json ' . format ( event_id ) )
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' POST ' , url )
2017-08-03 17:17:37 +02:00
return self . _check_response ( response )
2015-09-01 18:46:10 +02:00
# ##############################################
2017-03-09 16:32:51 +01:00
# ############### Event handling ###############
2015-09-01 18:46:10 +02:00
# ##############################################
2015-09-23 18:47:47 +02:00
def get ( self , eid ) :
2017-10-21 20:22:38 +02:00
""" Get an event by event ID """
2016-09-26 00:26:09 +02:00
return self . get_event ( eid )
2016-07-14 13:55:37 +02:00
2015-09-23 18:47:47 +02:00
def update ( self , event ) :
2017-10-21 20:22:38 +02:00
""" Update an event by ID """
2017-01-16 20:47:43 +01:00
e = self . _make_mispevent ( event )
if e . uuid :
eid = e . uuid
2017-01-16 20:41:32 +01:00
else :
2017-01-16 20:47:43 +01:00
eid = e . id
2017-03-15 14:10:51 +01:00
return self . update_event ( eid , e )
2017-08-04 19:30:40 +02:00
2017-11-11 00:42:07 +01:00
def fast_publish ( self , event_id , alert = False ) :
""" Does the same as the publish method, but just try to publish the event
even with one single HTTP GET .
The default is to not send a mail as it is assumed this method is called on update .
"""
if not alert :
url = urljoin ( self . root_url , ' events/publish/ {} ' . format ( event_id ) )
else :
url = urljoin ( self . root_url , ' events/alert/ {} ' . format ( event_id ) )
response = self . __prepare_request ( ' POST ' , url )
return self . _check_response ( response )
2017-08-03 13:19:48 +02:00
def publish ( self , event , alert = True ) :
""" Publish event (with or without alert email)
: param event : pass event or event id ( as string or int ) to publish
: param alert : set to True by default ( send alerting email ) if False will not send alert
: return publish status
"""
2017-11-20 15:11:30 +01:00
if isinstance ( event , int ) or ( isinstance ( event , basestring ) and event . isdigit ( ) ) :
2017-12-01 16:47:06 +01:00
event_id = event
2017-08-03 13:19:48 +02:00
else :
full_event = self . _make_mispevent ( event )
2017-12-01 16:47:06 +01:00
if full_event . published :
return { ' error ' : ' Already published ' }
event_id = full_event . id
2017-11-11 00:42:07 +01:00
return self . fast_publish ( event_id , alert )
2016-09-26 00:26:09 +02:00
def change_threat_level ( self , event , threat_level_id ) :
2017-10-21 20:22:38 +02:00
""" Change the threat level of an event """
2017-01-16 20:47:43 +01:00
e = self . _make_mispevent ( event )
2016-09-27 19:47:22 +02:00
e . threat_level_id = threat_level_id
2017-01-28 11:24:04 +01:00
return self . update ( e )
2016-09-26 00:26:09 +02:00
2018-03-26 16:38:26 +02:00
def change_analysis_status ( self , event , analysis_status ) :
""" Change the analysis status of an event """
e = self . _make_mispevent ( event )
e . analysis = analysis_status
return self . update ( e )
2017-01-09 16:19:20 +01:00
def change_sharing_group ( self , event , sharing_group_id ) :
2017-10-21 20:22:38 +02:00
""" Change the sharing group of an event """
2017-01-16 20:47:43 +01:00
e = self . _make_mispevent ( event )
2017-01-09 16:19:20 +01:00
e . distribution = 4 # Needs to be 'Sharing group'
e . sharing_group_id = sharing_group_id
2017-01-28 11:24:04 +01:00
return self . update ( e )
2017-01-09 16:19:20 +01:00
def new_event ( self , distribution = None , threat_level_id = None , analysis = None , info = None , date = None , published = False , orgc_id = None , org_id = None , sharing_group_id = None ) :
2017-10-21 20:22:38 +02:00
""" Create and add a new event """
2017-01-09 16:19:20 +01:00
misp_event = self . _prepare_full_event ( distribution , threat_level_id , analysis , info , date , published , orgc_id , org_id , sharing_group_id )
2017-03-15 14:10:51 +01:00
return self . add_event ( misp_event )
2015-09-17 00:51:45 +02:00
2017-02-09 11:59:38 +01:00
def tag ( self , uuid , tag ) :
2017-10-21 20:22:38 +02:00
""" Tag an event or an attribute """
2017-03-08 17:02:34 +01:00
if not self . _valid_uuid ( uuid ) :
raise PyMISPError ( ' Invalid UUID ' )
2017-11-09 02:33:55 +01:00
url = urljoin ( self . root_url , ' tags/attachTagToObject ' )
2017-03-15 11:33:24 +01:00
to_post = { ' uuid ' : uuid , ' tag ' : tag }
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' POST ' , url , json . dumps ( to_post ) )
2017-02-09 11:59:38 +01:00
return self . _check_response ( response )
def untag ( self , uuid , tag ) :
2017-10-21 20:22:38 +02:00
""" Untag an event or an attribute """
2017-03-08 17:02:34 +01:00
if not self . _valid_uuid ( uuid ) :
raise PyMISPError ( ' Invalid UUID ' )
2017-11-09 02:33:55 +01:00
url = urljoin ( self . root_url , ' tags/removeTagFromObject ' )
2017-03-15 11:33:24 +01:00
to_post = { ' uuid ' : uuid , ' tag ' : tag }
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' POST ' , url , json . dumps ( to_post ) )
2017-02-09 11:59:38 +01:00
return self . _check_response ( response )
2015-09-02 11:50:15 +02:00
# ##### File attributes #####
2015-10-30 17:23:25 +01:00
def _send_attributes ( self , event , attributes , proposal = False ) :
2017-11-22 14:57:11 +01:00
"""
Helper to add new attributes to an existing event , identified by an event object or an event id
: param event : EventID ( int ) or Event to alter
: param attributes : One or more attribute to add
: param proposal : True or False based on whether the attributes should be proposed or directly save
: type event : MISPEvent , int
: type attributes : MISPAttribute , list
: type proposal : bool
: return : list of responses
: rtype : list
"""
event_id = self . _extract_event_id ( event )
responses = [ ]
if not event_id :
raise PyMISPError ( " Unable to find the ID of the event to update. " )
if not attributes :
2018-05-30 15:27:20 +02:00
return [ { ' error ' : ' No attributes. ' } ]
2017-11-22 14:57:11 +01:00
# Propals need to be posted in single requests
if proposal :
for a in attributes :
# proposal_add(...) returns a dict
responses . append ( self . proposal_add ( event_id , a ) )
else :
url = urljoin ( self . root_url , ' attributes/add/ {} ' . format ( event_id ) )
if isinstance ( attributes , list ) :
2018-01-12 18:47:45 +01:00
if all ( isinstance ( a , AbstractMISP ) for a in attributes ) :
data = attributes
else :
values = [ ]
for a in attributes :
values . append ( a [ ' value ' ] )
attributes [ 0 ] [ ' value ' ] = values
data = attributes [ 0 ] . to_json ( )
2017-11-22 14:57:11 +01:00
else :
data = attributes . to_json ( )
# __prepare_request(...) returns a requests.Response Object
2018-05-30 15:41:09 +02:00
resp = self . __prepare_request ( ' POST ' , url , json . dumps ( data , cls = MISPEncode ) )
try :
responses . append ( resp . json ( ) )
except Exception :
# The response isn't a json object, appending the text.
responses . append ( resp . text )
2017-11-22 14:57:11 +01:00
return responses
def _extract_event_id ( self , event ) :
"""
Extracts the eventId from a given MISPEvent
: param event : MISPEvent to extract the id from
: type event : MISPEvent
: return : EventId
: rtype : int
"""
event_id = None
2017-03-09 16:32:51 +01:00
if isinstance ( event , MISPEvent ) :
2017-03-15 11:33:24 +01:00
if hasattr ( event , ' id ' ) :
2017-11-22 14:57:11 +01:00
event_id = event . id
2017-03-15 11:33:24 +01:00
elif hasattr ( event , ' uuid ' ) :
2017-11-22 14:57:11 +01:00
event_id = event . uuid
2018-03-26 17:37:02 +02:00
elif isinstance ( event , int ) or ( isinstance ( event , str ) and ( event . isdigit ( ) or self . _valid_uuid ( event ) ) ) :
2017-11-22 14:57:11 +01:00
event_id = event
2015-10-30 17:23:25 +01:00
else :
2017-11-22 14:57:11 +01:00
e = MISPEvent ( describe_types = self . describe_types )
2016-09-27 19:47:22 +02:00
e . load ( event )
2017-03-15 11:33:24 +01:00
if hasattr ( e , ' id ' ) :
2017-11-22 14:57:11 +01:00
event_id = e . id
2017-03-15 11:33:24 +01:00
elif hasattr ( e , ' uuid ' ) :
2017-11-22 14:57:11 +01:00
event_id = e . uuid
return event_id
2017-01-13 14:15:53 +01:00
def add_named_attribute ( self , event , type_value , value , category = None , to_ids = False , comment = None , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add one or more attributes to an existing event """
2016-05-05 11:05:59 +02:00
attributes = [ ]
2016-09-28 18:20:37 +02:00
for value in self . _one_or_more ( value ) :
2017-01-13 14:15:53 +01:00
attributes . append ( self . _prepare_full_attribute ( category , type_value , value , to_ids , comment , distribution , * * kwargs ) )
2016-05-05 11:05:59 +02:00
return self . _send_attributes ( event , attributes , proposal )
2017-04-11 15:35:41 +02:00
def add_hashes ( self , event , category = ' Artifacts dropped ' , filename = None , md5 = None , sha1 = None , sha256 = None , ssdeep = None , comment = None , to_ids = True , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add hashe(s) to an existing event """
2015-09-01 18:46:10 +02:00
attributes = [ ]
type_value = ' {} '
2017-02-23 16:59:37 +01:00
value = ' '
2015-09-01 18:46:10 +02:00
if filename :
type_value = ' filename| {} '
2017-02-23 16:59:37 +01:00
value = filename + ' | '
2015-09-01 18:46:10 +02:00
if md5 :
2017-02-23 16:59:37 +01:00
attributes . append ( self . _prepare_full_attribute ( category , type_value . format ( ' md5 ' ) , value + md5 , to_ids , comment , distribution ) )
2015-09-01 18:46:10 +02:00
if sha1 :
2017-02-23 16:59:37 +01:00
attributes . append ( self . _prepare_full_attribute ( category , type_value . format ( ' sha1 ' ) , value + sha1 , to_ids , comment , distribution ) )
2015-09-01 18:46:10 +02:00
if sha256 :
2017-02-23 16:59:37 +01:00
attributes . append ( self . _prepare_full_attribute ( category , type_value . format ( ' sha256 ' ) , value + sha256 , to_ids , comment , distribution ) )
2016-04-12 19:42:01 +02:00
if ssdeep :
2017-02-23 16:59:37 +01:00
attributes . append ( self . _prepare_full_attribute ( category , type_value . format ( ' ssdeep ' ) , value + ssdeep , to_ids , comment , distribution ) )
2016-04-12 19:42:01 +02:00
2015-10-30 17:23:25 +01:00
return self . _send_attributes ( event , attributes , proposal )
2015-09-01 18:46:10 +02:00
2017-04-11 15:35:41 +02:00
def av_detection_link ( self , event , link , category = ' Antivirus detection ' , to_ids = False , comment = None , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add AV detection link(s) """
2017-04-11 15:35:41 +02:00
return self . add_named_attribute ( event , ' link ' , link , category , to_ids , comment , distribution , proposal , * * kwargs )
2016-06-28 13:12:37 +02:00
2017-04-11 15:35:41 +02:00
def add_detection_name ( self , event , name , category = ' Antivirus detection ' , to_ids = False , comment = None , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add AV detection name(s) """
2017-04-11 15:35:41 +02:00
return self . add_named_attribute ( event , ' text ' , name , category , to_ids , comment , distribution , proposal , * * kwargs )
2016-07-26 19:13:29 +02:00
2017-04-11 15:35:41 +02:00
def add_filename ( self , event , filename , category = ' Artifacts dropped ' , to_ids = False , comment = None , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add filename(s) """
2017-04-11 15:35:41 +02:00
return self . add_named_attribute ( event , ' filename ' , filename , category , to_ids , comment , distribution , proposal , * * kwargs )
2016-04-15 13:47:13 +02:00
2018-01-19 20:27:49 +01:00
def add_attachment ( self , event , attachment , category = ' Artifacts dropped ' , to_ids = False , comment = None , distribution = None , proposal = False , filename = None , * * kwargs ) :
2017-01-16 20:41:32 +01:00
""" Add an attachment to the MISP event
2017-01-13 14:15:53 +01:00
: param event : The event to add an attachment to
: param attachment : Either a file handle or a path to a file - will be uploaded
2018-01-19 20:27:49 +01:00
: param filename : Explicitly defined attachment filename
2017-01-13 14:15:53 +01:00
"""
2017-03-09 16:32:51 +01:00
if isinstance ( attachment , basestring ) and os . path . isfile ( attachment ) :
# We have a file to open
2018-01-19 22:44:10 +01:00
if filename is None :
2018-01-19 20:27:49 +01:00
filename = os . path . basename ( attachment )
2017-03-09 16:32:51 +01:00
with open ( attachment , " rb " ) as f :
fileData = f . read ( )
elif hasattr ( attachment , " read " ) :
# It's a file handle - we can read it but it has no filename
2017-01-13 14:15:53 +01:00
fileData = attachment . read ( )
2018-01-19 22:44:10 +01:00
if filename is None :
2018-01-19 20:27:49 +01:00
filename = ' attachment '
2017-03-09 16:32:51 +01:00
elif isinstance ( attachment , ( tuple , list ) ) :
# tuple/list (filename, pseudofile)
2018-01-19 22:44:10 +01:00
if filename is None :
2018-01-19 20:27:49 +01:00
filename = attachment [ 0 ]
2017-03-09 16:32:51 +01:00
if hasattr ( attachment [ 1 ] , " read " ) :
# Pseudo file
fileData = attachment [ 1 ] . read ( )
2017-01-13 14:15:53 +01:00
else :
2017-03-09 16:32:51 +01:00
fileData = attachment [ 1 ]
else :
# Plain file content, no filename
2018-01-19 22:44:10 +01:00
if filename is None :
2018-01-19 20:27:49 +01:00
filename = ' attachment '
2017-03-09 16:32:51 +01:00
fileData = attachment
if not isinstance ( fileData , bytes ) :
fileData = fileData . encode ( )
2017-01-13 14:15:53 +01:00
# by now we have a string for the file
# we just need to b64 encode it and send it on its way
# also, just decode it to utf-8 to avoid the b'string' format
2017-03-09 16:32:51 +01:00
encodedData = base64 . b64encode ( fileData ) . decode ( " utf-8 " )
2017-01-16 20:41:32 +01:00
2017-01-13 14:15:53 +01:00
# Send it on its way
2017-10-09 21:54:20 +02:00
return self . add_named_attribute ( event , ' attachment ' , filename , category , to_ids , comment , distribution , proposal , data = encodedData , * * kwargs )
2017-01-16 20:41:32 +01:00
2017-04-11 15:35:41 +02:00
def add_regkey ( self , event , regkey , rvalue = None , category = ' Artifacts dropped ' , to_ids = True , comment = None , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add a registry key """
2015-09-01 18:46:10 +02:00
if rvalue :
type_value = ' regkey|value '
value = ' {} | {} ' . format ( regkey , rvalue )
else :
type_value = ' regkey '
value = regkey
attributes = [ ]
attributes . append ( self . _prepare_full_attribute ( category , type_value , value , to_ids , comment , distribution ) )
2015-10-30 17:23:25 +01:00
return self . _send_attributes ( event , attributes , proposal )
2015-09-01 18:46:10 +02:00
2017-04-11 15:35:41 +02:00
def add_regkeys ( self , event , regkeys_values , category = ' Artifacts dropped ' , to_ids = True , comment = None , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add a registry keys """
2016-08-16 11:44:08 +02:00
attributes = [ ]
for regkey , rvalue in regkeys_values . items ( ) :
2016-12-01 10:49:12 +01:00
if rvalue is not None :
2016-08-16 11:44:08 +02:00
type_value = ' regkey|value '
value = ' {} | {} ' . format ( regkey , rvalue )
else :
type_value = ' regkey '
value = regkey
attributes . append ( self . _prepare_full_attribute ( category , type_value , value , to_ids , comment , distribution ) )
return self . _send_attributes ( event , attributes , proposal )
2017-04-11 15:35:41 +02:00
def add_pattern ( self , event , pattern , in_file = True , in_memory = False , category = ' Artifacts dropped ' , to_ids = True , comment = None , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add a pattern(s) in file or in memory """
2016-11-29 09:14:18 +01:00
if not ( in_file or in_memory ) :
raise PyMISPError ( ' Invalid pattern type: please use in_memory=True or in_file=True ' )
itemtype = ' pattern-in-file ' if in_file else ' pattern-in-memory '
2017-04-11 15:35:41 +02:00
return self . add_named_attribute ( event , itemtype , pattern , category , to_ids , comment , distribution , proposal , * * kwargs )
2015-09-01 18:46:10 +02:00
2017-04-11 15:35:41 +02:00
def add_pipe ( self , event , named_pipe , category = ' Artifacts dropped ' , to_ids = True , comment = None , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add pipes(s) """
2016-11-29 09:14:18 +01:00
def scrub ( s ) :
if not s . startswith ( ' \\ . \\ pipe \\ ' ) :
s = ' \\ . \\ pipe \\ {} ' . format ( s )
return s
2016-12-01 14:26:59 +01:00
attributes = list ( map ( scrub , self . _one_or_more ( named_pipe ) ) )
2017-04-11 15:35:41 +02:00
return self . add_named_attribute ( event , ' named pipe ' , attributes , category , to_ids , comment , distribution , proposal , * * kwargs )
2015-09-01 18:46:10 +02:00
2017-04-11 15:35:41 +02:00
def add_mutex ( self , event , mutex , category = ' Artifacts dropped ' , to_ids = True , comment = None , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add mutex(es) """
2016-11-29 09:14:18 +01:00
def scrub ( s ) :
if not s . startswith ( ' \\ BaseNamedObjects \\ ' ) :
s = ' \\ BaseNamedObjects \\ {} ' . format ( s )
2016-12-07 10:54:22 +01:00
return s
2016-12-01 14:26:59 +01:00
attributes = list ( map ( scrub , self . _one_or_more ( mutex ) ) )
2017-04-11 15:35:41 +02:00
return self . add_named_attribute ( event , ' mutex ' , attributes , category , to_ids , comment , distribution , proposal , * * kwargs )
2015-10-06 16:57:28 +02:00
2017-04-11 15:35:41 +02:00
def add_yara ( self , event , yara , category = ' Payload delivery ' , to_ids = False , comment = None , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add yara rule(es) """
2017-04-11 15:35:41 +02:00
return self . add_named_attribute ( event , ' yara ' , yara , category , to_ids , comment , distribution , proposal , * * kwargs )
2016-04-20 10:16:44 +02:00
2015-09-02 11:50:15 +02:00
# ##### Network attributes #####
2017-04-11 15:35:41 +02:00
def add_ipdst ( self , event , ipdst , category = ' Network activity ' , to_ids = True , comment = None , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add destination IP(s) """
2017-04-11 15:35:41 +02:00
return self . add_named_attribute ( event , ' ip-dst ' , ipdst , category , to_ids , comment , distribution , proposal , * * kwargs )
2015-09-02 11:50:15 +02:00
2017-04-11 15:35:41 +02:00
def add_ipsrc ( self , event , ipsrc , category = ' Network activity ' , to_ids = True , comment = None , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add source IP(s) """
2017-04-11 15:35:41 +02:00
return self . add_named_attribute ( event , ' ip-src ' , ipsrc , category , to_ids , comment , distribution , proposal , * * kwargs )
2015-11-05 09:35:43 +01:00
2017-04-11 15:35:41 +02:00
def add_hostname ( self , event , hostname , category = ' Network activity ' , to_ids = True , comment = None , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add hostname(s) """
2017-04-11 15:35:41 +02:00
return self . add_named_attribute ( event , ' hostname ' , hostname , category , to_ids , comment , distribution , proposal , * * kwargs )
2015-09-02 11:50:15 +02:00
2017-04-11 15:35:41 +02:00
def add_domain ( self , event , domain , category = ' Network activity ' , to_ids = True , comment = None , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add domain(s) """
2017-04-11 15:35:41 +02:00
return self . add_named_attribute ( event , ' domain ' , domain , category , to_ids , comment , distribution , proposal , * * kwargs )
2015-09-02 11:50:15 +02:00
2017-04-11 15:35:41 +02:00
def add_domain_ip ( self , event , domain , ip , category = ' Network activity ' , to_ids = True , comment = None , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add domain|ip """
2017-03-10 14:48:11 +01:00
if isinstance ( ip , str ) :
ip = [ ip ]
2016-12-01 14:26:59 +01:00
composed = list ( map ( lambda x : ' %s | %s ' % ( domain , x ) , ip ) )
2017-04-11 15:35:41 +02:00
return self . add_named_attribute ( event , ' domain|ip ' , composed , category , to_ids , comment , distribution , proposal , * * kwargs )
2016-06-27 16:53:13 +02:00
2017-04-11 15:35:41 +02:00
def add_domains_ips ( self , event , domain_ips , category = ' Network activity ' , to_ids = True , comment = None , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add multiple domain|ip """
2016-12-01 14:26:59 +01:00
composed = list ( map ( lambda x : ' %s | %s ' % ( x [ 0 ] , x [ 1 ] ) , domain_ips . items ( ) ) )
2017-04-11 15:35:41 +02:00
return self . add_named_attribute ( event , ' domain|ip ' , composed , category , to_ids , comment , distribution , proposal , * * kwargs )
2016-08-16 11:44:08 +02:00
2017-04-11 15:35:41 +02:00
def add_url ( self , event , url , category = ' Network activity ' , to_ids = True , comment = None , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add url(s) """
2017-04-11 15:35:41 +02:00
return self . add_named_attribute ( event , ' url ' , url , category , to_ids , comment , distribution , proposal , * * kwargs )
2015-09-02 11:50:15 +02:00
2017-04-11 15:35:41 +02:00
def add_useragent ( self , event , useragent , category = ' Network activity ' , to_ids = True , comment = None , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add user agent(s) """
2017-04-11 15:35:41 +02:00
return self . add_named_attribute ( event , ' user-agent ' , useragent , category , to_ids , comment , distribution , proposal , * * kwargs )
2015-09-02 11:50:15 +02:00
2017-04-11 15:35:41 +02:00
def add_traffic_pattern ( self , event , pattern , category = ' Network activity ' , to_ids = True , comment = None , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add pattern(s) in traffic """
2017-04-11 15:35:41 +02:00
return self . add_named_attribute ( event , ' pattern-in-traffic ' , pattern , category , to_ids , comment , distribution , proposal , * * kwargs )
2015-09-02 11:50:15 +02:00
2017-04-11 15:35:41 +02:00
def add_snort ( self , event , snort , category = ' Network activity ' , to_ids = True , comment = None , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add SNORT rule(s) """
2017-04-11 15:35:41 +02:00
return self . add_named_attribute ( event , ' snort ' , snort , category , to_ids , comment , distribution , proposal , * * kwargs )
2015-09-01 18:46:10 +02:00
2018-03-30 17:33:30 +02:00
def add_asn ( self , event , asn , category = ' Network activity ' , to_ids = True , comment = None , distribution = None , proposal = False , * * kwargs ) :
""" Add network ASN """
return self . add_named_attribute ( event , ' AS ' , asn , category , to_ids , comment , distribution , proposal , * * kwargs )
2017-04-11 15:35:41 +02:00
def add_net_other ( self , event , netother , category = ' Network activity ' , to_ids = True , comment = None , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add a free text entry """
2017-04-11 15:35:41 +02:00
return self . add_named_attribute ( event , ' other ' , netother , category , to_ids , comment , distribution , proposal , * * kwargs )
2016-10-20 10:49:06 +02:00
2015-10-06 16:52:58 +02:00
# ##### Email attributes #####
2015-10-30 17:23:25 +01:00
2017-04-11 15:35:41 +02:00
def add_email_src ( self , event , email , category = ' Payload delivery ' , to_ids = True , comment = None , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add a source email """
2017-04-11 15:35:41 +02:00
return self . add_named_attribute ( event , ' email-src ' , email , category , to_ids , comment , distribution , proposal , * * kwargs )
2015-10-06 16:52:58 +02:00
2017-04-11 15:35:41 +02:00
def add_email_dst ( self , event , email , category = ' Payload delivery ' , to_ids = True , comment = None , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add a destination email """
2017-04-11 15:35:41 +02:00
return self . add_named_attribute ( event , ' email-dst ' , email , category , to_ids , comment , distribution , proposal , * * kwargs )
2015-10-06 16:52:58 +02:00
2017-04-11 15:35:41 +02:00
def add_email_subject ( self , event , email , category = ' Payload delivery ' , to_ids = True , comment = None , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add an email subject """
2017-04-11 15:35:41 +02:00
return self . add_named_attribute ( event , ' email-subject ' , email , category , to_ids , comment , distribution , proposal , * * kwargs )
2015-10-06 16:52:58 +02:00
2017-04-11 15:35:41 +02:00
def add_email_attachment ( self , event , email , category = ' Payload delivery ' , to_ids = True , comment = None , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add an email atachment """
2017-04-11 15:35:41 +02:00
return self . add_named_attribute ( event , ' email-attachment ' , email , category , to_ids , comment , distribution , proposal , * * kwargs )
2015-10-30 17:23:25 +01:00
2015-10-06 16:52:58 +02:00
# ##### Target attributes #####
2015-10-30 17:23:25 +01:00
2017-04-11 15:35:41 +02:00
def add_target_email ( self , event , target , category = ' Targeting data ' , to_ids = True , comment = None , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add an target email """
2017-04-11 15:35:41 +02:00
return self . add_named_attribute ( event , ' target-email ' , target , category , to_ids , comment , distribution , proposal , * * kwargs )
2015-10-30 17:23:25 +01:00
2017-04-11 15:35:41 +02:00
def add_target_user ( self , event , target , category = ' Targeting data ' , to_ids = True , comment = None , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add an target user """
2017-04-11 15:35:41 +02:00
return self . add_named_attribute ( event , ' target-user ' , target , category , to_ids , comment , distribution , proposal , * * kwargs )
2015-10-30 17:23:25 +01:00
2017-04-11 15:35:41 +02:00
def add_target_machine ( self , event , target , category = ' Targeting data ' , to_ids = True , comment = None , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add an target machine """
2017-04-11 15:35:41 +02:00
return self . add_named_attribute ( event , ' target-machine ' , target , category , to_ids , comment , distribution , proposal , * * kwargs )
2015-10-30 17:23:25 +01:00
2017-04-11 15:35:41 +02:00
def add_target_org ( self , event , target , category = ' Targeting data ' , to_ids = True , comment = None , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add an target organisation """
2017-04-11 15:35:41 +02:00
return self . add_named_attribute ( event , ' target-org ' , target , category , to_ids , comment , distribution , proposal , * * kwargs )
2015-10-30 17:23:25 +01:00
2017-04-11 15:35:41 +02:00
def add_target_location ( self , event , target , category = ' Targeting data ' , to_ids = True , comment = None , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add an target location """
2017-04-11 15:35:41 +02:00
return self . add_named_attribute ( event , ' target-location ' , target , category , to_ids , comment , distribution , proposal , * * kwargs )
2015-10-30 17:23:25 +01:00
2017-04-11 15:35:41 +02:00
def add_target_external ( self , event , target , category = ' Targeting data ' , to_ids = True , comment = None , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add an target external """
2017-04-11 15:35:41 +02:00
return self . add_named_attribute ( event , ' target-external ' , target , category , to_ids , comment , distribution , proposal , * * kwargs )
2015-10-30 17:23:25 +01:00
2016-03-14 12:17:53 +01:00
# ##### Attribution attributes #####
2017-04-11 15:35:41 +02:00
def add_threat_actor ( self , event , target , category = ' Attribution ' , to_ids = True , comment = None , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add an threat actor """
2017-04-11 15:35:41 +02:00
return self . add_named_attribute ( event , ' threat-actor ' , target , category , to_ids , comment , distribution , proposal , * * kwargs )
2016-04-14 10:29:36 +02:00
2016-04-13 21:40:31 +02:00
# ##### Internal reference attributes #####
2016-04-14 10:29:36 +02:00
2017-04-11 15:35:41 +02:00
def add_internal_link ( self , event , reference , category = ' Internal reference ' , to_ids = False , comment = None , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add an internal link """
2017-04-11 15:35:41 +02:00
return self . add_named_attribute ( event , ' link ' , reference , category , to_ids , comment , distribution , proposal , * * kwargs )
2016-04-14 10:29:36 +02:00
2017-04-11 15:35:41 +02:00
def add_internal_comment ( self , event , reference , category = ' Internal reference ' , to_ids = False , comment = None , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add an internal comment """
2017-04-11 15:35:41 +02:00
return self . add_named_attribute ( event , ' comment ' , reference , category , to_ids , comment , distribution , proposal , * * kwargs )
2016-04-14 10:29:36 +02:00
2017-04-11 15:35:41 +02:00
def add_internal_text ( self , event , reference , category = ' Internal reference ' , to_ids = False , comment = None , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add an internal text """
2017-04-11 15:35:41 +02:00
return self . add_named_attribute ( event , ' text ' , reference , category , to_ids , comment , distribution , proposal , * * kwargs )
2016-04-14 10:29:36 +02:00
2017-04-11 15:35:41 +02:00
def add_internal_other ( self , event , reference , category = ' Internal reference ' , to_ids = False , comment = None , distribution = None , proposal = False , * * kwargs ) :
2017-10-21 20:22:38 +02:00
""" Add an internal reference (type other) """
2017-04-11 15:35:41 +02:00
return self . add_named_attribute ( event , ' other ' , reference , category , to_ids , comment , distribution , proposal , * * kwargs )
2016-03-14 12:17:53 +01:00
2018-06-20 15:54:00 +02:00
# ##### Other attributes #####
def add_other_comment ( self , event , reference , category = ' Other ' , to_ids = False , comment = None , distribution = None , proposal = False , * * kwargs ) :
""" Add other comment """
return self . add_named_attribute ( event , ' comment ' , reference , category , to_ids , comment , distribution , proposal , * * kwargs )
def add_other_counter ( self , event , reference , category = ' Other ' , to_ids = False , comment = None , distribution = None , proposal = False , * * kwargs ) :
""" Add other counter """
return self . add_named_attribute ( event , ' counter ' , reference , category , to_ids , comment , distribution , proposal , * * kwargs )
def add_other_text ( self , event , reference , category = ' Other ' , to_ids = False , comment = None , distribution = None , proposal = False , * * kwargs ) :
""" Add other text """
return self . add_named_attribute ( event , ' text ' , reference , category , to_ids , comment , distribution , proposal , * * kwargs )
2015-09-01 10:31:22 +02:00
# ##################################################
# ######### Upload samples through the API #########
# ##################################################
2015-08-04 16:24:55 +02:00
2016-09-28 18:20:37 +02:00
def _prepare_upload ( self , event_id , distribution , to_ids , category , comment , info ,
analysis , threat_level_id ) :
2017-10-21 20:22:38 +02:00
""" Helper to prepare a sample to upload """
2015-08-06 09:49:44 +02:00
to_post = { ' request ' : { } }
2015-09-01 18:46:10 +02:00
2015-09-13 00:31:27 +02:00
if event_id is not None :
try :
event_id = int ( event_id )
2017-05-03 13:22:15 +02:00
except ValueError :
2015-09-13 00:31:27 +02:00
pass
2015-08-04 16:24:55 +02:00
if not isinstance ( event_id , int ) :
# New event
2016-10-05 11:43:33 +02:00
misp_event = self . _prepare_full_event ( distribution , threat_level_id , analysis , info )
to_post [ ' request ' ] [ ' distribution ' ] = misp_event . distribution
to_post [ ' request ' ] [ ' info ' ] = misp_event . info
to_post [ ' request ' ] [ ' analysis ' ] = misp_event . analysis
to_post [ ' request ' ] [ ' threat_level_id ' ] = misp_event . threat_level_id
2017-11-02 01:26:58 +01:00
else :
if distribution is not None :
to_post [ ' request ' ] [ ' distribution ' ] = distribution
2015-08-04 16:24:55 +02:00
2016-09-28 18:20:37 +02:00
default_values = self . sane_default [ ' malware-sample ' ]
if to_ids is None or not isinstance ( to_ids , bool ) :
to_ids = bool ( int ( default_values [ ' to_ids ' ] ) )
2015-09-01 18:46:10 +02:00
to_post [ ' request ' ] [ ' to_ids ' ] = to_ids
2015-08-04 16:24:55 +02:00
2016-09-28 18:20:37 +02:00
if category is None or category not in self . categories :
category = default_values [ ' default_category ' ]
2015-09-01 18:46:10 +02:00
to_post [ ' request ' ] [ ' category ' ] = category
2015-08-04 16:24:55 +02:00
2016-04-15 15:52:50 +02:00
to_post [ ' request ' ] [ ' comment ' ] = comment
2017-11-02 01:15:49 +01:00
return to_post , event_id
2015-08-06 01:57:59 +02:00
2017-07-18 11:26:09 +02:00
def _encode_file_to_upload ( self , filepath_or_bytes ) :
2017-10-21 20:22:38 +02:00
""" Helper to encode a file to upload """
2018-01-29 10:30:37 +01:00
if isinstance ( filepath_or_bytes , basestring ) :
if os . path . isfile ( filepath_or_bytes ) :
with open ( filepath_or_bytes , ' rb ' ) as f :
binblob = f . read ( )
else :
binblob = filepath_or_bytes . encode ( )
2017-07-18 11:26:09 +02:00
else :
binblob = filepath_or_bytes
return base64 . b64encode ( binblob ) . decode ( )
2015-08-06 01:57:59 +02:00
2017-07-18 11:26:09 +02:00
def upload_sample ( self , filename , filepath_or_bytes , event_id , distribution = None ,
2016-08-16 18:35:34 +02:00
to_ids = True , category = None , comment = None , info = None ,
analysis = None , threat_level_id = None ) :
2017-10-21 20:22:38 +02:00
""" Upload a sample """
2017-11-02 01:15:49 +01:00
to_post , event_id = self . _prepare_upload ( event_id , distribution , to_ids , category ,
comment , info , analysis , threat_level_id )
2017-07-18 11:26:09 +02:00
to_post [ ' request ' ] [ ' files ' ] = [ { ' filename ' : filename , ' data ' : self . _encode_file_to_upload ( filepath_or_bytes ) } ]
2017-11-02 01:15:49 +01:00
return self . _upload_sample ( to_post , event_id )
2015-08-06 01:57:59 +02:00
2016-08-16 18:35:34 +02:00
def upload_samplelist ( self , filepaths , event_id , distribution = None ,
2016-10-05 11:07:40 +02:00
to_ids = True , category = None , comment = None , info = None ,
2016-08-16 18:35:34 +02:00
analysis = None , threat_level_id = None ) :
2017-10-21 20:22:38 +02:00
""" Upload a list of samples """
2017-11-02 01:15:49 +01:00
to_post , event_id = self . _prepare_upload ( event_id , distribution , to_ids , category ,
comment , info , analysis , threat_level_id )
2015-08-28 17:03:35 +02:00
files = [ ]
for path in filepaths :
if not os . path . isfile ( path ) :
continue
files . append ( { ' filename ' : os . path . basename ( path ) , ' data ' : self . _encode_file_to_upload ( path ) } )
to_post [ ' request ' ] [ ' files ' ] = files
2017-11-02 01:15:49 +01:00
return self . _upload_sample ( to_post , event_id )
2015-08-04 16:24:55 +02:00
2017-11-02 01:15:49 +01:00
def _upload_sample ( self , to_post , event_id = None ) :
2017-10-21 20:22:38 +02:00
""" Helper to upload a sample """
2017-11-02 01:15:49 +01:00
if event_id is None :
url = urljoin ( self . root_url , ' events/upload_sample ' )
else :
url = urljoin ( self . root_url , ' events/upload_sample/ {} ' . format ( event_id ) )
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' POST ' , url , json . dumps ( to_post ) )
2015-09-23 18:47:47 +02:00
return self . _check_response ( response )
2015-08-04 16:24:55 +02:00
2015-10-30 17:23:25 +01:00
# ############################
# ######## Proposals #########
# ############################
2017-11-09 02:33:55 +01:00
def __query_proposal ( self , path , id , attribute = None ) :
2017-10-21 20:22:38 +02:00
""" Helper to prepare a query to handle proposals """
2015-10-30 17:23:25 +01:00
url = urljoin ( self . root_url , ' shadow_attributes/ {} / {} ' . format ( path , id ) )
if path in [ ' add ' , ' edit ' ] :
query = { ' request ' : { ' ShadowAttribute ' : attribute } }
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' POST ' , url , json . dumps ( query , cls = MISPEncode ) )
2016-09-28 18:20:37 +02:00
elif path == ' view ' :
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' GET ' , url )
2016-09-28 18:20:37 +02:00
else : # accept or discard
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' POST ' , url )
2015-10-30 17:23:25 +01:00
return self . _check_response ( response )
def proposal_view ( self , event_id = None , proposal_id = None ) :
2017-10-21 20:22:38 +02:00
""" View a proposal """
2015-10-30 17:23:25 +01:00
if proposal_id is not None and event_id is not None :
return { ' error ' : ' You can only view an event ID or a proposal ID ' }
if event_id is not None :
id = event_id
else :
id = proposal_id
2017-11-09 02:33:55 +01:00
return self . __query_proposal ( ' view ' , id )
2015-10-30 17:23:25 +01:00
def proposal_add ( self , event_id , attribute ) :
2017-10-21 20:22:38 +02:00
""" Add a proposal """
2017-11-09 02:33:55 +01:00
return self . __query_proposal ( ' add ' , event_id , attribute )
2015-10-30 17:23:25 +01:00
def proposal_edit ( self , attribute_id , attribute ) :
2017-10-21 20:22:38 +02:00
""" Edit a proposal """
2017-11-09 02:33:55 +01:00
return self . __query_proposal ( ' edit ' , attribute_id , attribute )
2015-10-30 17:23:25 +01:00
def proposal_accept ( self , proposal_id ) :
2017-10-21 20:22:38 +02:00
""" Accept a proposal """
2017-11-09 02:33:55 +01:00
return self . __query_proposal ( ' accept ' , proposal_id )
2015-10-30 17:23:25 +01:00
def proposal_discard ( self , proposal_id ) :
2017-10-21 20:22:38 +02:00
""" Discard a proposal """
2017-11-09 02:33:55 +01:00
return self . __query_proposal ( ' discard ' , proposal_id )
2015-10-30 17:23:25 +01:00
2016-12-09 11:42:07 +01:00
# ##############################
# ###### Attribute update ######
# ##############################
def change_toids ( self , attribute_uuid , to_ids ) :
2017-10-21 20:22:38 +02:00
""" Change the toids flag """
2016-12-09 11:42:07 +01:00
if to_ids not in [ 0 , 1 ] :
raise Exception ( ' to_ids can only be 0 or 1 ' )
query = { " to_ids " : to_ids }
2017-11-09 02:33:55 +01:00
return self . __query ( ' edit/ {} ' . format ( attribute_uuid ) , query , controller = ' attributes ' )
2016-12-09 11:42:07 +01:00
2018-01-18 14:17:52 +01:00
def change_comment ( self , attribute_uuid , comment ) :
""" Change the comment of attribute """
query = { " comment " : comment }
return self . __query ( ' edit/ {} ' . format ( attribute_uuid ) , query , controller = ' attributes ' )
2017-06-13 15:37:39 +02:00
# ##############################
# ###### Attribute update ######
# ##############################
2018-02-13 10:50:51 +01:00
def freetext ( self , event_id , string , adhereToWarninglists = False , distribution = None , returnMetaAttributes = False ) :
2017-10-21 20:22:38 +02:00
""" Pass a text to the freetext importer """
2017-06-13 15:37:39 +02:00
query = { " value " : string }
wl_params = [ False , True , ' soft ' ]
if adhereToWarninglists not in wl_params :
raise Exception ( ' Invalid parameter, adhereToWarninglists Can only be {} ' . format ( ' , ' . join ( wl_params ) ) )
if adhereToWarninglists :
query [ ' adhereToWarninglists ' ] = adhereToWarninglists
if distribution is not None :
query [ ' distribution ' ] = distribution
2018-02-13 10:50:51 +01:00
if returnMetaAttributes :
query [ ' returnMetaAttributes ' ] = returnMetaAttributes
2017-11-09 02:33:55 +01:00
return self . __query ( ' freeTextImport/ {} ' . format ( event_id ) , query , controller = ' events ' )
2017-06-13 15:37:39 +02:00
2015-09-01 10:31:22 +02:00
# ##############################
2014-04-14 10:55:20 +02:00
# ######## REST Search #########
2015-09-01 10:31:22 +02:00
# ##############################
2014-04-11 18:45:52 +02:00
2017-11-09 02:33:55 +01:00
def __query ( self , path , query , controller = ' events ' , async_callback = None ) :
2017-10-21 20:22:38 +02:00
""" Helper to prepare a search query """
2015-09-21 11:52:26 +02:00
if query . get ( ' error ' ) is not None :
return query
2016-08-04 13:21:28 +02:00
if controller not in [ ' events ' , ' attributes ' ] :
raise Exception ( ' Invalid controller. Can only be {} ' . format ( ' , ' . join ( [ ' events ' , ' attributes ' ] ) ) )
url = urljoin ( self . root_url , ' {} / {} ' . format ( controller , path . lstrip ( ' / ' ) ) )
2017-05-03 11:13:18 +02:00
2017-11-09 02:33:55 +01:00
if ASYNC_OK and async_callback :
response = self . __prepare_request ( ' POST ' , url , json . dumps ( query ) , async_callback )
2017-05-03 11:13:18 +02:00
else :
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' POST ' , url , json . dumps ( query ) )
2017-05-03 11:13:18 +02:00
return self . _check_response ( response )
2015-09-21 11:52:26 +02:00
2016-04-04 18:34:08 +02:00
def search_index ( self , published = None , eventid = None , tag = None , datefrom = None ,
2017-01-24 09:46:31 +01:00
dateuntil = None , eventinfo = None , threatlevel = None , distribution = None ,
2018-03-26 17:03:16 +02:00
analysis = None , attribute = None , org = None , async_callback = None , normalize = False ,
timestamp = None ) :
2017-01-16 15:27:44 +01:00
""" Search only at the index level. Use ! infront of value as NOT, default OR
2017-05-03 10:43:45 +02:00
If using async , give a callback that takes 2 args , session and response :
2017-11-19 10:02:03 +01:00
basic usage is
pymisp . search_index ( . . . , async_callback = lambda ses , resp : print ( resp . json ( ) ) )
2017-01-16 15:27:44 +01:00
: param published : Published ( 0 , 1 )
: param eventid : Evend ID ( s ) | str or list
: param tag : Tag ( s ) | str or list
: param datefrom : First date , in format YYYY - MM - DD
2017-01-24 08:46:14 +01:00
: param dateuntil : Last date , in format YYYY - MM - DD
2017-01-16 15:27:44 +01:00
: param eventinfo : Event info ( s ) to match | str or list
: param threatlevel : Threat level ( s ) ( 1 , 2 , 3 , 4 ) | str or list
: param distribution : Distribution level ( s ) ( 0 , 1 , 2 , 3 ) | str or list
: param analysis : Analysis level ( s ) ( 0 , 1 , 2 ) | str or list
: param org : Organisation ( s ) | str or list
2017-05-02 11:12:25 +02:00
: param async_callback : Function to call when the request returns ( if running async )
2017-05-03 10:32:14 +02:00
: param normalize : Normalize output | True or False
2018-03-26 17:03:16 +02:00
: param timestamp : Interval since last update ( in second , or 1 d , 1 h , . . . )
2016-03-31 13:33:04 +02:00
"""
2017-01-24 08:46:14 +01:00
allowed = { ' published ' : published , ' eventid ' : eventid , ' tag ' : tag , ' Dateuntil ' : dateuntil ,
2016-04-04 18:34:08 +02:00
' Datefrom ' : datefrom , ' eventinfo ' : eventinfo , ' threatlevel ' : threatlevel ,
' distribution ' : distribution , ' analysis ' : analysis , ' attribute ' : attribute ,
2018-03-26 17:03:16 +02:00
' org ' : org , ' timestamp ' : timestamp }
2016-04-04 18:34:08 +02:00
rule_levels = { ' distribution ' : [ " 0 " , " 1 " , " 2 " , " 3 " , " !0 " , " !1 " , " !2 " , " !3 " ] ,
' threatlevel ' : [ " 1 " , " 2 " , " 3 " , " 4 " , " !1 " , " !2 " , " !3 " , " !4 " ] ,
2017-01-24 07:56:54 +01:00
' analysis ' : [ " 0 " , " 1 " , " 2 " , " !0 " , " !1 " , " !2 " ] }
2016-03-31 13:33:04 +02:00
buildup_url = " events/index "
2017-04-13 14:51:45 +02:00
to_post = { }
2016-03-31 13:33:04 +02:00
for rule in allowed . keys ( ) :
2017-05-03 10:43:45 +02:00
2017-04-13 14:51:45 +02:00
if allowed . get ( rule ) is None :
continue
param = allowed [ rule ]
2018-07-16 15:01:50 +02:00
if isinstance ( param , bool ) :
param = int ( param )
2017-04-13 14:51:45 +02:00
if not isinstance ( param , list ) :
param = [ param ]
2018-07-16 15:01:50 +02:00
# param = [x for x in map(str, param)]
2017-04-13 14:51:45 +02:00
if rule in rule_levels :
if not set ( param ) . issubset ( rule_levels [ rule ] ) :
raise SearchError ( ' Values in your {} are invalid, has to be in {} ' . format ( rule , ' , ' . join ( str ( x ) for x in rule_levels [ rule ] ) ) )
to_post [ rule ] = ' | ' . join ( str ( x ) for x in param )
2016-03-31 13:33:04 +02:00
url = urljoin ( self . root_url , buildup_url )
2017-02-16 16:39:36 +01:00
2017-05-03 11:13:18 +02:00
if self . asynch and async_callback :
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' POST ' , url , json . dumps ( to_post ) , async_callback )
2017-02-16 16:39:36 +01:00
else :
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' POST ' , url , json . dumps ( to_post ) )
2017-05-03 10:47:44 +02:00
res = self . _check_response ( response )
if normalize :
to_return = { ' response ' : [ ] }
for elem in res [ ' response ' ] :
tmp = { ' Event ' : elem }
to_return [ ' response ' ] . append ( tmp )
res = to_return
return res
2016-03-18 09:38:04 +01:00
2015-08-06 17:42:41 +02:00
def search_all ( self , value ) :
2017-10-21 20:22:38 +02:00
""" Search a value in the whole database """
2015-08-06 17:42:41 +02:00
query = { ' value ' : value , ' searchall ' : 1 }
2017-11-09 02:33:55 +01:00
return self . __query ( ' restSearch/download ' , query )
2015-08-06 17:42:41 +02:00
2014-04-11 18:45:52 +02:00
def __prepare_rest_search ( self , values , not_values ) :
2017-01-16 15:27:44 +01:00
""" Prepare a search, generate the chain processed by the server
2014-04-16 14:09:56 +02:00
2017-01-16 15:27:44 +01:00
: param values : Values to search
: param not_values : Values that should not be in the response
2014-04-11 18:45:52 +02:00
"""
2017-12-14 11:06:52 +01:00
to_return = [ ]
2014-04-11 18:45:52 +02:00
if values is not None :
2017-12-14 11:06:52 +01:00
if isinstance ( values , list ) :
2014-04-11 18:45:52 +02:00
to_return + = values
else :
2017-12-14 11:06:52 +01:00
to_return . append ( values )
2014-04-11 18:45:52 +02:00
if not_values is not None :
2017-12-14 11:06:52 +01:00
if isinstance ( not_values , list ) :
to_return + = [ ' ! {} ' . format ( v ) for v in not_values ]
2014-04-11 18:45:52 +02:00
else :
2017-12-14 11:06:52 +01:00
to_return . append ( ' ! {} ' . format ( not_values ) )
2014-04-11 18:45:52 +02:00
return to_return
2017-05-03 11:13:18 +02:00
def search ( self , controller = ' events ' , async_callback = None , * * kwargs ) :
2017-01-16 15:27:44 +01:00
""" Search via the Rest API
: param values : values to search for
: param not_values : values * not * to search for
: param type_attribute : Type of attribute
: param category : Category to search
: param org : Org reporting the event
: param tags : Tags to search for
: param not_tags : Tags * not * to search for
: param date_from : First date
: param date_to : Last date
2017-11-29 16:46:41 +01:00
: param last : Last published events ( for example 5 d or 12 h or 30 m )
2018-06-03 15:54:27 +02:00
: param eventid : Evend ID ( s ) | str or list
2017-01-24 09:41:30 +01:00
: param withAttachments : return events with or without the attachments
: param uuid : search by uuid
: param publish_timestamp : the publish timestamp
2017-12-11 15:01:25 +01:00
: param timestamp : the timestamp of the last modification . Can be a list ( from - > to )
2017-01-24 09:41:30 +01:00
: param enforceWarninglist : Enforce the warning lists
: param searchall : full text search on the database
: param metadata : return only metadata if True
: param published : return only published events
: param to_ids : return only the attributes with the to_ids flag set
: param deleted : also return the deleted attributes
2018-04-12 10:43:17 +02:00
: param event_timestamp : the timestamp of the last modification of the event ( attributes controller only ) ) . Can be a list ( from - > to )
2017-05-03 11:13:18 +02:00
: param async_callback : The function to run when results are returned
2014-04-11 18:45:52 +02:00
"""
2017-07-18 12:07:47 +02:00
query = { }
2017-01-24 09:41:30 +01:00
# Event: array('value', 'type', 'category', 'org', 'tags', 'from', 'to', 'last', 'eventid', 'withAttachments', 'uuid', 'publish_timestamp', 'timestamp', 'enforceWarninglist', 'searchall', 'metadata', 'published');
# Attribute: array('value', 'type', 'category', 'org', 'tags', 'from', 'to', 'last', 'eventid', 'withAttachments', 'uuid', 'publish_timestamp', 'timestamp', 'enforceWarninglist', 'to_ids', 'deleted');
2017-07-18 12:07:47 +02:00
val = self . __prepare_rest_search ( kwargs . pop ( ' values ' , None ) , kwargs . pop ( ' not_values ' , None ) )
2017-12-14 11:06:52 +01:00
if val :
2015-02-16 14:31:29 +01:00
query [ ' value ' ] = val
2017-01-24 09:41:30 +01:00
2017-07-18 12:07:47 +02:00
query [ ' type ' ] = kwargs . pop ( ' type_attribute ' , None )
query [ ' category ' ] = kwargs . pop ( ' category ' , None )
query [ ' org ' ] = kwargs . pop ( ' org ' , None )
2017-01-24 09:41:30 +01:00
2017-07-18 12:07:47 +02:00
tag = self . __prepare_rest_search ( kwargs . pop ( ' tags ' , None ) , kwargs . pop ( ' not_tags ' , None ) )
2017-12-14 11:06:52 +01:00
if tag :
2015-02-16 14:31:29 +01:00
query [ ' tags ' ] = tag
2017-01-24 09:41:30 +01:00
2017-07-18 12:07:47 +02:00
date_from = kwargs . pop ( ' date_from ' , None )
if date_from :
if isinstance ( date_from , datetime . date ) or isinstance ( date_from , datetime . datetime ) :
query [ ' from ' ] = date_from . strftime ( ' % Y- % m- %d ' )
2015-02-16 14:31:29 +01:00
else :
2017-07-18 12:07:47 +02:00
query [ ' from ' ] = date_from
2017-01-24 09:41:30 +01:00
2017-07-18 12:07:47 +02:00
date_to = kwargs . pop ( ' date_to ' , None )
if date_to :
if isinstance ( date_to , datetime . date ) or isinstance ( date_to , datetime . datetime ) :
query [ ' to ' ] = date_to . strftime ( ' % Y- % m- %d ' )
2015-02-16 14:31:29 +01:00
else :
2017-07-18 12:07:47 +02:00
query [ ' to ' ] = date_to
2017-01-24 09:41:30 +01:00
2017-07-18 12:07:47 +02:00
query [ ' last ' ] = kwargs . pop ( ' last ' , None )
query [ ' eventid ' ] = kwargs . pop ( ' eventid ' , None )
query [ ' withAttachments ' ] = kwargs . pop ( ' withAttachments ' , None )
2017-01-24 09:41:30 +01:00
2017-07-18 12:07:47 +02:00
uuid = kwargs . pop ( ' uuid ' , None )
if uuid :
if self . _valid_uuid ( uuid ) :
query [ ' uuid ' ] = uuid
2017-01-04 11:23:18 +01:00
else :
return { ' error ' : ' You must enter a valid uuid. ' }
2014-04-11 18:45:52 +02:00
2017-07-18 12:07:47 +02:00
query [ ' publish_timestamp ' ] = kwargs . pop ( ' publish_timestamp ' , None )
query [ ' timestamp ' ] = kwargs . pop ( ' timestamp ' , None )
query [ ' enforceWarninglist ' ] = kwargs . pop ( ' enforceWarninglist ' , None )
query [ ' to_ids ' ] = kwargs . pop ( ' to_ids ' , None )
query [ ' deleted ' ] = kwargs . pop ( ' deleted ' , None )
2018-06-28 10:43:21 +02:00
query [ ' published ' ] = kwargs . pop ( ' published ' , None )
2017-01-24 09:41:30 +01:00
if controller == ' events ' :
# Event search only:
2017-07-18 12:07:47 +02:00
query [ ' searchall ' ] = kwargs . pop ( ' searchall ' , None )
query [ ' metadata ' ] = kwargs . pop ( ' metadata ' , None )
2018-04-12 10:43:17 +02:00
if controller == ' attributes ' :
query [ ' event_timestamp ' ] = kwargs . pop ( ' event_timestamp ' , None )
2017-01-24 09:41:30 +01:00
2017-07-18 12:07:47 +02:00
# Cleanup
query = { k : v for k , v in query . items ( ) if v is not None }
2017-01-24 09:41:30 +01:00
2017-07-18 12:07:47 +02:00
if kwargs :
raise SearchError ( ' Unused parameter: {} ' . format ( ' , ' . join ( kwargs . keys ( ) ) ) )
2017-01-24 09:41:30 +01:00
2017-05-03 11:13:18 +02:00
# Create a session, make it async if and only if we have a callback
2017-11-09 02:33:55 +01:00
return self . __query ( ' restSearch/download ' , query , controller , async_callback )
2014-04-11 18:45:52 +02:00
2017-07-18 10:55:49 +02:00
def get_attachment ( self , attribute_id ) :
""" Get an attachement (not a malware sample) by attribute ID.
Returns the attachment as a bytestream , or a dictionary containing the error message .
2014-04-16 14:09:56 +02:00
2017-07-18 10:55:49 +02:00
: param attribute_id : Attribute ID to fetched
2014-04-11 18:45:52 +02:00
"""
2018-07-16 13:46:29 +02:00
url = urljoin ( self . root_url , ' attributes/download/ {} ' . format ( attribute_id ) )
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' GET ' , url )
2017-07-18 10:55:49 +02:00
try :
response . json ( )
# The query fails, response contains a json blob
return self . _check_response ( response )
except ValueError :
# content contains the attachment in binary
return response . content
2014-04-11 18:45:52 +02:00
2015-08-19 10:42:24 +02:00
def get_yara ( self , event_id ) :
2017-10-21 20:22:38 +02:00
""" Get the yara rules from an event """
2017-11-09 02:33:55 +01:00
url = urljoin ( self . root_url , ' attributes/restSearch ' )
2015-08-19 10:42:24 +02:00
to_post = { ' request ' : { ' eventid ' : event_id , ' type ' : ' yara ' } }
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' POST ' , url , data = json . dumps ( to_post ) )
2015-09-23 18:47:47 +02:00
result = self . _check_response ( response )
if result . get ( ' error ' ) is not None :
return False , result . get ( ' error ' )
if not result . get ( ' response ' ) :
2015-08-19 10:42:24 +02:00
return False , result . get ( ' message ' )
rules = ' \n \n ' . join ( [ a [ ' value ' ] for a in result [ ' response ' ] [ ' Attribute ' ] ] )
return True , rules
2018-06-12 16:16:40 +02:00
def download_samples ( self , sample_hash = None , event_id = None , all_samples = False , unzip = True ) :
2017-10-21 20:22:38 +02:00
""" Download samples, by hash or event ID. If there are multiple samples in one event, use the all_samples switch """
2017-11-09 02:33:55 +01:00
url = urljoin ( self . root_url , ' attributes/downloadSample ' )
2015-08-07 17:24:03 +02:00
to_post = { ' request ' : { ' hash ' : sample_hash , ' eventID ' : event_id , ' allSamples ' : all_samples } }
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' POST ' , url , data = json . dumps ( to_post ) )
2015-09-23 18:47:47 +02:00
result = self . _check_response ( response )
if result . get ( ' error ' ) is not None :
return False , result . get ( ' error ' )
if not result . get ( ' result ' ) :
2015-08-07 17:24:03 +02:00
return False , result . get ( ' message ' )
details = [ ]
for f in result [ ' result ' ] :
2015-09-12 23:08:06 +02:00
decoded = base64 . b64decode ( f [ ' base64 ' ] )
zipped = BytesIO ( decoded )
2018-06-12 16:16:40 +02:00
if unzip :
try :
archive = zipfile . ZipFile ( zipped )
if f . get ( ' md5 ' ) and f [ ' md5 ' ] in archive . namelist ( ) :
# New format
unzipped = BytesIO ( archive . open ( f [ ' md5 ' ] , pwd = b ' infected ' ) . read ( ) )
else :
# Old format
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
details . append ( [ f [ ' event_id ' ] , f [ ' filename ' ] , zipped ] )
else :
details . append ( [ f [ ' event_id ' ] , " {0} .zip " . format ( f [ ' filename ' ] ) , zipped ] )
2015-08-07 17:24:03 +02:00
return True , details
2015-08-05 17:20:59 +02:00
def download_last ( self , last ) :
2017-11-29 16:46:41 +01:00
""" Download the last published events.
2015-08-05 17:20:59 +02:00
2017-01-16 15:27:44 +01:00
: param last : can be defined in days , hours , minutes ( for example 5 d or 12 h or 30 m )
2015-08-05 17:20:59 +02:00
"""
return self . search ( last = last )
2017-12-11 15:01:25 +01:00
def _string_to_timestamp ( self , date_string ) :
pydate = parse ( date_string )
if sys . version_info > = ( 3 , 3 ) :
# Sane python version
timestamp = pydate . timestamp ( )
else :
# Whatever
from datetime import timezone # Only for Python < 3.3
timestamp = ( pydate - datetime ( 1970 , 1 , 1 , tzinfo = timezone . utc ) ) . total_seconds ( )
return timestamp
2017-11-29 16:46:41 +01:00
def get_events_last_modified ( self , search_from , search_to = None ) :
""" Download the last modified events.
2017-12-11 15:01:25 +01:00
: param search_from : Beginning of the interval . Can be either a timestamp , or a date ( 2000 - 12 - 21 )
: param search_to : End of the interval . Can be either a timestamp , or a date ( 2000 - 12 - 21 )
2017-11-29 16:46:41 +01:00
"""
2017-12-11 15:01:25 +01:00
search_from = self . _string_to_timestamp ( search_from )
if search_to is not None :
search_to = self . _string_to_timestamp ( search_to )
to_search = [ search_from , search_to ]
else :
to_search = search_from
return self . search ( timestamp = to_search )
2017-11-29 16:46:41 +01:00
2015-12-21 18:58:08 +01:00
# ########## Tags ##########
def get_all_tags ( self , quiet = False ) :
2017-10-21 20:22:38 +02:00
""" Get all the tags used on the instance """
2015-12-21 18:58:08 +01:00
url = urljoin ( self . root_url , ' tags ' )
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' GET ' , url )
2015-12-21 18:58:08 +01:00
r = self . _check_response ( response )
if not quiet or r . get ( ' errors ' ) :
return r
else :
to_return = [ ]
for tag in r [ ' Tag ' ] :
to_return . append ( tag [ ' name ' ] )
return to_return
2018-01-19 15:57:40 +01:00
def new_tag ( self , name = None , colour = " #00ace6 " , exportable = False , hide_tag = False ) :
2017-10-21 20:22:38 +02:00
""" Create a new tag """
2018-01-19 15:57:40 +01:00
to_post = { ' Tag ' : { ' name ' : name , ' colour ' : colour , ' exportable ' : exportable , ' hide_tag ' : hide_tag } }
2016-03-14 12:17:53 +01:00
url = urljoin ( self . root_url , ' tags/add ' )
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' POST ' , url , json . dumps ( to_post ) )
2016-03-14 12:17:53 +01:00
return self . _check_response ( response )
2015-09-17 13:51:31 +02:00
# ########## Version ##########
2015-09-18 12:03:56 +02:00
def get_api_version ( self ) :
2017-01-16 15:27:44 +01:00
""" Returns the current version of PyMISP installed on the system """
2015-09-18 12:03:56 +02:00
return { ' version ' : __version__ }
def get_api_version_master ( self ) :
2017-01-16 15:27:44 +01:00
""" Get the most recent version of PyMISP from github """
2015-09-18 12:03:56 +02:00
r = requests . get ( ' https://raw.githubusercontent.com/MISP/PyMISP/master/pymisp/__init__.py ' )
if r . status_code == 200 :
version = re . findall ( " __version__ = ' (.*) ' " , r . text )
return { ' version ' : version [ 0 ] }
else :
2015-09-23 18:47:47 +02:00
return { ' error ' : ' Impossible to retrieve the version of the master branch. ' }
2015-09-18 12:03:56 +02:00
2017-01-27 11:58:00 +01:00
def get_recommended_api_version ( self ) :
""" Returns the recommended API version from the server """
url = urljoin ( self . root_url , ' servers/getPyMISPVersion.json ' )
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' GET ' , url )
2017-01-27 11:58:00 +01:00
return self . _check_response ( response )
2015-09-17 13:51:31 +02:00
def get_version ( self ) :
2017-01-16 15:27:44 +01:00
""" Returns the version of the instance. """
2016-08-18 13:18:58 +02:00
url = urljoin ( self . root_url , ' servers/getVersion.json ' )
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' GET ' , url )
2015-09-23 18:47:47 +02:00
return self . _check_response ( response )
2015-09-17 13:51:31 +02:00
def get_version_master ( self ) :
2017-01-16 15:27:44 +01:00
""" Get the most recent version from github """
2016-06-15 02:44:36 +02:00
r = requests . get ( ' https://raw.githubusercontent.com/MISP/MISP/2.4/VERSION.json ' )
2015-09-17 13:51:31 +02:00
if r . status_code == 200 :
master_version = json . loads ( r . text )
return { ' version ' : ' {} . {} . {} ' . format ( master_version [ ' major ' ] , master_version [ ' minor ' ] , master_version [ ' hotfix ' ] ) }
else :
2015-09-23 18:47:47 +02:00
return { ' error ' : ' Impossible to retrieve the version of the master branch. ' }
2016-10-21 13:42:22 +02:00
2016-04-28 13:29:54 +02:00
# ############## Statistics ##################
2016-08-09 13:58:54 +02:00
def get_attributes_statistics ( self , context = ' type ' , percentage = None ) :
2017-01-16 15:27:44 +01:00
""" Get attributes statistics from the MISP instance """
2016-04-28 13:29:54 +02:00
if ( context != ' category ' ) :
2016-04-28 14:45:02 +02:00
context = ' type '
2016-06-15 04:44:08 +02:00
if percentage is not None :
2016-04-28 13:29:54 +02:00
url = urljoin ( self . root_url , ' attributes/attributeStatistics/ {} / {} ' . format ( context , percentage ) )
else :
url = urljoin ( self . root_url , ' attributes/attributeStatistics/ {} ' . format ( context ) )
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' GET ' , url )
2016-08-09 13:58:54 +02:00
return self . _check_response ( response )
2016-04-28 13:29:54 +02:00
2016-08-09 13:58:54 +02:00
def get_tags_statistics ( self , percentage = None , name_sort = None ) :
2017-01-16 15:27:44 +01:00
""" Get tags statistics from the MISP instance """
2016-06-15 04:44:08 +02:00
if percentage is not None :
2016-05-23 15:16:31 +02:00
percentage = ' true '
else :
percentage = ' false '
2016-06-15 04:44:08 +02:00
if name_sort is not None :
2016-05-23 15:16:31 +02:00
name_sort = ' true '
else :
name_sort = ' false '
url = urljoin ( self . root_url , ' tags/tagStatistics/ {} / {} ' . format ( percentage , name_sort ) )
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' GET ' , url )
2016-08-09 13:58:54 +02:00
return self . _check_response ( response )
2016-05-23 15:16:31 +02:00
2016-07-01 10:33:44 +02:00
# ############## Sightings ##################
2016-04-29 16:35:27 +02:00
2016-08-09 13:58:54 +02:00
def sighting_per_id ( self , attribute_id ) :
2017-10-21 20:22:38 +02:00
""" Add a sighting to an attribute (by attribute ID) """
2016-05-23 15:16:31 +02:00
url = urljoin ( self . root_url , ' sightings/add/ {} ' . format ( attribute_id ) )
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' POST ' , url )
2016-08-09 13:58:54 +02:00
return self . _check_response ( response )
2016-04-29 16:35:27 +02:00
2016-08-09 13:58:54 +02:00
def sighting_per_uuid ( self , attribute_uuid ) :
2017-10-21 20:22:38 +02:00
""" Add a sighting to an attribute (by attribute UUID) """
2016-05-23 15:16:31 +02:00
url = urljoin ( self . root_url , ' sightings/add/ {} ' . format ( attribute_uuid ) )
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' POST ' , url )
2016-08-09 13:58:54 +02:00
return self . _check_response ( response )
2016-04-29 16:35:27 +02:00
2017-02-17 10:32:25 +01:00
def set_sightings ( self , sightings ) :
2017-12-28 10:17:57 +01:00
""" Push a sighting (python dictionary or MISPSighting) or a list of sightings """
2017-12-26 17:13:57 +01:00
if not isinstance ( sightings , list ) :
sightings = [ sightings ]
for sighting in sightings :
if isinstance ( sighting , MISPSighting ) :
2017-12-28 10:17:57 +01:00
to_post = sighting . to_json ( )
2017-12-26 17:13:57 +01:00
elif isinstance ( sighting , dict ) :
2017-12-28 10:17:57 +01:00
to_post = json . dumps ( sighting )
url = urljoin ( self . root_url , ' sightings/add/ ' )
response = self . __prepare_request ( ' POST ' , url , to_post )
2016-08-09 13:58:54 +02:00
return self . _check_response ( response )
2016-04-29 16:35:27 +02:00
2017-02-17 10:32:25 +01:00
def sighting_per_json ( self , json_file ) :
2017-10-21 20:22:38 +02:00
""" Push a sighting (JSON file) """
2017-03-09 16:32:51 +01:00
with open ( json_file , ' r ' ) as f :
2017-02-17 10:32:25 +01:00
jdata = json . load ( f )
return self . set_sightings ( jdata )
2018-01-25 16:24:24 +01:00
def sighting ( self , value = None , uuid = None , id = None , source = None , type = None , timestamp = None , * * kwargs ) :
2017-12-26 17:13:57 +01:00
""" Set a single sighting.
2018-01-25 16:24:24 +01:00
: value : Value of the attribute the sighting is related too . Pushing this object
will update the sighting count of each attriutes with thifs value on the instance
: uuid : UUID of the attribute to update
: id : ID of the attriute to update
2017-12-26 17:13:57 +01:00
: source : Source of the sighting
: type : Type of the sighting
: timestamp : Timestamp associated to the sighting
"""
s = MISPSighting ( )
2018-01-25 16:24:24 +01:00
s . from_dict ( value = value , uuid = uuid , id = id , source = source , type = type , timestamp = timestamp , * * kwargs )
2017-12-26 17:13:57 +01:00
return self . set_sightings ( s )
2018-03-26 17:03:16 +02:00
2018-02-21 15:12:26 +01:00
def sighting_list ( self , element_id , scope = " attribute " , org_id = False ) :
""" Get the list of sighting.
: param element_id : could be an event id or attribute id
: type element_id : int
: param scope : could be attribute or event
: return : A json list of sighting corresponding to the search
: rtype : list
2018-03-26 17:03:16 +02:00
2018-02-21 15:12:26 +01:00
: Example :
2018-03-26 17:03:16 +02:00
2018-02-21 15:12:26 +01:00
>> > misp . sighting_list ( 4731 ) # default search on attribute
[ . . . ]
>> > misp . sighting_list ( 42 , event ) # return list of sighting for event 42
[ . . . ]
>> > misp . sighting_list ( element_id = 42 , org_id = 2 , scope = event ) # return list of sighting for event 42 filtered with org id 2
"""
if isinstance ( element_id , int ) is False :
raise Exception ( ' Invalid parameter, element_id must be a number ' )
if scope not in [ " attribute " , " event " ] :
raise Exception ( ' scope parameter must be " attribute " or " event " ' )
if org_id is not False :
if isinstance ( org_id , int ) is False :
raise Exception ( ' Invalid parameter, org_id must be a number ' )
else :
org_id = " "
2018-03-26 17:03:16 +02:00
uri = ' sightings/listSightings/ {} / {} / {} ' . format ( element_id , scope , org_id )
2018-02-21 15:12:26 +01:00
url = urljoin ( self . root_url , uri )
response = self . __prepare_request ( ' POST ' , url )
return self . _check_response ( response )
2017-12-26 17:13:57 +01:00
2016-05-19 14:09:01 +02:00
# ############## Sharing Groups ##################
def get_sharing_groups ( self ) :
2017-10-21 20:22:38 +02:00
""" Get the existing sharing groups """
2017-01-16 20:47:43 +01:00
url = urljoin ( self . root_url , ' sharing_groups.json ' )
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' GET ' , url )
2017-01-11 20:29:20 +01:00
return self . _check_response ( response ) [ ' response ' ]
2016-11-03 11:23:48 +01:00
# ############## Users ##################
def get_users_list ( self ) :
2018-04-25 16:44:00 +02:00
return self . _rest_list ( ' admin/users ' )
2016-11-03 11:23:48 +01:00
def get_user ( self , user_id ) :
2018-04-25 16:44:00 +02:00
return self . _rest_view ( ' admin/users ' , user_id )
2016-11-03 11:23:48 +01:00
2017-01-25 15:09:12 +01:00
def add_user ( self , email , org_id , role_id , * * kwargs ) :
2017-11-17 16:51:46 +01:00
new_user = MISPUser ( )
new_user . from_dict ( email = email , org_id = org_id , role_id = role_id , * * kwargs )
2018-04-25 16:44:00 +02:00
return self . _rest_add ( ' admin/users ' , new_user )
2016-11-04 11:58:21 +01:00
def add_user_json ( self , json_file ) :
2017-03-09 16:32:51 +01:00
with open ( json_file , ' r ' ) as f :
2017-01-25 15:09:12 +01:00
jdata = json . load ( f )
2018-04-25 16:44:00 +02:00
new_user = MISPUser ( )
new_user . from_dict ( * * jdata )
return self . _rest_add ( ' admin/users ' , new_user )
2016-11-03 11:23:48 +01:00
2017-01-25 15:09:12 +01:00
def get_user_fields_list ( self ) :
2018-04-25 16:44:00 +02:00
return self . _rest_get_parameters ( ' admin/users ' )
2016-11-03 11:23:48 +01:00
2017-01-25 15:09:12 +01:00
def edit_user ( self , user_id , * * kwargs ) :
2017-11-17 16:51:46 +01:00
edit_user = MISPUser ( )
edit_user . from_dict ( * * kwargs )
2018-04-25 16:44:00 +02:00
return self . _rest_edit ( ' admin/users ' , edit_user , user_id )
2016-11-04 11:58:21 +01:00
def edit_user_json ( self , json_file , user_id ) :
2017-03-09 16:32:51 +01:00
with open ( json_file , ' r ' ) as f :
2017-01-25 15:09:12 +01:00
jdata = json . load ( f )
2018-04-25 16:44:00 +02:00
new_user = MISPUser ( )
new_user . from_dict ( * * jdata )
return self . _rest_edit ( ' admin/users ' , new_user , user_id )
2016-11-03 11:23:48 +01:00
2017-01-25 15:09:12 +01:00
def delete_user ( self , user_id ) :
2018-04-25 16:44:00 +02:00
return self . _rest_delete ( ' admin/users ' , user_id )
2017-01-25 15:09:12 +01:00
# ############## Organisations ##################
2017-04-06 14:52:50 +02:00
def get_organisations_list ( self , scope = " local " ) :
2017-04-11 15:59:12 +02:00
scope = scope . lower ( )
2017-04-06 14:52:50 +02:00
if scope not in [ " local " , " external " , " all " ] :
raise ValueError ( " Authorized fields are ' local ' , ' external ' or ' all ' " )
2018-04-25 16:44:00 +02:00
return self . _rest_list ( ' organisations/index/scope: {} ' . format ( scope ) )
2017-01-25 15:09:12 +01:00
def get_organisation ( self , organisation_id ) :
2018-04-25 16:44:00 +02:00
return self . _rest_view ( ' organisations ' , organisation_id )
2016-11-03 11:23:48 +01:00
2017-01-25 15:09:12 +01:00
def add_organisation ( self , name , * * kwargs ) :
2017-11-17 16:51:46 +01:00
new_org = MISPOrganisation ( )
new_org . from_dict ( name = name , * * kwargs )
2017-04-11 15:59:12 +02:00
if ' local ' in new_org :
if new_org . get ( ' local ' ) is False :
2017-04-07 17:13:11 +02:00
if ' uuid ' not in new_org :
raise PyMISPError ( ' A remote org MUST have a valid uuid ' )
2018-04-25 16:44:00 +02:00
return self . _rest_add ( ' admin/organisations ' , new_org )
2017-01-25 15:09:12 +01:00
def add_organisation_json ( self , json_file ) :
2017-03-09 16:32:51 +01:00
with open ( json_file , ' r ' ) as f :
2017-01-25 15:09:12 +01:00
jdata = json . load ( f )
2018-04-25 16:44:00 +02:00
new_org = MISPOrganisation ( )
new_org . from_dict ( * * jdata )
return self . _rest_add ( ' admin/organisations ' , new_org )
2017-01-25 15:09:12 +01:00
def get_organisation_fields_list ( self ) :
2018-04-25 16:44:00 +02:00
return self . _rest_get_parameters ( ' admin/organisations ' )
2017-01-25 15:09:12 +01:00
def edit_organisation ( self , org_id , * * kwargs ) :
2017-11-17 16:51:46 +01:00
edit_org = MISPOrganisation ( )
edit_org . from_dict ( * * kwargs )
2018-04-25 16:44:00 +02:00
return self . _rest_edit ( ' admin/organisations ' , edit_org , org_id )
2017-01-25 15:09:12 +01:00
def edit_organisation_json ( self , json_file , org_id ) :
2017-03-09 16:32:51 +01:00
with open ( json_file , ' r ' ) as f :
2017-01-25 15:09:12 +01:00
jdata = json . load ( f )
2018-04-25 16:44:00 +02:00
edit_org = MISPOrganisation ( )
edit_org . from_dict ( * * jdata )
return self . _rest_edit ( ' admin/organisations ' , edit_org , org_id )
2017-01-25 15:09:12 +01:00
def delete_organisation ( self , org_id ) :
2018-04-25 16:44:00 +02:00
return self . _rest_delete ( ' admin/organisations ' , org_id )
2017-02-22 17:22:00 +01:00
# ############## Servers ##################
def _set_server_organisation ( self , server , organisation ) :
2017-04-07 17:10:47 +02:00
if organisation is None :
raise PyMISPError ( ' Need a valid organisation as argument, create it before if needed ' )
if ' Organisation ' in organisation :
2017-04-11 15:59:12 +02:00
organisation = organisation . get ( ' Organisation ' )
2017-04-07 17:10:47 +02:00
if ' local ' not in organisation :
raise PyMISPError ( ' Need a valid organisation as argument. " local " value have not been set in this organisation ' )
if ' id ' not in organisation :
raise PyMISPError ( ' Need a valid organisation as argument. " id " value doesn \' t exist in provided organisation ' )
2017-04-11 15:59:12 +02:00
if organisation . get ( ' local ' ) : # Local organisation is '0' and remote organisation is '1'. These values are extracted from web interface of MISP
2017-04-07 17:10:47 +02:00
organisation_type = 0
else :
organisation_type = 1
server [ ' organisation_type ' ] = organisation_type
server [ ' json ' ] = json . dumps ( { ' id ' : organisation [ ' id ' ] } )
2017-02-22 17:22:00 +01:00
return server
def _set_server_parameters ( self , url , name , authkey , organisation , internal ,
2017-02-23 16:59:37 +01:00
push , pull , self_signed , push_rules , pull_rules ,
submitted_cert , submitted_client_cert , delete_cert ,
delete_client_cert ) :
2017-02-22 17:22:00 +01:00
server = { }
self . _set_server_organisation ( server , organisation )
if url is not None :
server [ ' url ' ] = url
if name is not None :
server [ ' name ' ] = name
if authkey is not None :
server [ ' authkey ' ] = authkey
if internal is not None :
server [ ' internal ' ] = internal
if push is not None :
server [ ' push ' ] = push
if pull is not None :
server [ ' pull ' ] = pull
if self_signed is not None :
server [ ' self_signed ' ] = self_signed
if push_rules is not None :
server [ ' push_rules ' ] = push_rules
if pull_rules is not None :
server [ ' pull_rules ' ] = pull_rules
if submitted_cert is not None :
server [ ' submitted_cert ' ] = submitted_cert
if submitted_client_cert is not None :
server [ ' submitted_client_cert ' ] = submitted_client_cert
2017-02-23 14:24:01 +01:00
if delete_cert is not None :
server [ ' delete_cert ' ] = delete_cert
if delete_client_cert is not None :
server [ ' delete_client_cert ' ] = delete_client_cert
2017-02-22 17:22:00 +01:00
return server
2017-04-10 14:13:53 +02:00
def add_server ( self , url , name , authkey , organisation , internal = None , push = False ,
pull = False , self_signed = False , push_rules = " " , pull_rules = " " ,
2017-02-23 16:59:37 +01:00
submitted_cert = None , submitted_client_cert = None ) :
2017-02-22 17:22:00 +01:00
new_server = self . _set_server_parameters ( url , name , authkey , organisation , internal ,
2017-02-23 16:59:37 +01:00
push , pull , self_signed , push_rules , pull_rules , submitted_cert ,
submitted_client_cert , None , None )
2017-02-22 17:22:00 +01:00
url = urljoin ( self . root_url , ' servers/add ' )
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' POST ' , url , json . dumps ( new_server ) )
2017-02-22 17:22:00 +01:00
return self . _check_response ( response )
def add_server_json ( self , json_file ) :
2017-03-09 16:32:51 +01:00
with open ( json_file , ' r ' ) as f :
jdata = json . load ( f )
2017-02-22 17:22:00 +01:00
url = urljoin ( self . root_url , ' servers/add ' )
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' POST ' , url , json . dumps ( jdata ) )
2017-02-22 17:22:00 +01:00
return self . _check_response ( response )
2017-02-23 14:24:01 +01:00
2017-04-10 14:13:53 +02:00
def edit_server ( self , server_id , url = None , name = None , authkey = None , organisation = None , internal = None , push = False ,
pull = False , self_signed = False , push_rules = " " , pull_rules = " " ,
2017-02-23 16:59:37 +01:00
submitted_cert = None , submitted_client_cert = None , delete_cert = None , delete_client_cert = None ) :
2017-02-23 14:24:01 +01:00
new_server = self . _set_server_parameters ( url , name , authkey , organisation , internal ,
2017-02-23 16:59:37 +01:00
push , pull , self_signed , push_rules , pull_rules , submitted_cert ,
submitted_client_cert , delete_cert , delete_client_cert )
2017-02-23 14:24:01 +01:00
url = urljoin ( self . root_url , ' servers/edit/ {} ' . format ( server_id ) )
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' POST ' , url , json . dumps ( new_server ) )
2017-02-23 14:24:01 +01:00
return self . _check_response ( response )
2017-02-23 16:59:37 +01:00
def edit_server_json ( self , json_file , server_id ) :
2017-03-09 16:32:51 +01:00
with open ( json_file , ' r ' ) as f :
jdata = json . load ( f )
2017-02-23 14:24:01 +01:00
url = urljoin ( self . root_url , ' servers/edit/ {} ' . format ( server_id ) )
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' POST ' , url , json . dumps ( jdata ) )
2017-02-23 14:24:01 +01:00
return self . _check_response ( response )
2017-03-09 16:32:51 +01:00
2017-07-15 20:35:58 +02:00
# ############## Roles ##################
def get_roles_list ( self ) :
2017-10-21 20:22:38 +02:00
""" Get the list of existing roles """
2017-07-31 17:28:47 +02:00
url = urljoin ( self . root_url , ' /roles ' )
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' GET ' , url )
2017-07-15 20:35:58 +02:00
return self . _check_response ( response ) [ ' response ' ]
# ############## Tags ##################
def get_tags_list ( self ) :
2017-10-21 20:22:38 +02:00
""" Get the list of existing tags """
2017-07-15 20:35:58 +02:00
url = urljoin ( self . root_url , ' /tags ' )
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' GET ' , url )
2017-07-15 20:35:58 +02:00
return self . _check_response ( response ) [ ' Tag ' ]
2017-12-13 16:43:21 +01:00
# ############## Taxonomies ##################
def get_taxonomies_list ( self ) :
url = urljoin ( self . root_url , ' /taxonomies ' )
response = self . __prepare_request ( ' GET ' , url )
return self . _check_response ( response )
def get_taxonomy ( self , taxonomy_id ) :
url = urljoin ( self . root_url , ' /taxonomies/view/ {} ' . format ( taxonomy_id ) )
response = self . __prepare_request ( ' GET ' , url )
return self . _check_response ( response )
2018-01-25 16:02:53 +01:00
# ############## WarningLists ##################
def get_warninglists ( self ) :
url = urljoin ( self . root_url , ' /warninglists ' )
response = self . __prepare_request ( ' GET ' , url )
return self . _check_response ( response )
def get_warninglist ( self , warninglist_id ) :
url = urljoin ( self . root_url , ' /warninglists/view/ {} ' . format ( warninglist_id ) )
response = self . __prepare_request ( ' GET ' , url )
return self . _check_response ( response )
2018-01-29 10:30:37 +01:00
# ############## Galaxies/Clusters ##################
def get_galaxies ( self ) :
url = urljoin ( self . root_url , ' /galaxies ' )
response = self . __prepare_request ( ' GET ' , url )
return self . _check_response ( response )
def get_galaxy ( self , galaxy_id ) :
url = urljoin ( self . root_url , ' /galaxies/view/ {} ' . format ( galaxy_id ) )
response = self . __prepare_request ( ' GET ' , url )
return self . _check_response ( response )
2017-03-09 16:32:51 +01:00
# ##############################################
# ############### Non-JSON output ##############
# ##############################################
# ############## Suricata ##############
def download_all_suricata ( self ) :
""" Download all suricata rules events. """
2017-11-09 02:33:55 +01:00
url = urljoin ( self . root_url , ' events/nids/suricata/download ' )
response = self . __prepare_request ( ' GET ' , url , output_type = ' rules ' )
2017-03-09 16:32:51 +01:00
return response
def download_suricata_rule_event ( self , event_id ) :
""" Download one suricata rule event.
: param event_id : ID of the event to download ( same as get )
"""
2017-11-09 02:33:55 +01:00
url = urljoin ( self . root_url , ' events/nids/suricata/download/ {} ' . format ( event_id ) )
response = self . __prepare_request ( ' GET ' , url , output_type = ' rules ' )
2017-03-09 16:32:51 +01:00
return response
# ############## Text ###############
def get_all_attributes_txt ( self , type_attr , tags = False , eventId = False , allowNonIDS = False , date_from = False , date_to = False , last = False , enforceWarninglist = False , allowNotPublished = False ) :
""" Get all attributes from a specific type as plain text. Only published and IDS flagged attributes are exported, except if stated otherwise. """
url = urljoin ( self . root_url , ' attributes/text/download/ %s / %s / %s / %s / %s / %s / %s / %s / %s ' % ( type_attr , tags , eventId , allowNonIDS , date_from , date_to , last , enforceWarninglist , allowNotPublished ) )
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' GET ' , url , output_type = ' txt ' )
2017-03-09 16:32:51 +01:00
return response
# ############## STIX ##############
def get_stix_event ( self , event_id = None , with_attachments = False , from_date = False , to_date = False , tags = False ) :
""" Get an event/events in STIX format """
if tags :
if isinstance ( tags , list ) :
tags = " && " . join ( tags )
url = urljoin ( self . root_url , " /events/stix/download/ {} / {} / {} / {} / {} " . format (
event_id , with_attachments , tags , from_date , to_date ) )
2017-05-31 18:07:31 +02:00
logger . debug ( " Getting STIX event from %s " , url )
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' GET ' , url )
2017-03-09 16:32:51 +01:00
return self . _check_response ( response )
def get_stix ( self , * * kwargs ) :
return self . get_stix_event ( * * kwargs )
2017-12-21 17:25:12 +01:00
def get_csv ( self , eventid = None , attributes = [ ] , object_attributes = [ ] , misp_types = [ ] , context = False , ignore = False , last = None ) :
2017-12-01 12:01:42 +01:00
""" Get MISP values in CSV format
: param eventid : The event ID to query
: param attributes : The column names to export from normal attributes ( i . e . uuid , value , type , . . . )
: param object_attributes : The column names to export from attributes within objects ( i . e . uuid , value , type , . . . )
: param misp_types : MISP types to get ( i . e . ip - src , hostname , . . . )
: param context : Add event level context ( event_info , event_member_org , event_source_org , event_distribution , event_threat_level_id , event_analysis , event_date , event_tag )
: param ignore : Returns the attributes even if the event isn ' t published, or the attribute doesn ' t have the to_ids flag set
"""
url = urljoin ( self . root_url , ' /events/csv/download ' )
to_post = { }
if eventid :
to_post [ ' eventid ' ] = eventid
if attributes :
to_post [ ' attributes ' ] = attributes
if object_attributes :
to_post [ ' object_attributes ' ] = object_attributes
if misp_types :
for t in misp_types :
if t not in self . types :
logger . warning ( ' {} is not a valid type ' . format ( t ) )
to_post [ ' type ' ] = misp_types
if context :
to_post [ ' includeContext ' ] = True
if ignore :
to_post [ ' ignore ' ] = True
2017-12-21 17:25:12 +01:00
if last :
to_post [ ' last ' ] = last
2017-12-01 12:01:42 +01:00
if to_post :
response = self . __prepare_request ( ' POST ' , url , json . dumps ( to_post ) , output_type = ' json ' )
else :
response = self . __prepare_request ( ' POST ' , url , output_type = ' json ' )
return response . text
2018-04-25 16:44:00 +02:00
# #######################################
# ######## RestResponse generic #########
# #######################################
def _rest_list ( self , urlpath ) :
url = urljoin ( self . root_url , urlpath )
response = self . __prepare_request ( ' GET ' , url )
return self . _check_response ( response )
def _rest_get_parameters ( self , urlpath ) :
url = urljoin ( self . root_url , ' {} /add ' . format ( urlpath ) )
response = self . __prepare_request ( ' GET ' , url )
return self . _check_response ( response )
def _rest_view ( self , urlpath , rest_id ) :
url = urljoin ( self . root_url , ' {} /view/ {} ' . format ( urlpath , rest_id ) )
response = self . __prepare_request ( ' GET ' , url )
return self . _check_response ( response )
def _rest_add ( self , urlpath , obj ) :
url = urljoin ( self . root_url , ' {} /add ' . format ( urlpath ) )
response = self . __prepare_request ( ' POST ' , url , obj . to_json ( ) )
return self . _check_response ( response )
def _rest_edit ( self , urlpath , obj , rest_id ) :
url = urljoin ( self . root_url , ' {} /edit/ {} ' . format ( urlpath , rest_id ) )
response = self . __prepare_request ( ' POST ' , url , obj . to_json ( ) )
return self . _check_response ( response )
def _rest_delete ( self , urlpath , rest_id ) :
url = urljoin ( self . root_url , ' {} /delete/ {} ' . format ( urlpath , rest_id ) )
response = self . __prepare_request ( ' GET ' , url )
return self . _check_response ( response )
2017-05-29 13:57:02 +02:00
# ###########################
# ######## Feed #########
# ###########################
2017-06-13 15:37:39 +02:00
2018-04-25 11:06:03 +02:00
def get_feeds_list ( self ) :
2017-10-21 20:22:38 +02:00
""" Get the content of all the feeds """
2018-04-26 14:41:20 +02:00
return self . _rest_list ( ' feeds ' )
2017-07-03 22:56:44 +02:00
2018-04-25 16:44:00 +02:00
def get_feed ( self , feed_id ) :
2017-10-21 20:22:38 +02:00
""" Get the content of a single feed """
2018-04-26 14:41:20 +02:00
return self . _rest_view ( ' feeds ' , feed_id )
2017-07-03 22:56:44 +02:00
2018-04-25 11:06:03 +02:00
def add_feed ( self , source_format , url , name , input_source , provider , * * kwargs ) :
""" Delete a feed """
new_feed = MISPFeed ( )
new_feed . from_dict ( source_format = source_format , url = url , name = name ,
input_source = input_source , provider = provider )
2018-04-26 14:41:20 +02:00
return self . _rest_add ( ' feeds ' , new_feed )
2018-04-25 11:06:03 +02:00
def get_feed_fields_list ( self ) :
2018-04-26 14:41:20 +02:00
return self . _rest_get_parameters ( ' feeds ' )
2018-04-25 11:06:03 +02:00
def edit_feed ( self , feed_id , * * kwargs ) :
""" Delete a feed """
edit_feed = MISPFeed ( )
edit_feed . from_dict ( * * kwargs )
2018-04-26 14:41:20 +02:00
return self . _rest_edit ( ' feeds ' , edit_feed )
2018-04-25 11:06:03 +02:00
def delete_feed ( self , feed_id ) :
""" Delete a feed """
2018-04-26 14:41:20 +02:00
return self . _rest_delete ( ' feeds ' , feed_id )
2018-04-25 11:06:03 +02:00
def fetch_feed ( self , feed_id ) :
""" Fetch one single feed """
url = urljoin ( self . root_url , ' feeds/fetchFromFeed/ {} ' . format ( feed_id ) )
response = self . __prepare_request ( ' GET ' , url )
return self . _check_response ( response )
2017-07-03 22:56:44 +02:00
def cache_feeds_all ( self ) :
2017-10-21 20:22:38 +02:00
""" Cache all the feeds """
2017-07-03 22:56:44 +02:00
url = urljoin ( self . root_url , ' feeds/cacheFeeds/all ' )
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' GET ' , url )
2017-07-03 22:56:44 +02:00
return self . _check_response ( response )
def cache_feed ( self , feed_id ) :
2017-10-21 20:22:38 +02:00
""" Cache a specific feed """
2017-07-03 22:56:44 +02:00
url = urljoin ( self . root_url , ' feeds/cacheFeeds/ {} ' . format ( feed_id ) )
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' GET ' , url )
2017-07-03 22:56:44 +02:00
return self . _check_response ( response )
def cache_feeds_freetext ( self ) :
2017-10-21 20:22:38 +02:00
""" Cache all the freetext feeds """
2017-07-03 22:56:44 +02:00
url = urljoin ( self . root_url , ' feeds/cacheFeeds/freetext ' )
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' GET ' , url )
2017-07-03 22:56:44 +02:00
return self . _check_response ( response )
def cache_feeds_misp ( self ) :
2017-10-21 20:22:38 +02:00
""" Cache all the MISP feeds """
2017-07-03 22:56:44 +02:00
url = urljoin ( self . root_url , ' feeds/cacheFeeds/misp ' )
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' GET ' , url )
2017-07-03 22:56:44 +02:00
return self . _check_response ( response )
def compare_feeds ( self ) :
2017-10-21 20:22:38 +02:00
""" Generate the comparison matrix for all the MISP feeds """
2017-07-03 22:56:44 +02:00
url = urljoin ( self . root_url , ' feeds/compareFeeds ' )
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' GET ' , url )
2017-07-03 22:56:44 +02:00
return self . _check_response ( response )
2018-04-25 11:06:03 +02:00
@deprecated
def view_feed ( self , feed_ids ) :
""" Alias for get_feed """
return self . get_feed ( feed_ids )
@deprecated
def view_feeds ( self ) :
""" Alias for get_feeds_list """
return self . get_feeds_list ( )
@deprecated
2017-07-06 23:06:59 +02:00
def cache_all_feeds ( self ) :
2017-10-21 20:22:38 +02:00
""" Alias for cache_feeds_all """
return self . cache_feeds_all ( )
2017-07-06 23:06:59 +02:00
2018-02-13 11:25:05 +01:00
# ######################
# ### Sharing Groups ###
# ######################
def sharing_group_org_add ( self , sharing_group , organisation , extend = False ) :
''' Add an organisation to a sharing group.
: sharing_group : Sharing group ' s local instance ID, or Sharing group ' s global UUID
: organisation : Organisation ' s local instance ID, or Organisation ' s global UUID , or Organisation ' s name as known to the curent instance
: extend : Allow the organisation to extend the group
'''
to_jsonify = { ' sg_id ' : sharing_group , ' org_id ' : organisation , ' extend ' : extend }
url = urljoin ( self . root_url , ' /sharingGroups/addOrg ' )
response = self . __prepare_request ( ' POST ' , url , json . dumps ( to_jsonify ) )
return self . _check_response ( response )
def sharing_group_org_remove ( self , sharing_group , organisation ) :
''' Remove an organisation from a sharing group.
: sharing_group : Sharing group ' s local instance ID, or Sharing group ' s global UUID
: organisation : Organisation ' s local instance ID, or Organisation ' s global UUID , or Organisation ' s name as known to the curent instance
'''
to_jsonify = { ' sg_id ' : sharing_group , ' org_id ' : organisation }
url = urljoin ( self . root_url , ' /sharingGroups/removeOrg ' )
response = self . __prepare_request ( ' POST ' , url , json . dumps ( to_jsonify ) )
return self . _check_response ( response )
def sharing_group_server_add ( self , sharing_group , server , all_orgs = False ) :
''' Add a server to a sharing group.
: sharing_group : Sharing group ' s local instance ID, or Sharing group ' s global UUID
: server : Server ' s local instance ID, or URL of the Server, or Server ' s name as known to the curent instance
: all_orgs : Add all the organisations of the server to the group
'''
to_jsonify = { ' sg_id ' : sharing_group , ' server_id ' : server , ' all_orgs ' : all_orgs }
url = urljoin ( self . root_url , ' /sharingGroups/addServer ' )
response = self . __prepare_request ( ' POST ' , url , json . dumps ( to_jsonify ) )
return self . _check_response ( response )
def sharing_group_server_remove ( self , sharing_group , server ) :
''' Remove a server from a sharing group.
: sharing_group : Sharing group ' s local instance ID, or Sharing group ' s global UUID
: server : Server ' s local instance ID, or URL of the Server, or Server ' s name as known to the curent instance
'''
to_jsonify = { ' sg_id ' : sharing_group , ' server_id ' : server }
url = urljoin ( self . root_url , ' /sharingGroups/removeServer ' )
response = self . __prepare_request ( ' POST ' , url , json . dumps ( to_jsonify ) )
return self . _check_response ( response )
2017-07-21 18:47:10 +02:00
# ###################
# ### Objects ###
# ###################
2018-05-08 11:43:27 +02:00
def add_object ( self , event_id , * args , * * kwargs ) :
""" Add an object
: param event_id : Event ID of the event to attach the object to
: param template_id : Template ID of the template related to that event ( not required )
: param misp_object : MISPObject to attach
"""
# NOTE: this slightly fucked up thing is due to the fact template_id was required, and was the 2nd parameter.
template_id = kwargs . get ( ' template_id ' )
misp_object = kwargs . get ( ' misp_object ' )
2018-06-05 17:37:49 +02:00
if args :
if isinstance ( args [ 0 ] , MISPObject ) :
misp_object = args [ 0 ]
else :
template_id = args [ 0 ]
misp_object = args [ 1 ]
2018-05-08 11:43:27 +02:00
if template_id is not None :
url = urljoin ( self . root_url , ' objects/add/ {} / {} ' . format ( event_id , template_id ) )
else :
url = urljoin ( self . root_url , ' objects/add/ {} ' . format ( event_id ) )
response = self . __prepare_request ( ' POST ' , url , misp_object . to_json ( ) )
return self . _check_response ( response )
def edit_object ( self , misp_object , object_id = None ) :
""" Edit an existing object """
if object_id :
param = object_id
elif hasattr ( misp_object , ' uuid ' ) :
param = misp_object . uuid
elif hasattr ( misp_object , ' id ' ) :
param = misp_object . id
else :
raise PyMISPError ( ' In order to update an object, you have to provide an object ID (either in the misp_object, or as a parameter) ' )
url = urljoin ( self . root_url , ' objects/edit/ {} ' . format ( param ) )
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' POST ' , url , misp_object . to_json ( ) )
2017-07-21 18:47:10 +02:00
return self . _check_response ( response )
2017-11-23 17:51:04 +01:00
def delete_object ( self , id ) :
""" Deletes an object """
url = urljoin ( self . root_url , ' objects/delete/ {} ' . format ( id ) )
response = self . __prepare_request ( ' POST ' , url )
return self . _check_response ( response )
2017-08-24 19:21:52 +02:00
def add_object_reference ( self , misp_object_reference ) :
2017-10-21 20:22:38 +02:00
""" Add a reference to an object """
2017-08-24 19:21:52 +02:00
url = urljoin ( self . root_url , ' object_references/add ' )
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' POST ' , url , misp_object_reference . to_json ( ) )
2017-08-23 15:36:13 +02:00
return self . _check_response ( response )
2017-11-23 17:51:04 +01:00
def delete_object_reference ( self , id ) :
""" Deletes a reference to an object """
url = urljoin ( self . root_url , ' object_references/delete/ {} ' . format ( id ) )
response = self . __prepare_request ( ' POST ' , url )
return self . _check_response ( response )
2017-07-24 17:16:40 +02:00
def get_object_templates_list ( self ) :
2017-10-21 20:22:38 +02:00
""" Returns the list of Object templates available on the MISP instance """
2017-07-24 17:16:40 +02:00
url = urljoin ( self . root_url , ' objectTemplates ' )
2017-11-09 02:33:55 +01:00
response = self . __prepare_request ( ' GET ' , url )
2017-07-24 17:16:40 +02:00
return self . _check_response ( response ) [ ' response ' ]
2017-08-25 09:45:56 +02:00
def get_object_template_id ( self , object_uuid ) :
2017-10-21 20:22:38 +02:00
""" Gets the template ID corresponting the UUID passed as parameter """
2017-07-24 17:16:40 +02:00
templates = self . get_object_templates_list ( )
for t in templates :
2017-08-25 09:45:56 +02:00
if t [ ' ObjectTemplate ' ] [ ' uuid ' ] == object_uuid :
2017-07-24 17:16:40 +02:00
return t [ ' ObjectTemplate ' ] [ ' id ' ]
2017-08-25 09:45:56 +02:00
raise Exception ( ' Unable to find template uuid {} on the MISP instance ' . format ( object_uuid ) )
2017-07-24 17:16:40 +02:00
2017-03-09 16:32:51 +01:00
# ###########################
# ####### Deprecated ########
# ###########################
@deprecated
def add_tag ( self , event , tag , attribute = False ) :
if attribute :
to_post = { ' request ' : { ' Attribute ' : { ' id ' : event [ ' id ' ] , ' tag ' : tag } } }
path = ' attributes/addTag '
else :
# Allow for backwards-compat with old style
if " Event " in event :
event = event [ " Event " ]
to_post = { ' request ' : { ' Event ' : { ' id ' : event [ ' id ' ] , ' tag ' : tag } } }
path = ' events/addTag '
2017-11-09 02:33:55 +01:00
url = urljoin ( self . root_url , path )
response = self . __prepare_request ( ' POST ' , url , json . dumps ( to_post ) )
2017-03-09 16:32:51 +01:00
return self . _check_response ( response )
@deprecated
def remove_tag ( self , event , tag , attribute = False ) :
if attribute :
to_post = { ' request ' : { ' Attribute ' : { ' id ' : event [ ' id ' ] , ' tag ' : tag } } }
2017-04-03 10:04:59 +02:00
path = ' attributes/removeTag '
2017-03-09 16:32:51 +01:00
else :
to_post = { ' request ' : { ' Event ' : { ' id ' : event [ ' Event ' ] [ ' id ' ] , ' tag ' : tag } } }
2017-04-03 10:04:59 +02:00
path = ' events/removeTag '
2017-11-09 02:33:55 +01:00
url = urljoin ( self . root_url , path )
response = self . __prepare_request ( ' POST ' , url , json . dumps ( to_post ) )
2017-03-09 16:32:51 +01:00
return self . _check_response ( response )