dissect.target.loaders.kape
¶
Module Contents¶
Classes¶
Load KAPE forensic image format files. |
Functions¶
Attributes¶
- dissect.target.loaders.kape.USNJRNL_PATHS = ['$Extend/$J', '$Extend/$UsnJrnl$J']¶
- dissect.target.loaders.kape.open_vhdx(path: pathlib.Path) Iterator[dissect.target.filesystem.Filesystem] ¶
- dissect.target.loaders.kape.is_valid_kape_dir(path: pathlib.Path) bool ¶
- dissect.target.loaders.kape.is_valid_kape_vhdx(path: pathlib.Path) bool ¶
- class dissect.target.loaders.kape.KapeLoader(path: pathlib.Path, **kwargs)¶
Bases:
dissect.target.loaders.dir.DirLoader
Load KAPE forensic image format files.
References
- static detect(path: pathlib.Path) bool ¶
Detects wether this
Loader
class can load this specificpath
.- Parameters:
path – The target path to check.
- Returns:
True
if thepath
can be loaded by aLoader
instance.False
otherwise.
- map(target: dissect.target.Target) None ¶
Maps the loaded path into a
Target
.- Parameters:
target – The target that we’re mapping into.