:py:mod:`dissect.target.loaders.vbk` ==================================== .. py:module:: dissect.target.loaders.vbk Module Contents --------------- Classes ~~~~~~~ .. autoapisummary:: dissect.target.loaders.vbk.VbkLoader Attributes ~~~~~~~~~~ .. autoapisummary:: dissect.target.loaders.vbk.RE_RAW_DISK .. py:data:: RE_RAW_DISK .. py:class:: VbkLoader(path: pathlib.Path, **kwargs) Bases: :py:obj:`dissect.target.loader.Loader` Load Veaam Backup (VBK) files. .. rubric:: References - https://helpcenter.veeam.com/docs/backup/hyperv/backup_files.html?ver=120 .. py:attribute:: vbkfs .. py:attribute:: loader :value: None .. 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.Target) -> None Maps the loaded path into a ``Target``. :param target: The target that we're mapping into.