PyMISP/tests/testlive_comprehensive.py

437 lines
21 KiB
Python
Raw Normal View History

2018-08-10 19:04:02 +02:00
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import unittest
2018-08-17 15:09:17 +02:00
from pymisp import ExpandedPyMISP, MISPEvent, MISPOrganisation, MISPUser, Distribution, ThreatLevel, Analysis, MISPAttribute
2018-08-10 19:04:02 +02:00
from datetime import datetime, timedelta
import time
try:
from keys import url, key
2018-08-12 01:21:49 +02:00
except ImportError as e:
print(e)
2018-08-10 19:04:02 +02:00
url = 'http://localhost:8080'
key = 'fk5BodCZw8owbscW8pQ4ykMASLeJ4NYhuAbshNjo'
from uuid import uuid4
class TestComprehensive(unittest.TestCase):
@classmethod
def setUpClass(cls):
cls.maxDiff = None
# Connect as admin
cls.admin_misp_connector = ExpandedPyMISP(url, key)
# Creates an org
org = cls.admin_misp_connector.add_organisation(name='Test Org')
cls.test_org = MISPOrganisation()
cls.test_org.from_dict(**org)
# Creates a user
usr = cls.admin_misp_connector.add_user(email='testusr@user.local', org_id=cls.test_org.id, role_id=3)
cls.test_usr = MISPUser()
cls.test_usr.from_dict(**usr)
2018-08-20 18:27:06 +02:00
cls.user_misp_connector = ExpandedPyMISP(url, cls.test_usr.authkey)
2018-08-10 19:04:02 +02:00
# Creates a publisher
pub = cls.admin_misp_connector.add_user(email='testpub@user.local', org_id=cls.test_org.id, role_id=4)
cls.test_pub = MISPUser()
cls.test_pub.from_dict(**pub)
2018-08-20 18:27:06 +02:00
cls.pub_misp_connector = ExpandedPyMISP(url, cls.test_pub.authkey)
2018-08-10 19:04:02 +02:00
@classmethod
def tearDownClass(cls):
# Delete publisher
cls.admin_misp_connector.delete_user(user_id=cls.test_pub.id)
# Delete user
cls.admin_misp_connector.delete_user(user_id=cls.test_usr.id)
# Delete org
cls.admin_misp_connector.delete_organisation(org_id=cls.test_org.id)
2018-08-21 00:32:27 +02:00
def create_simple_event(self, force_timestamps=False):
2018-08-10 19:04:02 +02:00
mispevent = MISPEvent(force_timestamps=force_timestamps)
2018-08-21 00:32:27 +02:00
mispevent.info = 'This is a super simple test'
2018-08-10 19:04:02 +02:00
mispevent.distribution = Distribution.your_organisation_only
mispevent.threat_level_id = ThreatLevel.low
mispevent.analysis = Analysis.completed
mispevent.add_attribute('text', str(uuid4()))
return mispevent
2018-08-20 18:27:06 +02:00
def environment(self):
first_event = MISPEvent()
first_event.info = 'First event - org only - low - completed'
first_event.distribution = Distribution.your_organisation_only
first_event.threat_level_id = ThreatLevel.low
first_event.analysis = Analysis.completed
first_event.set_date("2017-12-31")
first_event.add_attribute('text', str(uuid4()))
second_event = MISPEvent()
second_event.info = 'Second event - org only - medium - ongoing'
second_event.distribution = Distribution.your_organisation_only
second_event.threat_level_id = ThreatLevel.medium
second_event.analysis = Analysis.ongoing
second_event.set_date("Aug 18 2018")
second_event.add_attribute('text', str(uuid4()))
second_event.attributes[0].add_tag('tlp:white___test')
second_event.add_attribute('ip-dst', '1.1.1.1')
# Same value as in first event.
second_event.add_attribute('text', first_event.attributes[0].value)
third_event = MISPEvent()
third_event.info = 'Third event - all orgs - high - initial'
third_event.distribution = Distribution.all_communities
third_event.threat_level_id = ThreatLevel.high
third_event.analysis = Analysis.initial
third_event.set_date("Jun 25 2018")
third_event.add_tag('tlp:white___test')
third_event.add_attribute('text', str(uuid4()))
third_event.attributes[0].add_tag('tlp:amber___test')
third_event.attributes[0].add_tag('foo_double___test')
third_event.add_attribute('ip-src', '8.8.8.8')
third_event.attributes[1].add_tag('tlp:amber___test')
third_event.add_attribute('ip-dst', '9.9.9.9')
# Create first and third event as admin
# usr won't be able to see the first one
first = self.admin_misp_connector.add_event(first_event)
third = self.admin_misp_connector.add_event(third_event)
# Create second event as user
second = self.user_misp_connector.add_event(second_event)
return first, second, third
2018-08-10 19:04:02 +02:00
def test_search_value_event(self):
2018-08-20 18:27:06 +02:00
'''Search a value on the event controller
* Test ACL admin user vs normal user in an other org
* Make sure we have one match
'''
2018-08-10 19:04:02 +02:00
try:
2018-08-20 18:27:06 +02:00
first, second, third = self.environment()
2018-08-10 19:04:02 +02:00
# Search as admin
2018-08-20 18:27:06 +02:00
response = self.admin_misp_connector.search(value=first.attributes[0].value)
self.assertEqual(len(response), 2)
# Search as user
response = self.user_misp_connector.search(value=first.attributes[0].value)
2018-08-10 19:04:02 +02:00
self.assertEqual(len(response), 1)
2018-08-20 18:27:06 +02:00
# Non-existing value
response = self.user_misp_connector.search(value=str(uuid4()))
self.assertEqual(response, [])
finally:
# Delete events
self.admin_misp_connector.delete_event(first.id)
self.admin_misp_connector.delete_event(second.id)
self.admin_misp_connector.delete_event(third.id)
def test_search_value_attribute(self):
try:
first, second, third = self.environment()
# Search as admin
response = self.admin_misp_connector.search(controller='attributes', value=first.attributes[0].value)
self.assertEqual(len(response), 2)
2018-08-10 19:04:02 +02:00
# Search as user
2018-08-20 18:27:06 +02:00
response = self.user_misp_connector.search(controller='attributes', value=first.attributes[0].value)
self.assertEqual(len(response), 1)
# Non-existing value
response = self.user_misp_connector.search(controller='attributes', value=str(uuid4()))
2018-08-10 19:04:02 +02:00
self.assertEqual(response, [])
finally:
# Delete event
2018-08-20 18:27:06 +02:00
self.admin_misp_connector.delete_event(first.id)
self.admin_misp_connector.delete_event(second.id)
self.admin_misp_connector.delete_event(third.id)
2018-08-10 19:04:02 +02:00
2018-08-20 18:27:06 +02:00
@unittest.skip("Currently failing")
def test_search_type_event(self):
2018-08-19 14:35:32 +02:00
try:
2018-08-20 18:27:06 +02:00
first, second, third = self.environment()
2018-08-19 14:35:32 +02:00
# Search as admin
2018-08-20 18:27:06 +02:00
response = self.admin_misp_connector.search(timestamp=first.timestamp.timestamp())
2018-08-19 14:35:32 +02:00
self.assertEqual(len(response), 3)
attrubutes_types_search = self.admin_misp_connector.build_complex_query(or_parameters=['ip-src', 'ip-dst'])
2018-08-20 18:27:06 +02:00
response = self.admin_misp_connector.search(controller='events', timestamp=first.timestamp.timestamp(),
2018-08-19 14:35:32 +02:00
type_attribute=attrubutes_types_search)
self.assertEqual(len(response), 2)
finally:
# Delete event
2018-08-20 18:27:06 +02:00
self.admin_misp_connector.delete_event(first.id)
self.admin_misp_connector.delete_event(second.id)
self.admin_misp_connector.delete_event(third.id)
2018-08-19 14:35:32 +02:00
2018-08-20 18:27:06 +02:00
def test_search_type_attribute(self):
2018-08-19 14:35:32 +02:00
try:
2018-08-20 18:27:06 +02:00
first, second, third = self.environment()
2018-08-19 14:35:32 +02:00
# Search as admin
2018-08-20 18:27:06 +02:00
response = self.admin_misp_connector.search(controller='attributes', timestamp=first.timestamp.timestamp())
self.assertEqual(len(response), 7)
2018-08-19 14:35:32 +02:00
attrubutes_types_search = self.admin_misp_connector.build_complex_query(or_parameters=['ip-src', 'ip-dst'])
2018-08-20 18:27:06 +02:00
response = self.admin_misp_connector.search(controller='attributes', timestamp=first.timestamp.timestamp(),
2018-08-19 14:35:32 +02:00
type_attribute=attrubutes_types_search)
2018-08-20 18:27:06 +02:00
self.assertEqual(len(response), 3)
2018-08-19 14:35:32 +02:00
finally:
# Delete event
2018-08-20 18:27:06 +02:00
self.admin_misp_connector.delete_event(first.id)
self.admin_misp_connector.delete_event(second.id)
self.admin_misp_connector.delete_event(third.id)
2018-08-19 14:35:32 +02:00
2018-08-20 18:27:06 +02:00
def test_search_tag_event(self):
2018-08-17 15:09:17 +02:00
try:
2018-08-20 18:27:06 +02:00
first, second, third = self.environment()
2018-08-17 15:09:17 +02:00
# Search as admin
2018-08-20 18:27:06 +02:00
response = self.admin_misp_connector.search(tags='tlp:white___test')
self.assertEqual(len(response), 2)
response = self.admin_misp_connector.search(tags='tlp:amber___test')
2018-08-17 15:09:17 +02:00
self.assertEqual(len(response), 1)
# Search as user
2018-08-20 18:27:06 +02:00
response = self.user_misp_connector.search(tags='tlp:white___test')
self.assertEqual(len(response), 1)
response = self.user_misp_connector.search(tags='tlp:amber___test')
self.assertEqual(len(response), 0)
2018-08-17 15:09:17 +02:00
finally:
# Delete event
2018-08-20 18:27:06 +02:00
self.admin_misp_connector.delete_event(first.id)
self.admin_misp_connector.delete_event(second.id)
self.admin_misp_connector.delete_event(third.id)
2018-08-10 19:04:02 +02:00
2018-08-20 18:27:06 +02:00
def test_search_tag_attribute(self):
2018-08-17 15:09:17 +02:00
try:
2018-08-20 18:27:06 +02:00
first, second, third = self.environment()
2018-08-17 15:09:17 +02:00
# Search as admin
2018-08-20 18:27:06 +02:00
response = self.admin_misp_connector.search(controller='attributes', tags='tlp:white___test')
self.assertEqual(len(response), 4)
response = self.admin_misp_connector.search(controller='attributes', tags='tlp:amber___test')
2018-08-17 15:09:17 +02:00
self.assertEqual(len(response), 1)
# Search as user
2018-08-20 18:27:06 +02:00
response = self.user_misp_connector.search(controller='attributes', tags='tlp:white___test')
self.assertEqual(len(response), 1)
response = self.user_misp_connector.search(controller='attributes', tags='tlp:amber___test')
self.assertEqual(len(response), 0)
2018-08-17 15:09:17 +02:00
finally:
# Delete event
2018-08-20 18:27:06 +02:00
self.admin_misp_connector.delete_event(first.id)
self.admin_misp_connector.delete_event(second.id)
self.admin_misp_connector.delete_event(third.id)
2018-08-10 19:04:02 +02:00
2018-08-20 18:27:06 +02:00
def test_search_tag_advanced_event(self):
try:
first, second, third = self.environment()
complex_query = self.admin_misp_connector.build_complex_query(or_parameters=['tlp:white___test'],
not_parameters=['tlp:amber___test',
'foo_double___test'])
events = self.admin_misp_connector.search(tags=complex_query)
for e in events:
for a in e.attributes:
self.assertEqual([t for t in a.tags if t.name == 'tlp:amber___test'], [])
for a in e.attributes:
self.assertEqual([t for t in a.tags if t.name == 'foo_double___test'], [])
finally:
# Delete event
self.admin_misp_connector.delete_event(first.id)
self.admin_misp_connector.delete_event(second.id)
self.admin_misp_connector.delete_event(third.id)
def test_search_tag_advanced_attributes(self):
try:
first, second, third = self.environment()
complex_query = self.admin_misp_connector.build_complex_query(or_parameters=['tlp:white___test'],
not_parameters=['tlp:amber___test',
'foo_double___test'])
attributes = self.admin_misp_connector.search(controller='attributes', tags=complex_query)
for a in attributes:
self.assertEqual([t for t in a.tags if t.name == 'tlp:amber___test'], [])
for a in attributes:
self.assertEqual([t for t in a.tags if t.name == 'foo_double___test'], [])
finally:
# Delete event
self.admin_misp_connector.delete_event(first.id)
self.admin_misp_connector.delete_event(second.id)
self.admin_misp_connector.delete_event(third.id)
def test_search_timestamp_event(self):
2018-08-10 19:04:02 +02:00
# Creating event 1 - timestamp 5 min ago
2018-08-21 00:32:27 +02:00
first = self.create_simple_event(force_timestamps=True)
event_creation_timestamp_first = datetime.now() - timedelta(minutes=5)
first.timestamp = event_creation_timestamp_first
# Creating event 2 - timestamp 2 min ago
second = self.create_simple_event(force_timestamps=True)
event_creation_timestamp_second = datetime.now() - timedelta(minutes=2)
second.timestamp = event_creation_timestamp_second
try:
first = self.user_misp_connector.add_event(first)
second = self.user_misp_connector.add_event(second)
# Search as user
# # Test - last 4 min
response = self.user_misp_connector.search(timestamp='4m')
self.assertEqual(len(response), 1)
received_event = response[0]
self.assertEqual(received_event.timestamp.timestamp(), int(event_creation_timestamp_second.timestamp()))
# # Test timestamp of 2nd event
response = self.user_misp_connector.search(timestamp=event_creation_timestamp_second.timestamp())
self.assertEqual(len(response), 1)
received_event = response[0]
self.assertEqual(received_event.timestamp.timestamp(), int(event_creation_timestamp_second.timestamp()))
# # Test interval -6 min -> -4 min
response = self.user_misp_connector.search(timestamp=['6m', '4m'])
self.assertEqual(len(response), 1)
received_event = response[0]
self.assertEqual(received_event.timestamp.timestamp(), int(event_creation_timestamp_first.timestamp()))
finally:
# Delete event
self.admin_misp_connector.delete_event(first.id)
self.admin_misp_connector.delete_event(second.id)
def test_search_timestamp_atttibute(self):
# Creating event 1 - timestamp 5 min ago
first = self.create_simple_event(force_timestamps=True)
2018-08-10 19:04:02 +02:00
event_creation_timestamp_first = datetime.now() - timedelta(minutes=5)
first.timestamp = event_creation_timestamp_first
2018-08-21 00:32:27 +02:00
first.attributes[0].timestamp = event_creation_timestamp_first
2018-08-10 19:04:02 +02:00
# Creating event 2 - timestamp 2 min ago
2018-08-21 00:32:27 +02:00
second = self.create_simple_event(force_timestamps=True)
2018-08-10 19:04:02 +02:00
event_creation_timestamp_second = datetime.now() - timedelta(minutes=2)
second.timestamp = event_creation_timestamp_second
2018-08-21 00:32:27 +02:00
second.attributes[0].timestamp = event_creation_timestamp_second
2018-08-10 19:04:02 +02:00
try:
2018-08-21 00:32:27 +02:00
first = self.user_misp_connector.add_event(first)
second = self.user_misp_connector.add_event(second)
2018-08-10 19:04:02 +02:00
# Search as user
# # Test - last 4 min
2018-08-21 00:32:27 +02:00
response = self.user_misp_connector.search(controller='attributes', timestamp='4m')
2018-08-10 19:04:02 +02:00
self.assertEqual(len(response), 1)
2018-08-19 14:35:32 +02:00
received_event = response[0]
2018-08-10 19:04:02 +02:00
self.assertEqual(received_event.timestamp.timestamp(), int(event_creation_timestamp_second.timestamp()))
2018-08-19 14:35:32 +02:00
# # Test timestamp of 2nd event
2018-08-21 00:32:27 +02:00
response = self.user_misp_connector.search(controller='attributes', timestamp=event_creation_timestamp_second.timestamp())
2018-08-10 19:04:02 +02:00
self.assertEqual(len(response), 1)
2018-08-19 14:35:32 +02:00
received_event = response[0]
2018-08-10 19:04:02 +02:00
self.assertEqual(received_event.timestamp.timestamp(), int(event_creation_timestamp_second.timestamp()))
# # Test interval -6 min -> -4 min
2018-08-21 00:32:27 +02:00
response = self.user_misp_connector.search(controller='attributes', timestamp=['6m', '4m'])
2018-08-10 19:04:02 +02:00
self.assertEqual(len(response), 1)
2018-08-19 14:35:32 +02:00
received_event = response[0]
2018-08-10 19:04:02 +02:00
self.assertEqual(received_event.timestamp.timestamp(), int(event_creation_timestamp_first.timestamp()))
finally:
# Delete event
2018-08-21 00:32:27 +02:00
self.admin_misp_connector.delete_event(first.id)
self.admin_misp_connector.delete_event(second.id)
2018-08-10 19:04:02 +02:00
def test_user_perms(self):
try:
2018-08-21 00:32:27 +02:00
first = self.create_simple_event(force_timestamps=True)
first.publish()
2018-08-10 19:04:02 +02:00
# Add event as user, no publish rights
2018-08-21 00:32:27 +02:00
first = self.user_misp_connector.add_event(first)
self.assertFalse(first.published)
2018-08-10 19:04:02 +02:00
# Add event as publisher
2018-08-21 00:32:27 +02:00
first.publish()
first = self.pub_misp_connector.update_event(first)
self.assertTrue(first.published)
2018-08-10 19:04:02 +02:00
finally:
# Delete event
2018-08-21 00:32:27 +02:00
self.admin_misp_connector.delete_event(first.id)
2018-08-10 19:04:02 +02:00
2018-08-21 00:32:27 +02:00
# @unittest.skip("Uncomment when adding new tests, it has a 10s sleep")
def test_search_publish_timestamp(self):
2018-08-10 19:04:02 +02:00
# Creating event 1
2018-08-21 00:32:27 +02:00
first = self.create_simple_event()
2018-08-10 19:04:02 +02:00
first.publish()
# Creating event 2
2018-08-21 00:32:27 +02:00
second = self.create_simple_event()
2018-08-10 19:04:02 +02:00
second.publish()
try:
2018-08-21 00:32:27 +02:00
first = self.pub_misp_connector.add_event(first)
time.sleep(10)
second = self.pub_misp_connector.add_event(second)
2018-08-10 19:04:02 +02:00
# Test invalid query
2018-08-21 00:32:27 +02:00
response = self.pub_misp_connector.search(publish_timestamp='5x')
2018-08-10 19:04:02 +02:00
self.assertEqual(len(response), 0)
2018-08-21 00:32:27 +02:00
response = self.pub_misp_connector.search(publish_timestamp='ad')
self.assertEqual(len(response), 0)
2018-08-21 00:32:27 +02:00
response = self.pub_misp_connector.search(publish_timestamp='aaad')
self.assertEqual(len(response), 0)
2018-08-21 00:32:27 +02:00
# Test - last 4 min
response = self.pub_misp_connector.search(publish_timestamp='5s')
2018-08-10 19:04:02 +02:00
self.assertEqual(len(response), 1)
2018-08-21 00:32:27 +02:00
# Test 5 sec before timestamp of 2nd event
response = self.pub_misp_connector.search(publish_timestamp=(second.publish_timestamp.timestamp()))
2018-08-10 19:04:02 +02:00
self.assertEqual(len(response), 1)
2018-08-21 00:32:27 +02:00
# Test interval -6 min -> -4 min
response = self.pub_misp_connector.search(publish_timestamp=[first.publish_timestamp.timestamp() - 5,
second.publish_timestamp.timestamp() - 5])
2018-08-10 19:04:02 +02:00
self.assertEqual(len(response), 1)
finally:
# Delete event
2018-08-21 00:32:27 +02:00
self.admin_misp_connector.delete_event(first.id)
self.admin_misp_connector.delete_event(second.id)
def test_simple_event(self):
first = self.create_simple_event()
first.info = 'foo bar blah'
2018-08-10 19:04:02 +02:00
try:
2018-08-21 00:32:27 +02:00
first = self.user_misp_connector.add_event(first)
timeframe = [first.timestamp.timestamp() - 5, first.timestamp.timestamp() + 5]
2018-08-10 19:04:02 +02:00
# Search event we just created in multiple ways. Make sure it doesn't catchi it when it shouldn't
2018-08-21 00:32:27 +02:00
response = self.user_misp_connector.search(timestamp=timeframe)
2018-08-10 19:04:02 +02:00
self.assertEqual(len(response), 1)
2018-08-21 00:32:27 +02:00
response = self.user_misp_connector.search(timestamp=timeframe, value='nothere')
2018-08-10 19:04:02 +02:00
self.assertEqual(len(response), 0)
2018-08-21 00:32:27 +02:00
response = self.user_misp_connector.search(timestamp=timeframe, value=first.attributes[0].value)
2018-08-10 19:04:02 +02:00
self.assertEqual(len(response), 1)
2018-08-21 00:32:27 +02:00
response = self.user_misp_connector.search(timestamp=[first.timestamp.timestamp() - 50,
first.timestamp.timestamp() - 10],
value=first.attributes[0].value)
2018-08-10 19:04:02 +02:00
self.assertEqual(len(response), 0)
# Test return content
2018-08-21 00:32:27 +02:00
response = self.user_misp_connector.search(timestamp=timeframe, metadata=False)
2018-08-10 19:04:02 +02:00
self.assertEqual(len(response), 1)
2018-08-19 14:35:32 +02:00
t = response[0]
2018-08-10 19:04:02 +02:00
self.assertEqual(len(t.attributes), 1)
2018-08-21 00:32:27 +02:00
response = self.user_misp_connector.search(timestamp=timeframe, metadata=True)
2018-08-10 19:04:02 +02:00
self.assertEqual(len(response), 1)
2018-08-19 14:35:32 +02:00
t = response[0]
2018-08-10 19:04:02 +02:00
self.assertEqual(len(t.attributes), 0)
# other things
2018-08-21 00:32:27 +02:00
response = self.user_misp_connector.search(timestamp=timeframe, published=True)
2018-08-10 19:04:02 +02:00
self.assertEqual(len(response), 0)
2018-08-21 00:32:27 +02:00
response = self.user_misp_connector.search(timestamp=timeframe, published=False)
2018-08-10 19:04:02 +02:00
self.assertEqual(len(response), 1)
2018-08-21 00:32:27 +02:00
response = self.user_misp_connector.search(eventid=first.id)
2018-08-10 19:04:02 +02:00
self.assertEqual(len(response), 1)
2018-08-21 00:32:27 +02:00
response = self.user_misp_connector.search(uuid=first.uuid)
2018-08-10 19:04:02 +02:00
self.assertEqual(len(response), 1)
2018-08-21 00:32:27 +02:00
response = self.user_misp_connector.search(org=first.orgc_id)
2018-08-10 19:04:02 +02:00
self.assertEqual(len(response), 1)
# test like search
2018-08-21 00:32:27 +02:00
response = self.user_misp_connector.search(timestamp=timeframe, value='%{}%'.format(first.attributes[0].value.split('-')[2]))
2018-08-10 19:04:02 +02:00
self.assertEqual(len(response), 1)
2018-08-21 00:32:27 +02:00
response = self.user_misp_connector.search(timestamp=timeframe, eventinfo='%bar blah%')
2018-08-10 19:04:02 +02:00
self.assertEqual(len(response), 1)
finally:
# Delete event
2018-08-21 00:32:27 +02:00
self.admin_misp_connector.delete_event(first.id)
2018-08-10 19:04:02 +02:00
2018-08-17 15:09:17 +02:00
def test_edit_attribute(self):
2018-08-21 00:32:27 +02:00
first = self.create_simple_event()
2018-08-17 15:09:17 +02:00
try:
first.attributes[0].comment = 'This is the original comment'
2018-08-21 00:32:27 +02:00
first = self.user_misp_connector.add_event(first)
first.attributes[0].comment = 'This is the modified comment'
attribute = self.user_misp_connector.update_attribute(first.attributes[0])
self.assertEqual(attribute.comment, 'This is the modified comment')
attribute = self.user_misp_connector.change_comment(first.attributes[0].uuid, 'This is the modified comment, again')
self.assertEqual(attribute['Attribute']['comment'], 'This is the modified comment, again')
2018-08-17 15:09:17 +02:00
finally:
# Delete event
2018-08-21 00:32:27 +02:00
self.admin_misp_connector.delete_event(first.id)
2018-08-17 15:09:17 +02:00
if __name__ == '__main__':
unittest.main()