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.Target)¶
Bases:
dissect.target.plugin.PluginWindows thumbcache plugin.
- __namespace__ = 'thumbcache'¶
Defines the plugin namespace.
- get_cache_paths() collections.abc.Iterator[dissect.target.helpers.fsutil.TargetPath]¶
- 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.
- thumbcache(output_dir: pathlib.Path | None = None) collections.abc.Iterator[ThumbcacheRecord | IndexRecord]¶
Yield thumbcache thumbnails.
- iconcache(output_dir: pathlib.Path | None = None) collections.abc.Iterator[IconcacheRecord | IndexRecord]¶
Yield iconcache thumbnails.