Source code for plaso.parsers.sqlite_plugins.zeitgeist

# -*- coding: utf-8 -*-
"""SQLite parser plugin for Zeitgeist activity database files."""

from dfdatetime import java_time as dfdatetime_java_time

from plaso.containers import events
from plaso.parsers import sqlite
from plaso.parsers.sqlite_plugins import interface


[docs] class ZeitgeistActivityEventData(events.EventData): """Zeitgeist activity event data. Attributes: offset (str): identifier of the row, from which the event data was extracted. query (str): SQL query that was used to obtain the event data. recorded_time (dfdatetime.DateTimeValues): date and time the entry was recorded. subject_uri (str): subject URI. """ DATA_TYPE = 'zeitgeist:activity'
[docs] def __init__(self): """Initializes event data.""" super(ZeitgeistActivityEventData, self).__init__(data_type=self.DATA_TYPE) self.offset = None self.query = None self.recorded_time = None self.subject_uri = None
[docs] class ZeitgeistActivityDatabasePlugin(interface.SQLitePlugin): """SQLite parser plugin for Zeitgeist activity database files. Zeitgeist is a service which logs the user activities and events, anywhere from files opened to websites visited and conversations. """ NAME = 'zeitgeist' DATA_FORMAT = 'Zeitgeist activity SQLite database file' # TODO: Explore the database more and make this parser cover new findings. REQUIRED_STRUCTURE = { 'actor': frozenset([]), 'event': frozenset([ 'id', 'subj_id', 'timestamp']), 'uri': frozenset(['id'])} QUERIES = [ ('SELECT id, timestamp, subj_uri FROM event_view', 'ParseZeitgeistEventRow')] SCHEMAS = [{ 'actor': ( 'CREATE TABLE actor ( id INTEGER PRIMARY KEY AUTOINCREMENT, value ' 'VARCHAR UNIQUE )'), 'event': ( 'CREATE TABLE event ( id INTEGER, timestamp INTEGER, interpretation ' 'INTEGER, manifestation INTEGER, actor INTEGER, payload INTEGER, ' 'subj_id INTEGER, subj_interpretation INTEGER, subj_manifestation ' 'INTEGER, subj_origin INTEGER, subj_mimetype INTEGER, subj_text ' 'INTEGER, subj_storage INTEGER, origin INTEGER, subj_id_current ' 'INTEGER, CONSTRAINT interpretation_fk FOREIGN KEY(interpretation) ' 'REFERENCES interpretation(id) ON DELETE CASCADE, CONSTRAINT ' 'manifestation_fk FOREIGN KEY(manifestation) REFERENCES ' 'manifestation(id) ON DELETE CASCADE, CONSTRAINT actor_fk FOREIGN ' 'KEY(actor) REFERENCES actor(id) ON DELETE CASCADE, CONSTRAINT ' 'origin_fk FOREIGN KEY(origin) REFERENCES uri(id) ON DELETE ' 'CASCADE, CONSTRAINT payload_fk FOREIGN KEY(payload) REFERENCES ' 'payload(id) ON DELETE CASCADE, CONSTRAINT subj_id_fk FOREIGN ' 'KEY(subj_id) REFERENCES uri(id) ON DELETE CASCADE, CONSTRAINT ' 'subj_id_current_fk FOREIGN KEY(subj_id_current) REFERENCES uri(id) ' 'ON DELETE CASCADE, CONSTRAINT subj_interpretation_fk FOREIGN ' 'KEY(subj_interpretation) REFERENCES interpretation(id) ON DELETE ' 'CASCADE, CONSTRAINT subj_manifestation_fk FOREIGN ' 'KEY(subj_manifestation) REFERENCES manifestation(id) ON DELETE ' 'CASCADE, CONSTRAINT subj_origin_fk FOREIGN KEY(subj_origin) ' 'REFERENCES uri(id) ON DELETE CASCADE, CONSTRAINT subj_mimetype_fk ' 'FOREIGN KEY(subj_mimetype) REFERENCES mimetype(id) ON DELETE ' 'CASCADE, CONSTRAINT subj_text_fk FOREIGN KEY(subj_text) REFERENCES ' 'text(id) ON DELETE CASCADE, CONSTRAINT subj_storage_fk FOREIGN ' 'KEY(subj_storage) REFERENCES storage(id) ON DELETE CASCADE, ' 'CONSTRAINT unique_event UNIQUE (timestamp, interpretation, ' 'manifestation, actor, subj_id) )'), 'extensions_conf': ( 'CREATE TABLE extensions_conf ( extension VARCHAR, key VARCHAR, ' 'value BLOB, CONSTRAINT unique_extension UNIQUE (extension, key) )'), 'interpretation': ( 'CREATE TABLE interpretation ( id INTEGER PRIMARY KEY ' 'AUTOINCREMENT, value VARCHAR UNIQUE )'), 'manifestation': ( 'CREATE TABLE manifestation ( id INTEGER PRIMARY KEY AUTOINCREMENT, ' 'value VARCHAR UNIQUE )'), 'mimetype': ( 'CREATE TABLE mimetype ( id INTEGER PRIMARY KEY AUTOINCREMENT, ' 'value VARCHAR UNIQUE )'), 'payload': ( 'CREATE TABLE payload (id INTEGER PRIMARY KEY, value BLOB)'), 'schema_version': ( 'CREATE TABLE schema_version ( schema VARCHAR PRIMARY KEY ON ' 'CONFLICT REPLACE, version INT )'), 'storage': ( 'CREATE TABLE storage ( id INTEGER PRIMARY KEY, value VARCHAR ' 'UNIQUE, state INTEGER, icon VARCHAR, display_name VARCHAR )'), 'text': ( 'CREATE TABLE text ( id INTEGER PRIMARY KEY, value VARCHAR ' 'UNIQUE )'), 'uri': ( 'CREATE TABLE uri ( id INTEGER PRIMARY KEY, value VARCHAR ' 'UNIQUE )')}] def _GetDateTimeRowValue(self, query_hash, row, value_name): """Retrieves a date and time value from the row. Args: query_hash (int): hash of the query, that uniquely identifies the query that produced the row. row (sqlite3.Row): row. value_name (str): name of the value. Returns: dfdatetime.JavaTime: date and time value or None if not available. """ timestamp = self._GetRowValue(query_hash, row, value_name) if timestamp is None: return None return dfdatetime_java_time.JavaTime(timestamp=timestamp)
[docs] def ParseZeitgeistEventRow( self, parser_mediator, query, row, **unused_kwargs): """Parses a zeitgeist event row. Args: parser_mediator (ParserMediator): mediates interactions between parsers and other components, such as storage and dfVFS. query (str): query that created the row. row (sqlite3.Row): row. """ query_hash = hash(query) event_data = ZeitgeistActivityEventData() event_data.offset = self._GetRowValue(query_hash, row, 'id') event_data.query = query event_data.recorded_time = self._GetDateTimeRowValue( query_hash, row, 'timestamp') event_data.subject_uri = self._GetRowValue(query_hash, row, 'subj_uri') parser_mediator.ProduceEventData(event_data)
sqlite.SQLiteParser.RegisterPlugin(ZeitgeistActivityDatabasePlugin)