Source code for plaso.parsers.winreg_plugins.interface

# -*- coding: utf-8 -*-
"""The Windows Registry plugin interface."""

from __future__ import unicode_literals

import abc

from plaso.parsers import plugins


[docs]class BaseWindowsRegistryKeyFilter(object): """Class that defines the Windows Registry key filter interface.""" @property def key_paths(self): """List of key paths defined by the filter.""" return [] # pylint: disable=redundant-returns-doc
[docs] @abc.abstractmethod def Match(self, registry_key): """Determines if a Windows Registry key matches the filter. Args: registry_key (dfwinreg.WinRegistryKey): Windows Registry key. Returns: bool: True if the keys match.
"""
[docs]class WindowsRegistryKeyPathFilter(BaseWindowsRegistryKeyFilter): """Windows Registry key path filter.""" _CONTROL_SET_PREFIX = ( 'HKEY_LOCAL_MACHINE\\System\\CurrentControlSet') # This list must be ordered with most specific matches first. _WOW64_PREFIXES = [ 'HKEY_CURRENT_USER\\Software\\Classes', 'HKEY_CURRENT_USER\\Software', 'HKEY_LOCAL_MACHINE\\Software\\Classes', 'HKEY_LOCAL_MACHINE\\Software'] def __init__(self, key_path): """Initializes a Windows Registry key filter. Args: key_path (str): key path. """ super(WindowsRegistryKeyPathFilter, self).__init__() key_path.rstrip('\\') self._key_path = key_path key_path = key_path.upper() self._key_path_upper = key_path self._wow64_key_path = None self._wow64_key_path_upper = None if key_path.startswith(self._CONTROL_SET_PREFIX.upper()): self._key_path_prefix, _, self._key_path_suffix = key_path.partition( 'CurrentControlSet'.upper()) else: self._key_path_prefix = None self._key_path_suffix = None # Handle WoW64 Windows Registry key redirection. # Also see: # https://msdn.microsoft.com/en-us/library/windows/desktop/ # ms724072%28v=vs.85%29.aspx # https://msdn.microsoft.com/en-us/library/windows/desktop/ # aa384253(v=vs.85).aspx wow64_prefix = None for key_path_prefix in self._WOW64_PREFIXES: if key_path.startswith(key_path_prefix.upper()): wow64_prefix = key_path_prefix break if wow64_prefix: key_path_suffix = self._key_path[len(wow64_prefix):] if key_path_suffix.startswith('\\'): key_path_suffix = key_path_suffix[1:] self._wow64_key_path = '\\'.join([ wow64_prefix, 'Wow6432Node', key_path_suffix]) self._wow64_key_path_upper = self._wow64_key_path.upper() @property def key_paths(self): """List of key paths defined by the filter.""" if self._wow64_key_path: return [self._key_path, self._wow64_key_path] return [self._key_path]
[docs] def Match(self, registry_key): """Determines if a Windows Registry key matches the filter. Args: registry_key (dfwinreg.WinRegistryKey): Windows Registry key. Returns: bool: True if the keys match. """ key_path = registry_key.path.upper() if self._key_path_prefix and self._key_path_suffix: if (key_path.startswith(self._key_path_prefix) and key_path.endswith(self._key_path_suffix)): key_path_segment = key_path[ len(self._key_path_prefix):-len(self._key_path_suffix)] if key_path_segment.startswith('ControlSet'.upper()): try: control_set = int(key_path_segment[10:], 10) except ValueError: control_set = None # TODO: check if control_set is in bounds. return control_set is not None return ( key_path == self._key_path_upper or
key_path == self._wow64_key_path_upper)
[docs]class WindowsRegistryKeyPathPrefixFilter(BaseWindowsRegistryKeyFilter): """Windows Registry key path prefix filter.""" def __init__(self, key_path_prefix): """Initializes a Windows Registry key filter. Args: key_path_prefix (str): the key path prefix. """ super(WindowsRegistryKeyPathPrefixFilter, self).__init__() self._key_path_prefix = key_path_prefix
[docs] def Match(self, registry_key): """Determines if a Windows Registry key matches the filter. Args: registry_key (dfwinreg.WinRegistryKey): Windows Registry key. Returns: bool: True if the keys match. """
return registry_key.path.startsswith(self._key_path_prefix)
[docs]class WindowsRegistryKeyPathSuffixFilter(BaseWindowsRegistryKeyFilter): """Windows Registry key path suffix filter.""" def __init__(self, key_path_suffix): """Initializes a Windows Registry key filter. Args: key_path_suffix (str): the key path suffix. """ super(WindowsRegistryKeyPathSuffixFilter, self).__init__() self._key_path_suffix = key_path_suffix
[docs] def Match(self, registry_key): """Determines if a Windows Registry key matches the filter. Args: registry_key (dfwinreg.WinRegistryKey): Windows Registry key. Returns: bool: True if the keys match. """
return registry_key.path.endswith(self._key_path_suffix)
[docs]class WindowsRegistryKeyWithValuesFilter(BaseWindowsRegistryKeyFilter): """Windows Registry key with values filter.""" _EMPTY_SET = frozenset() def __init__(self, value_names): """Initializes a Windows Registry key filter. Args: value_names (list[str]): name of values that should be present in the key. """ super(WindowsRegistryKeyWithValuesFilter, self).__init__() self._value_names = frozenset(value_names)
[docs] def Match(self, registry_key): """Determines if a Windows Registry key matches the filter. Args: registry_key (dfwinreg.WinRegistryKey): Windows Registry key. Returns: bool: True if the keys match. """ value_names = frozenset([ registry_value.name for registry_value in registry_key.GetValues()])
return self._value_names.issubset(value_names)
[docs]class WindowsRegistryPlugin(plugins.BasePlugin): """The Windows Registry plugin interface.""" NAME = 'winreg_plugin' DESCRIPTION = 'Parser for Windows Registry value data.' # List of Windows Registry key filters (instances of # BaseWindowsRegistryKeyFilter) that should match for the plugin to # parse the Windows Registry key or its values. FILTERS = frozenset() # URLS should contain a list of URLs with additional information about this # key or value. URLS = [] # pylint 1.9.3 wants a docstring for kwargs, but this is not useful to add. # pylint: disable=missing-param-doc
[docs] @abc.abstractmethod def ExtractEvents(self, parser_mediator, registry_key, **kwargs): """Extracts events from a Windows Registry key. Args: parser_mediator (ParserMediator): mediates interactions between parsers and other components, such as storage and dfvfs. registry_key (dfwinreg.WinRegistryKey): Windows Registry key.
""" # TODO: merge with UpdateChainAndProcess, also requires changes to tests. # pylint 1.9.3 wants a docstring for kwargs, but this is not useful to add. # pylint: disable=missing-param-doc,arguments-differ
[docs] def Process(self, parser_mediator, registry_key, **kwargs): """Processes a Windows Registry key or value. Args: parser_mediator (ParserMediator): mediates interactions between parsers and other components, such as storage and dfvfs. registry_key (dfwinreg.WinRegistryKey): Windows Registry key. Raises: ValueError: If the Windows Registry key is not set. """ if registry_key is None: raise ValueError('Windows Registry key is not set.') # This will raise if unhandled keyword arguments are passed. super(WindowsRegistryPlugin, self).Process(parser_mediator, **kwargs)
self.ExtractEvents(parser_mediator, registry_key, **kwargs) # pylint 1.9.3 wants a docstring for kwargs, but this is not useful to add. # pylint: disable=missing-param-doc,arguments-differ
[docs] def UpdateChainAndProcess(self, parser_mediator, registry_key, **kwargs): """Updates the parser chain and processes a Windows Registry key or value. Args: parser_mediator (ParserMediator): mediates interactions between parsers and other components, such as storage and dfvfs. registry_key (dfwinreg.WinRegistryKey): Windows Registry key. Raises: ValueError: If the Windows Registry key is not set. """ parser_mediator.AppendToParserChain(self) try: self.Process(parser_mediator, registry_key, **kwargs) finally:
parser_mediator.PopFromParserChain()