dissect.target.loaders.multiraw¶
Module Contents¶
Classes¶
Load multiple raw containers as a single target (i.e. a multi-disk system). |
- class dissect.target.loaders.multiraw.MultiRawLoader(*args, **kwargs)¶
Bases:
dissect.target.loader.LoaderLoad multiple raw containers as a single target (i.e. a multi-disk system).
Use as
/path/to/disk1+/path/to/disk2to load a single target with two disks. The disks can be anything that Dissect supports such as EWF, VMDK, etc.- static detect(path: pathlib.Path) bool¶
Detects wether this
Loaderclass can load this specificpath.- Parameters:
path – The target path to check.
- Returns:
Trueif thepathcan be loaded by aLoaderinstance.Falseotherwise.
- map(target: dissect.target.target.Target) None¶
Maps the loaded path into a
Target.- Parameters:
target – The target that we’re mapping into.