diff --git a/dissect/target/loaders/utm.py b/dissect/target/loaders/utm.py index 92a133ee8..01d40d932 100644 --- a/dissect/target/loaders/utm.py +++ b/dissect/target/loaders/utm.py @@ -21,6 +21,9 @@ def detect(path: Path) -> bool: def map(self, target: Target) -> None: data_dir = self.path.joinpath("Data") for drive in self.config.get("Drive", []): + if drive.get("ImageType") != "Disk": + continue + path = data_dir.joinpath(drive["ImageName"]) try: target.disks.add(container.open(path))