dissect.target.plugins.os.windows.thumbcache
¶
Module Contents¶
Classes¶
Windows thumbcache plugin. |
Attributes¶
- dissect.target.plugins.os.windows.thumbcache.GENERIC_THUMBCACHE_FIELDS = [('string', 'identifier'), ('string', 'hash'), ('string', 'extension'), ('varint', 'data_size'),...¶
- dissect.target.plugins.os.windows.thumbcache.IndexRecord¶
- dissect.target.plugins.os.windows.thumbcache.ThumbcacheRecord¶
- dissect.target.plugins.os.windows.thumbcache.IconcacheRecord¶
- class dissect.target.plugins.os.windows.thumbcache.ThumbcachePlugin(target: dissect.target.Target)¶
Bases:
dissect.target.plugin.Plugin
Windows thumbcache plugin.
- __namespace__ = 'thumbcache'¶
Defines the plugin namespace.
- get_cache_paths() Iterator[dissect.target.helpers.fsutil.TargetPath] ¶
- 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 anUnsupportedPluginError
.- Raises:
UnsupportedPluginError – If the plugin could not be loaded.
- thumbcache(output_dir: pathlib.Path | None = None) Iterator[ThumbcacheRecord | IndexRecord] ¶
Yield thumbcache thumbnails.
- iconcache(output_dir: pathlib.Path | None = None) Iterator[IconcacheRecord | IndexRecord] ¶
Yield iconcache thumbnails.