dissect.target.plugins.os.windows.regf.7zip

Module Contents

Classes

SevenZipPlugin

Windows 7-Zip GUI plugin.

Attributes

dissect.target.plugins.os.windows.regf.7zip.PanelPathRecord
dissect.target.plugins.os.windows.regf.7zip.ArcHistoryRecord
dissect.target.plugins.os.windows.regf.7zip.PathHistoryRecord
dissect.target.plugins.os.windows.regf.7zip.CopyHistoryRecord
dissect.target.plugins.os.windows.regf.7zip.FolderHistoryRecord
class dissect.target.plugins.os.windows.regf.7zip.SevenZipPlugin(target: dissect.target.Target)

Bases: dissect.target.plugin.Plugin

Windows 7-Zip GUI plugin.

KEY = 'HKCU\\Software\\7-Zip'
check_compatible() None

Perform a compatibility check with the target.

This function should return None if the plugin is compatible with the current target (self.target). For example, check if a certain file exists. Otherwise it should raise an UnsupportedPluginError.

Raises:

UnsupportedPluginError – If the plugin could not be loaded.

parse_key(key, keyname, valuename, record)
sevenzip() Iterator[PanelPathRecord | ArcHistoryRecord | PathHistoryRecord | CopyHistoryRecord | FolderHistoryRecord]

Return 7-Zip history information from the registry.

7-Zip is an open source file archiver. If the HKCUSoftware7-Zip registry key exists, it checks for additional registry keys, such as ArcHistory and FolderHistory. This might provide insight in which files have been archived by 7-Zip.

References