:py:mod:`dissect.target.loaders.kape` ===================================== .. py:module:: dissect.target.loaders.kape Module Contents --------------- Classes ~~~~~~~ .. autoapisummary:: dissect.target.loaders.kape.KapeLoader Attributes ~~~~~~~~~~ .. autoapisummary:: dissect.target.loaders.kape.USNJRNL_PATHS .. py:data:: USNJRNL_PATHS :value: ['$Extend/$J', '$Extend/$UsnJrnl$J'] .. py:class:: KapeLoader(path: pathlib.Path, **kwargs) Bases: :py:obj:`dissect.target.loaders.dir.DirLoader` Load KAPE forensic image format files. .. rubric:: References - https://www.kroll.com/en/insights/publications/cyber/kroll-artifact-parser-extractor-kape .. py:method:: detect(path: pathlib.Path) -> bool :staticmethod: Detects wether this ``Loader`` class can load this specific ``path``. :param path: The target path to check. :returns: ``True`` if the ``path`` can be loaded by a ``Loader`` instance. ``False`` otherwise. .. py:method:: map(target: dissect.target.Target) -> None Maps the loaded path into a ``Target``. :param target: The target that we're mapping into.