1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Tests for the tagging analysis plugin."""
from __future__ import unicode_literals
import unittest
from plaso.analysis import tagging
from plaso.lib import timelib
from plaso.containers import events
from tests import test_lib as shared_test_lib
from tests.analysis import test_lib
class TestPrefetchEvent(events.EventObject):
"""A test event type for the tagging analysis plugin."""
DATA_TYPE = 'windows:prefetch'
class TestChromeDownloadEvent(events.EventObject):
"""A test event type for the tagging analysis plugin."""
DATA_TYPE = 'chrome:history:file_downloaded'
class TestEvtRecordEvent(events.EventObject):
"""A test event type for the tagging analysis plugin."""
DATA_TYPE = 'windows:evt:record'
class TaggingAnalysisPluginTest(test_lib.AnalysisPluginTestCase):
"""Tests the tagging analysis plugin."""
# pylint: disable=protected-access
_TEST_EVENTS = [
{'event_type': 'prefetch',
'timestamp': timelib.Timestamp.CopyFromString('2015-05-01 15:12:00'),
'attributes': {}
},
{'event_type': 'chrome_download',
'timestamp': timelib.Timestamp.CopyFromString('2015-05-01 05:06:00'),
'attributes': {}
},
{'event_type': 'something_else',
'timestamp': timelib.Timestamp.CopyFromString('2015-02-19 08:00:01'),
'attributes': {}
},
{'event_type': 'evt',
'timestamp': timelib.Timestamp.CopyFromString('2016-05-25 13:00:06'),
'attributes': {
'source_name': 'Security',
'event_identifier': 538}
},
{'event_type': 'evt',
'timestamp': timelib.Timestamp.CopyFromString('2016-05-25 13:00:06'),
'attributes': {
'source_name': 'Messaging',
'event_identifier': 16,
'body': 'this is a message'}
},
]
# pylint: disable=arguments-differ
def _CreateTestEventObject(self, event_attributes):
"""Create a test event with a set of attributes.
Args:
event_attributes (dict[str, str]): attributes of an event to add to the
queue.
Returns:
EventObject: event with the appropriate attributes for testing.
"""
if event_attributes['event_type'] == 'prefetch':
event = TestPrefetchEvent()
elif event_attributes['event_type'] == 'chrome_download':
event = TestChromeDownloadEvent()
elif event_attributes['event_type'] == 'evt':
event = TestEvtRecordEvent()
else:
event = events.EventObject()
event.timestamp = event_attributes['timestamp']
for key, value in iter(event_attributes['attributes'].items()):
setattr(event, key, value)
return event
@shared_test_lib.skipUnlessHasTestFile(['tagging_file', 'valid.txt'])
def testExamineEventAndCompileReport(self):
"""Tests the ExamineEvent and CompileReport functions."""
test_events = []
for event_dictionary in self._TEST_EVENTS:
event = self._CreateTestEventObject(event_dictionary)
test_events.append(event)
test_file = self._GetTestFilePath(['tagging_file', 'valid.txt'])
plugin = tagging.TaggingAnalysisPlugin()
plugin.SetAndLoadTagFile(test_file)
storage_writer = self._AnalyzeEvents(test_events, plugin)
self.assertEqual(len(storage_writer.analysis_reports), 1)
self.assertEqual(storage_writer.number_of_event_tags, 4)
report = storage_writer.analysis_reports[0]
self.assertIsNotNone(report)
expected_text = 'Tagging plugin produced 4 tags.\n'
self.assertEqual(report.text, expected_text)
labels = []
for event_tag in storage_writer.GetEventTags():
labels.extend(event_tag.labels)
self.assertEqual(len(labels), 5)
# This is from a tag rule declared in objectfilter syntax.
self.assertIn('application_execution', labels)
# This is from a tag rule declared in dotty syntax.
self.assertIn('login_attempt', labels)
# This is from a rule using the "contains" operator
self.assertIn('text_contains', labels)
if __name__ == '__main__':
unittest.main()
|