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 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Tests for the windows services analysis plugin."""
from __future__ import unicode_literals
import unittest
from dfdatetime import filetime as dfdatetime_filetime
from dfvfs.path import fake_path_spec
from plaso.analysis import windows_services
from plaso.containers import time_events
from plaso.lib import definitions
from plaso.parsers import winreg
from tests import test_lib as shared_test_lib
from tests.analysis import test_lib
class WindowsServicesTest(test_lib.AnalysisPluginTestCase):
"""Tests for the Windows Services analysis plugin."""
_TEST_EVENTS = [
{'key_path': '\\ControlSet001\\services\\TestbDriver',
'regvalue': {'ImagePath': 'C:\\Dell\\testdriver.sys', 'Type': 2,
'Start': 2, 'ObjectName': ''},
'timestamp': 1346145829002031},
# This is almost the same, but different timestamp and source, so that
# we can test the service de-duplication.
{'key_path': '\\ControlSet003\\services\\TestbDriver',
'regvalue': {'ImagePath': 'C:\\Dell\\testdriver.sys', 'Type': 2,
'Start': 2, 'ObjectName': ''},
'timestamp': 1346145839002031},
]
def _CreateTestEventObject(self, event_dictionary):
"""Create a test event with a set of attributes.
Args:
event_dictionary (dict[str, str]): contains attributes of an event to add
to the queue.
Returns:
EventObject: event with the appropriate attributes for testing.
"""
date_time = dfdatetime_filetime.Filetime(
timestamp=event_dictionary['timestamp'])
event = time_events.DateTimeValuesEvent(
date_time, definitions.TIME_DESCRIPTION_WRITTEN)
event.data_type = 'windows:registry:service'
for attribute_name, attribute_value in event_dictionary.items():
setattr(event, attribute_name, attribute_value)
return event
def testExamineEventAndCompileReport(self):
"""Tests the ExamineEvent and CompileReport functions."""
events = []
for event_dictionary in self._TEST_EVENTS:
event_dictionary['pathspec'] = fake_path_spec.FakePathSpec(
location='C:\\WINDOWS\\system32\\SYSTEM')
event = self._CreateTestEventObject(event_dictionary)
events.append(event)
plugin = windows_services.WindowsServicesAnalysisPlugin()
storage_writer = self._AnalyzeEvents(events, plugin)
self.assertEqual(len(storage_writer.analysis_reports), 1)
analysis_report = storage_writer.analysis_reports[0]
expected_text = (
'Listing Windows Services\n'
'TestbDriver\n'
'\tImage Path = C:\\Dell\\testdriver.sys\n'
'\tService Type = File System Driver (0x2)\n'
'\tStart Type = Auto Start (2)\n'
'\tService Dll = \n'
'\tObject Name = \n'
'\tSources:\n'
'\t\tC:\\WINDOWS\\system32\\SYSTEM:'
'\\ControlSet001\\services\\TestbDriver\n'
'\t\tC:\\WINDOWS\\system32\\SYSTEM:'
'\\ControlSet003\\services\\TestbDriver\n\n')
self.assertEqual(expected_text, analysis_report.text)
self.assertEqual(analysis_report.plugin_name, 'windows_services')
@shared_test_lib.skipUnlessHasTestFile(['SYSTEM'])
def testExamineEventAndCompileReportOnSystemFile(self):
"""Tests the ExamineEvent and CompileReport functions on a SYSTEM file."""
# We could remove the non-Services plugins, but testing shows that the
# performance gain is negligible.
parser = winreg.WinRegistryParser()
plugin = windows_services.WindowsServicesAnalysisPlugin()
storage_writer = self._ParseAndAnalyzeFile(['SYSTEM'], parser, plugin)
self.assertEqual(storage_writer.number_of_events, 31436)
self.assertEqual(len(storage_writer.analysis_reports), 1)
analysis_report = storage_writer.analysis_reports[0]
# We'll check that a few strings are in the report, like they're supposed
# to be, rather than checking for the exact content of the string,
# as that's dependent on the full path to the test files.
test_strings = [
'1394ohci',
'WwanSvc',
'Sources:',
'ControlSet001',
'ControlSet002']
for string in test_strings:
self.assertIn(string, analysis_report.text)
@shared_test_lib.skipUnlessHasTestFile(['SYSTEM'])
def testExamineEventAndCompileReportOnSystemFileWithYAML(self):
"""Tests the ExamineEvent and CompileReport with YAML."""
# We could remove the non-Services plugins, but testing shows that the
# performance gain is negligible.
parser = winreg.WinRegistryParser()
plugin = windows_services.WindowsServicesAnalysisPlugin()
plugin.SetOutputFormat('yaml')
storage_writer = self._ParseAndAnalyzeFile(['SYSTEM'], parser, plugin)
self.assertEqual(storage_writer.number_of_events, 31436)
self.assertEqual(len(storage_writer.analysis_reports), 1)
analysis_report = storage_writer.analysis_reports[0]
# We'll check that a few strings are in the report, like they're supposed
# to be, rather than checking for the exact content of the string,
# as that's dependent on the full path to the test files.
test_strings = [
windows_services.WindowsService.yaml_tag,
'1394ohci',
'WwanSvc',
'ControlSet001',
'ControlSet002']
for string in test_strings:
self.assertIn(string, analysis_report.text)
if __name__ == '__main__':
unittest.main()
|