示例#1
0
  def testProcessWindowsVista(self):
    """Tests the Process function for Windows Vista AppCompatCache data."""
    binary_data = b''.join(map(chr, [
        0xfe, 0x0f, 0xdc, 0xba, 0x01, 0x00, 0x00, 0x00, 0x46, 0x00, 0x48, 0x00,
        0x20, 0x00, 0x00, 0x00, 0xc2, 0xfe, 0x87, 0x5e, 0x7b, 0xfe, 0xc6, 0x01,
        0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5c, 0x00, 0x3f, 0x00,
        0x3f, 0x00, 0x5c, 0x00, 0x43, 0x00, 0x3a, 0x00, 0x5c, 0x00, 0x57, 0x00,
        0x69, 0x00, 0x6e, 0x00, 0x64, 0x00, 0x6f, 0x00, 0x77, 0x00, 0x73, 0x00,
        0x5c, 0x00, 0x53, 0x00, 0x59, 0x00, 0x53, 0x00, 0x54, 0x00, 0x45, 0x00,
        0x4d, 0x00, 0x33, 0x00, 0x32, 0x00, 0x5c, 0x00, 0x57, 0x00, 0x49, 0x00,
        0x53, 0x00, 0x50, 0x00, 0x54, 0x00, 0x49, 0x00, 0x53, 0x00, 0x2e, 0x00,
        0x45, 0x00, 0x58, 0x00, 0x45, 0x00, 0x00, 0x00
    ]))

    test_file_entry = TestFileEntry(u'SYSTEM-Vista')
    registry_key = self._CreateTestKey(
        u'2015-06-15 11:53:37.043061', binary_data)
    plugin_object = appcompatcache.AppCompatCachePlugin()
    storage_writer = self._ParseKeyWithPlugin(
        registry_key, plugin_object, file_entry=test_file_entry,
        parser_chain=plugin_object.plugin_name)

    self.assertEqual(len(storage_writer.events), 1)

    event_object_index = 0
    event_object = storage_writer.events[event_object_index]

    expected_path = u'\\??\\C:\\Windows\\SYSTEM32\\WISPTIS.EXE'
    expected_message = u'[{0:s}] Cached entry: {1:d} Path: {2:s}'.format(
        event_object.key_path, event_object_index + 1, expected_path)
    expected_short_message = u'Path: {0:s}'.format(expected_path)

    self._TestGetMessageStrings(
        event_object, expected_message, expected_short_message)
示例#2
0
  def testProcessWindows7(self):
    """Tests the Process function for Windows 7 AppCompatCache data."""
    test_file_entry = self._GetTestFileEntry([u'SYSTEM'])
    key_path = (
        u'HKEY_LOCAL_MACHINE\\System\\ControlSet001\\Control\\'
        u'Session Manager\\AppCompatCache')

    win_registry = self._GetWinRegistryFromFileEntry(test_file_entry)
    registry_key = win_registry.GetKeyByPath(key_path)
    plugin_object = appcompatcache.AppCompatCachePlugin()
    storage_writer = self._ParseKeyWithPlugin(
        registry_key, plugin_object, file_entry=test_file_entry,
        parser_chain=plugin_object.plugin_name)

    self.assertEqual(len(storage_writer.events), 330)

    event_object_index = 9
    event_object = storage_writer.events[event_object_index]

    expected_timestamp = timelib.Timestamp.CopyFromString(
        u'2012-04-04 01:46:37.932964')
    self.assertEqual(event_object.timestamp, expected_timestamp)

    self.assertEqual(event_object.pathspec, test_file_entry.path_spec)
    # This should just be the plugin name, as we're invoking it directly,
    # and not through the parser.
    self.assertEqual(event_object.parser, plugin_object.plugin_name)

    expected_path = u'\\??\\C:\\Windows\\PSEXESVC.EXE'
    expected_message = u'[{0:s}] Cached entry: {1:d} Path: {2:s}'.format(
        event_object.key_path, event_object_index + 1, expected_path)
    expected_short_message = u'Path: {0:s}'.format(expected_path)

    self._TestGetMessageStrings(
        event_object, expected_message, expected_short_message)
示例#3
0
    def testProcessWindows10(self):
        """Tests the Process function for Windows 10 AppCompatCache data."""
        test_file_entry = TestFileEntry('SYSTEM-Windows10')
        registry_key = self._CreateTestKey('2015-06-15 11:53:37.043061',
                                           self._TEST_DATA_10)
        plugin = appcompatcache.AppCompatCachePlugin()
        storage_writer = self._ParseKeyWithPlugin(
            registry_key,
            plugin,
            file_entry=test_file_entry,
            parser_chain=plugin.plugin_name)

        self.assertEqual(storage_writer.number_of_events, 1)

        events = list(storage_writer.GetEvents())

        event_index = 0
        event = events[event_index]

        expected_path = 'C:\\Windows\\system32\\MpSigStub.exe'
        expected_message = '[{0:s}] Cached entry: {1:d} Path: {2:s}'.format(
            event.key_path, event_index + 1, expected_path)
        expected_short_message = 'Path: {0:s}'.format(expected_path)

        self._TestGetMessageStrings(event, expected_message,
                                    expected_short_message)
示例#4
0
    def testProcessWindows10Creator(self):
        """Tests the Process function for Windows 10 Creator AppCompatCache data."""
        test_file_entry = TestFileEntry('SYSTEM-Windows10-Creator')
        registry_key = self._CreateTestKey('2015-06-15 11:53:37.043061',
                                           self._TEST_DATA_10_CREATOR)
        plugin = appcompatcache.AppCompatCachePlugin()
        storage_writer = self._ParseKeyWithPlugin(
            registry_key,
            plugin,
            file_entry=test_file_entry,
            parser_chain=plugin.plugin_name)

        self.assertEqual(storage_writer.number_of_events, 1)

        events = list(storage_writer.GetEvents())

        event_index = 0
        event = events[event_index]

        expected_path = (
            'C:\\Program Files (x86)\\NVIDIA Corporation\\3D Vision\\nvstreg.exe'
        )
        expected_message = '[{0:s}] Cached entry: {1:d} Path: {2:s}'.format(
            event.key_path, event_index + 1, expected_path)
        expected_short_message = 'Path: {0:s}'.format(expected_path)

        self._TestGetMessageStrings(event, expected_message,
                                    expected_short_message)
示例#5
0
    def testProcessWindows10Creator(self):
        """Tests the Process function for Windows 10 Creator AppCompatCache data."""
        binary_data = b''.join(
            map(chr, [
                0x34, 0x00, 0x00, 0x00, 0x1a, 0x4e, 0x00, 0x00, 0x00, 0x00,
                0x00, 0x00, 0x53, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
                0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7a, 0x23,
                0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
                0xfa, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
                0x00, 0x00, 0x31, 0x30, 0x74, 0x73, 0xd5, 0xf1, 0x23, 0x93,
                0xd4, 0x00, 0x00, 0x00, 0x7e, 0x00, 0x43, 0x00, 0x3a, 0x00,
                0x5c, 0x00, 0x50, 0x00, 0x72, 0x00, 0x6f, 0x00, 0x67, 0x00,
                0x72, 0x00, 0x61, 0x00, 0x6d, 0x00, 0x20, 0x00, 0x46, 0x00,
                0x69, 0x00, 0x6c, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00,
                0x28, 0x00, 0x78, 0x00, 0x38, 0x00, 0x36, 0x00, 0x29, 0x00,
                0x5c, 0x00, 0x4e, 0x00, 0x56, 0x00, 0x49, 0x00, 0x44, 0x00,
                0x49, 0x00, 0x41, 0x00, 0x20, 0x00, 0x43, 0x00, 0x6f, 0x00,
                0x72, 0x00, 0x70, 0x00, 0x6f, 0x00, 0x72, 0x00, 0x61, 0x00,
                0x74, 0x00, 0x69, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x5c, 0x00,
                0x33, 0x00, 0x44, 0x00, 0x20, 0x00, 0x56, 0x00, 0x69, 0x00,
                0x73, 0x00, 0x69, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x5c, 0x00,
                0x6e, 0x00, 0x76, 0x00, 0x73, 0x00, 0x74, 0x00, 0x72, 0x00,
                0x65, 0x00, 0x67, 0x00, 0x2e, 0x00, 0x65, 0x00, 0x78, 0x00,
                0x65, 0x00, 0xe9, 0x09, 0x99, 0x7b, 0xa8, 0x9e, 0xd2, 0x01,
                0x48, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x04, 0x00,
                0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00,
                0x02, 0x00, 0x00, 0x00, 0x4c, 0x01, 0x00, 0x00, 0x00, 0x04,
                0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00,
                0x40, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00,
                0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
                0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x04, 0x00,
                0x00, 0x00, 0x01, 0x00, 0x00, 0x00
            ]))

        test_file_entry = TestFileEntry('SYSTEM-Windows10-Creator')
        registry_key = self._CreateTestKey('2015-06-15 11:53:37.043061',
                                           binary_data)
        plugin = appcompatcache.AppCompatCachePlugin()
        storage_writer = self._ParseKeyWithPlugin(
            registry_key,
            plugin,
            file_entry=test_file_entry,
            parser_chain=plugin.plugin_name)

        self.assertEqual(storage_writer.number_of_events, 1)

        events = list(storage_writer.GetEvents())

        event_index = 0
        event = events[event_index]

        expected_path = (
            'C:\\Program Files (x86)\\NVIDIA Corporation\\3D Vision\\nvstreg.exe'
        )
        expected_message = '[{0:s}] Cached entry: {1:d} Path: {2:s}'.format(
            event.key_path, event_index + 1, expected_path)
        expected_short_message = 'Path: {0:s}'.format(expected_path)

        self._TestGetMessageStrings(event, expected_message,
                                    expected_short_message)
示例#6
0
    def testProcessWindows2003(self):
        """Tests the Process function for Windows 2003 AppCompatCache data."""
        test_file_entry = TestFileEntry('SYSTEM-Windows2003')
        registry_key = self._CreateTestKey('2015-06-15 11:53:37.043061',
                                           self._TEST_DATA_2003)
        plugin = appcompatcache.AppCompatCachePlugin()
        storage_writer = self._ParseKeyWithPlugin(
            registry_key,
            plugin,
            file_entry=test_file_entry,
            parser_chain=plugin.plugin_name)

        self.assertEqual(storage_writer.number_of_events, 1)

        events = list(storage_writer.GetEvents())

        event_index = 0
        event = events[event_index]

        expected_path = (
            '\\??\\C:\\WINDOWS\\Microsoft.NET\\Framework\\v1.1.4322\\ngen.exe')
        expected_message = '[{0:s}] Cached entry: {1:d} Path: {2:s}'.format(
            event.key_path, event_index + 1, expected_path)
        expected_short_message = 'Path: {0:s}'.format(expected_path)

        self._TestGetMessageStrings(event, expected_message,
                                    expected_short_message)
示例#7
0
    def testProcessWindows10(self):
        """Tests the Process function for Windows 10 AppCompatCache data."""
        binary_data = b''.join(
            map(chr, [
                0x30, 0x00, 0x00, 0x00, 0x0a, 0x04, 0x00, 0x00, 0x00, 0x00,
                0x00, 0x00, 0xc9, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
                0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
                0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
                0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x31, 0x30,
                0x74, 0x73, 0x64, 0x7e, 0xcd, 0xc9, 0xcc, 0x00, 0x00, 0x00,
                0x42, 0x00, 0x43, 0x00, 0x3a, 0x00, 0x5c, 0x00, 0x57, 0x00,
                0x69, 0x00, 0x6e, 0x00, 0x64, 0x00, 0x6f, 0x00, 0x77, 0x00,
                0x73, 0x00, 0x5c, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00,
                0x74, 0x00, 0x65, 0x00, 0x6d, 0x00, 0x33, 0x00, 0x32, 0x00,
                0x5c, 0x00, 0x4d, 0x00, 0x70, 0x00, 0x53, 0x00, 0x69, 0x00,
                0x67, 0x00, 0x53, 0x00, 0x74, 0x00, 0x75, 0x00, 0x62, 0x00,
                0x2e, 0x00, 0x65, 0x00, 0x78, 0x00, 0x65, 0x00, 0x80, 0x99,
                0xe3, 0x66, 0x30, 0xd6, 0xcf, 0x01, 0x7c, 0x00, 0x00, 0x00,
                0x00, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00,
                0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
                0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00,
                0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
                0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x08, 0x00,
                0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
                0x10, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00,
                0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00,
                0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x04,
                0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00,
                0x20, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00,
                0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
                0x01, 0x00, 0x00, 0x00
            ]))

        test_file_entry = TestFileEntry('SYSTEM-Windows10')
        registry_key = self._CreateTestKey('2015-06-15 11:53:37.043061',
                                           binary_data)
        plugin = appcompatcache.AppCompatCachePlugin()
        storage_writer = self._ParseKeyWithPlugin(
            registry_key,
            plugin,
            file_entry=test_file_entry,
            parser_chain=plugin.plugin_name)

        self.assertEqual(storage_writer.number_of_events, 1)

        events = list(storage_writer.GetEvents())

        event_index = 0
        event = events[event_index]

        expected_path = 'C:\\Windows\\system32\\MpSigStub.exe'
        expected_message = '[{0:s}] Cached entry: {1:d} Path: {2:s}'.format(
            event.key_path, event_index + 1, expected_path)
        expected_short_message = 'Path: {0:s}'.format(expected_path)

        self._TestGetMessageStrings(event, expected_message,
                                    expected_short_message)
示例#8
0
    def testProcessWindows8_0(self):
        """Tests the Process function for Windows 8.0 AppCompatCache data."""
        binary_data = b''.join(
            map(chr, [
                0x80, 0x00, 0x00, 0x00, 0x2e, 0x01, 0x00, 0x00, 0x00, 0x00,
                0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
                0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,
                0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
                0x4a, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00,
                0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00,
                0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
                0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
                0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,
                0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
                0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
                0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
                0x08, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x30,
                0x74, 0x73, 0x9e, 0x6b, 0x3c, 0x8a, 0x68, 0x00, 0x00, 0x00,
                0x52, 0x00, 0x53, 0x00, 0x59, 0x00, 0x53, 0x00, 0x56, 0x00,
                0x4f, 0x00, 0x4c, 0x00, 0x5c, 0x00, 0x57, 0x00, 0x69, 0x00,
                0x6e, 0x00, 0x64, 0x00, 0x6f, 0x00, 0x77, 0x00, 0x73, 0x00,
                0x5c, 0x00, 0x53, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00,
                0x65, 0x00, 0x6d, 0x00, 0x33, 0x00, 0x32, 0x00, 0x5c, 0x00,
                0x77, 0x00, 0x62, 0x00, 0x65, 0x00, 0x6d, 0x00, 0x5c, 0x00,
                0x57, 0x00, 0x6d, 0x00, 0x69, 0x00, 0x50, 0x00, 0x72, 0x00,
                0x76, 0x00, 0x53, 0x00, 0x45, 0x00, 0x2e, 0x00, 0x65, 0x00,
                0x78, 0x00, 0x65, 0x00, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00,
                0x00, 0x01, 0xf0, 0xa4, 0xa4, 0xbc, 0xfc, 0xed, 0xcc, 0x01,
                0x00, 0x00, 0x00, 0x00
            ]))

        test_file_entry = TestFileEntry('SYSTEM-Windows8.0')
        registry_key = self._CreateTestKey('2015-06-15 11:53:37.043061',
                                           binary_data)
        plugin = appcompatcache.AppCompatCachePlugin()
        storage_writer = self._ParseKeyWithPlugin(
            registry_key,
            plugin,
            file_entry=test_file_entry,
            parser_chain=plugin.plugin_name)

        self.assertEqual(storage_writer.number_of_events, 1)

        events = list(storage_writer.GetEvents())

        event_index = 0
        event = events[event_index]

        expected_path = 'SYSVOL\\Windows\\System32\\wbem\\WmiPrvSE.exe'
        expected_message = '[{0:s}] Cached entry: {1:d} Path: {2:s}'.format(
            event.key_path, event_index + 1, expected_path)
        expected_short_message = 'Path: {0:s}'.format(expected_path)

        self._TestGetMessageStrings(event, expected_message,
                                    expected_short_message)
示例#9
0
    def testProcessWindows8_1(self):
        """Tests the Process function for Windows 8.1 AppCompatCache data."""
        binary_data = b''.join(
            map(chr, [
                0x80, 0x00, 0x00, 0x00, 0x09, 0x15, 0x00, 0x00, 0x00, 0x00,
                0x00, 0x00, 0x09, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
                0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00,
                0x00, 0x00, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
                0x46, 0x15, 0x00, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x47, 0x00,
                0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x01, 0x00, 0x00,
                0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
                0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
                0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x6c, 0x00,
                0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
                0x6c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
                0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
                0x38, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x31, 0x30,
                0x74, 0x73, 0xbc, 0x4c, 0xa0, 0x05, 0x5e, 0x00, 0x00, 0x00,
                0x46, 0x00, 0x53, 0x00, 0x59, 0x00, 0x53, 0x00, 0x56, 0x00,
                0x4f, 0x00, 0x4c, 0x00, 0x5c, 0x00, 0x57, 0x00, 0x69, 0x00,
                0x6e, 0x00, 0x64, 0x00, 0x6f, 0x00, 0x77, 0x00, 0x73, 0x00,
                0x5c, 0x00, 0x53, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00,
                0x65, 0x00, 0x6d, 0x00, 0x33, 0x00, 0x32, 0x00, 0x5c, 0x00,
                0x64, 0x00, 0x6c, 0x00, 0x6c, 0x00, 0x68, 0x00, 0x6f, 0x00,
                0x73, 0x00, 0x74, 0x00, 0x2e, 0x00, 0x65, 0x00, 0x78, 0x00,
                0x65, 0x00, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x11,
                0x00, 0x01, 0xb5, 0x1f, 0x73, 0x13, 0x34, 0x9f, 0xce, 0x01,
                0x00, 0x00, 0x00, 0x00
            ]))

        test_file_entry = TestFileEntry(u'SYSTEM-Windows8.1')
        registry_key = self._CreateTestKey(u'2015-06-15 11:53:37.043061',
                                           binary_data)
        plugin = appcompatcache.AppCompatCachePlugin()
        storage_writer = self._ParseKeyWithPlugin(
            registry_key,
            plugin,
            file_entry=test_file_entry,
            parser_chain=plugin.plugin_name)

        self.assertEqual(storage_writer.number_of_events, 1)

        events = list(storage_writer.GetEvents())

        event_index = 0
        event = events[event_index]

        expected_path = u'SYSVOL\\Windows\\System32\\dllhost.exe'
        expected_message = u'[{0:s}] Cached entry: {1:d} Path: {2:s}'.format(
            event.key_path, event_index + 1, expected_path)
        expected_short_message = u'Path: {0:s}'.format(expected_path)

        self._TestGetMessageStrings(event, expected_message,
                                    expected_short_message)
示例#10
0
    def testFilters(self):
        """Tests the FILTERS class attribute."""
        plugin = appcompatcache.AppCompatCachePlugin()

        key_path = ('HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\'
                    'Session Manager\\AppCompatibility')
        self._AssertFiltersOnKeyPath(plugin, key_path)

        key_path = ('HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\'
                    'Session Manager\\AppCompatCache')
        self._AssertFiltersOnKeyPath(plugin, key_path)

        self._AssertNotFiltersOnKeyPath(plugin, 'HKEY_LOCAL_MACHINE\\Bogus')
示例#11
0
    def testProcessWindows2003(self):
        """Tests the Process function for Windows 2003 AppCompatCache data."""
        binary_data = b''.join(
            map(chr, [
                0xfe, 0x0f, 0xdc, 0xba, 0x01, 0x00, 0x00, 0x00, 0x72, 0x00,
                0x74, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x35, 0x86, 0x76,
                0x44, 0xf2, 0xc2, 0x01, 0x00, 0x20, 0x01, 0x00, 0x00, 0x00,
                0x00, 0x00, 0x5c, 0x00, 0x3f, 0x00, 0x3f, 0x00, 0x5c, 0x00,
                0x43, 0x00, 0x3a, 0x00, 0x5c, 0x00, 0x57, 0x00, 0x49, 0x00,
                0x4e, 0x00, 0x44, 0x00, 0x4f, 0x00, 0x57, 0x00, 0x53, 0x00,
                0x5c, 0x00, 0x4d, 0x00, 0x69, 0x00, 0x63, 0x00, 0x72, 0x00,
                0x6f, 0x00, 0x73, 0x00, 0x6f, 0x00, 0x66, 0x00, 0x74, 0x00,
                0x2e, 0x00, 0x4e, 0x00, 0x45, 0x00, 0x54, 0x00, 0x5c, 0x00,
                0x46, 0x00, 0x72, 0x00, 0x61, 0x00, 0x6d, 0x00, 0x65, 0x00,
                0x77, 0x00, 0x6f, 0x00, 0x72, 0x00, 0x6b, 0x00, 0x5c, 0x00,
                0x76, 0x00, 0x31, 0x00, 0x2e, 0x00, 0x31, 0x00, 0x2e, 0x00,
                0x34, 0x00, 0x33, 0x00, 0x32, 0x00, 0x32, 0x00, 0x5c, 0x00,
                0x6e, 0x00, 0x67, 0x00, 0x65, 0x00, 0x6e, 0x00, 0x2e, 0x00,
                0x65, 0x00, 0x78, 0x00, 0x65, 0x00, 0x00, 0x00
            ]))

        test_file_entry = TestFileEntry(u'SYSTEM-Windows2003')
        registry_key = self._CreateTestKey(u'2015-06-15 11:53:37.043061',
                                           binary_data)
        plugin = appcompatcache.AppCompatCachePlugin()
        storage_writer = self._ParseKeyWithPlugin(
            registry_key,
            plugin,
            file_entry=test_file_entry,
            parser_chain=plugin.plugin_name)

        self.assertEqual(storage_writer.number_of_events, 1)

        events = list(storage_writer.GetEvents())

        event_index = 0
        event = events[event_index]

        expected_path = (
            u'\\??\\C:\\WINDOWS\\Microsoft.NET\\Framework\\v1.1.4322\\ngen.exe'
        )
        expected_message = u'[{0:s}] Cached entry: {1:d} Path: {2:s}'.format(
            event.key_path, event_index + 1, expected_path)
        expected_short_message = u'Path: {0:s}'.format(expected_path)

        self._TestGetMessageStrings(event, expected_message,
                                    expected_short_message)
示例#12
0
 def setUp(self):
     """Sets up the needed objects used throughout the test."""
     self._plugin = appcompatcache.AppCompatCachePlugin()
示例#13
0
  def testProcessWindowsXP(self):
    """Tests the Process function for Windows XP AppCompatCache data."""
    binary_data = b''.join(map(chr, [
        0xef, 0xbe, 0xad, 0xde, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
        0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x5c, 0x00, 0x3f, 0x00, 0x3f, 0x00, 0x5c, 0x00,
        0x43, 0x00, 0x3a, 0x00, 0x5c, 0x00, 0x57, 0x00, 0x49, 0x00, 0x4e, 0x00,
        0x44, 0x00, 0x4f, 0x00, 0x57, 0x00, 0x53, 0x00, 0x5c, 0x00, 0x73, 0x00,
        0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6d, 0x00, 0x33, 0x00,
        0x32, 0x00, 0x5c, 0x00, 0x68, 0x00, 0x74, 0x00, 0x69, 0x00, 0x63, 0x00,
        0x6f, 0x00, 0x6e, 0x00, 0x73, 0x00, 0x2e, 0x00, 0x64, 0x00, 0x6c, 0x00,
        0x6c, 0x00, 0x00, 0x00, 0x44, 0x00, 0x6f, 0x00, 0x77, 0x00, 0x6e, 0x00,
        0x6c, 0x00, 0x6f, 0x00, 0x61, 0x00, 0x64, 0x00, 0x5c, 0x00, 0x62, 0x00,
        0x37, 0x00, 0x66, 0x00, 0x30, 0x00, 0x62, 0x00, 0x32, 0x00, 0x38, 0x00,
        0x39, 0x00, 0x32, 0x00, 0x62, 0x00, 0x32, 0x00, 0x31, 0x00, 0x32, 0x00,
        0x31, 0x00, 0x31, 0x00, 0x61, 0x00, 0x35, 0x00, 0x36, 0x00, 0x33, 0x00,
        0x30, 0x00, 0x35, 0x00, 0x31, 0x00, 0x38, 0x00, 0x64, 0x00, 0x30, 0x00,
        0x35, 0x00, 0x38, 0x00, 0x66, 0x00, 0x34, 0x00, 0x38, 0x00, 0x64, 0x00,
        0x39, 0x00, 0x5c, 0x00, 0x75, 0x00, 0x70, 0x00, 0x64, 0x00, 0x61, 0x00,
        0x74, 0x00, 0x65, 0x00, 0x5c, 0x00, 0x75, 0x00, 0x70, 0x00, 0x64, 0x00,
        0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x2e, 0x00, 0x65, 0x00, 0x78, 0x00,
        0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0xe9, 0x54, 0x2b, 0x7a, 0xc4, 0x01,
        0x00, 0xae, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0xd3, 0x0e, 0xc7,
        0xe9, 0x39, 0xca, 0x01
    ]))

    test_file_entry = TestFileEntry(u'SYSTEM-XP')
    registry_key = self._CreateTestKey(
        u'2015-06-15 11:53:37.043061', binary_data)
    plugin_object = appcompatcache.AppCompatCachePlugin()
    storage_writer = self._ParseKeyWithPlugin(
        registry_key, plugin_object, file_entry=test_file_entry,
        parser_chain=plugin_object.plugin_name)

    self.assertEqual(len(storage_writer.events), 2)

    event_object_index = 0
    event_object = storage_writer.events[event_object_index]

    expected_path = u'\\??\\C:\\WINDOWS\\system32\\hticons.dll'
    expected_message = u'[{0:s}] Cached entry: {1:d} Path: {2:s}'.format(
        event_object.key_path, event_object_index + 1, expected_path)
    expected_short_message = u'Path: {0:s}'.format(expected_path)

    self._TestGetMessageStrings(
        event_object, expected_message, expected_short_message)
示例#14
0
 def setUp(self):
     """Makes preparations before running an individual test."""
     self._plugin = appcompatcache.AppCompatCachePlugin()
示例#15
0
 def setUp(self):
   """Sets up the needed objects used throughout the test."""
   pre_obj = event.PreprocessObject()
   pre_obj.current_control_set = 'ControlSet001'
   self._plugin = appcompatcache.AppCompatCachePlugin(pre_obj=pre_obj)