dissect.target.plugins.apps.productivity.sevenzip¶
Module Contents¶
Classes¶
Windows 7-Zip GUI plugin. |
Attributes¶
- dissect.target.plugins.apps.productivity.sevenzip.PanelPathRecord¶
- dissect.target.plugins.apps.productivity.sevenzip.ArcHistoryRecord¶
- dissect.target.plugins.apps.productivity.sevenzip.PathHistoryRecord¶
- dissect.target.plugins.apps.productivity.sevenzip.CopyHistoryRecord¶
- dissect.target.plugins.apps.productivity.sevenzip.FolderHistoryRecord¶
- dissect.target.plugins.apps.productivity.sevenzip.SevenZipRecord¶
- class dissect.target.plugins.apps.productivity.sevenzip.SevenZipPlugin(target: dissect.target.target.Target)¶
Bases:
dissect.target.plugin.PluginWindows 7-Zip GUI plugin.
- KEY = 'HKCU\\Software\\7-Zip'¶
- check_compatible() None¶
Perform a compatibility check with the target.
This function should return
Noneif the plugin is compatible with the current target (self.target). For example, check if a certain file exists. Otherwise it should raise anUnsupportedPluginError.- Raises:
UnsupportedPluginError – If the plugin could not be loaded.
- parse_key(key: dissect.target.helpers.regutil.RegistryKey, keyname: str, valuename: str, record: dissect.target.helpers.record.TargetRecordDescriptor) collections.abc.Iterator[dissect.target.helpers.record.TargetRecordDescriptor]¶
- sevenzip() collections.abc.Iterator[SevenZipRecord]¶
Return 7-Zip GUI 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 the 7-Zip GUI.
References