# -*- coding: utf-8 -*-
"""Plug-in to collect information about the Windows timezone settings."""
from plaso.containers import events
from plaso.parsers import winreg_parser
from plaso.parsers.winreg_plugins import interface
[docs]class WindowsTimezoneSettingsEventData(events.EventData):
"""Timezone settings event data attribute container.
Attributes:
configuration (str): timezone configuration.
key_path (str): Windows Registry key path.
last_written_time (dfdatetime.DateTimeValues): entry last written date and
time.
"""
DATA_TYPE = 'windows:registry:timezone'
def __init__(self):
"""Initializes event data."""
super(WindowsTimezoneSettingsEventData, self).__init__(
data_type=self.DATA_TYPE)
self.configuration = None
self.key_path = None
self.last_written_time = None
[docs]class WinRegTimezonePlugin(interface.WindowsRegistryPlugin):
"""Plug-in to collect information about the Windows timezone settings."""
NAME = 'windows_timezone'
DATA_FORMAT = 'Windows time zone Registry data'
FILTERS = frozenset([
interface.WindowsRegistryKeyPathFilter(
'HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\'
'TimeZoneInformation')])
_VALUE_NAMES = frozenset([
'ActiveTimeBias', 'Bias', 'DaylightBias', 'DaylightName',
'DynamicDaylightTimeDisabled', 'StandardBias', 'StandardName',
'TimeZoneKeyName'])
winreg_parser.WinRegistryParser.RegisterPlugin(WinRegTimezonePlugin)