:py:mod:`dissect.target.loaders.tanium` ======================================= .. py:module:: dissect.target.loaders.tanium Module Contents --------------- Classes ~~~~~~~ .. autoapisummary:: dissect.target.loaders.tanium.TaniumLoader .. py:class:: TaniumLoader(path: pathlib.Path, **kwargs) Bases: :py:obj:`dissect.target.loaders.dir.DirLoader` Load Tanium forensic image format files. .. 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.