Source code for plaso.formatters.mac_keychain

# -*- coding: utf-8 -*-
"""The MacOS keychain password database file event formatter."""

from __future__ import unicode_literals

from plaso.formatters import interface
from plaso.formatters import manager


[docs]class KeychainApplicationRecordFormatter(interface.ConditionalEventFormatter): """Formatter for a keychain application record event.""" DATA_TYPE = 'mac:keychain:application' FORMAT_STRING_PIECES = [ 'Name: {entry_name}', 'Account: {account_name}'] FORMAT_STRING_SHORT_PIECES = ['{entry_name}'] SOURCE_LONG = 'Keychain Application password'
SOURCE_SHORT = 'LOG'
[docs]class KeychainInternetRecordFormatter(interface.ConditionalEventFormatter): """Formatter for a keychain Internet record event.""" DATA_TYPE = 'mac:keychain:internet' FORMAT_STRING_PIECES = [ 'Name: {entry_name}', 'Account: {account_name}', 'Where: {where}', 'Protocol: {protocol}', '({type_protocol})'] FORMAT_STRING_SHORT_PIECES = ['{entry_name}'] SOURCE_LONG = 'Keychain Internet password'
SOURCE_SHORT = 'LOG' manager.FormattersManager.RegisterFormatters([ KeychainApplicationRecordFormatter, KeychainInternetRecordFormatter])