mvt/tests/ios_backup/test_manifest.py

32 lines
1.0 KiB
Python
Raw Normal View History

2022-01-18 15:00:03 +00:00
# Mobile Verification Toolkit (MVT)
# Copyright (c) 2021-2022 Claudio Guarnieri.
2022-01-18 15:00:03 +00:00
# Use of this software is governed by the MVT License 1.1 that can be found at
# https://license.mvt.re/1.1/
2021-12-16 11:50:12 +00:00
import logging
from mvt.common.indicators import Indicators
2021-12-16 11:50:12 +00:00
from mvt.common.module import run_module
2022-01-18 15:00:03 +00:00
from mvt.ios.modules.backup.manifest import Manifest
2021-12-16 11:50:12 +00:00
from ..utils import get_ios_backup_folder
2021-12-16 11:50:12 +00:00
2022-01-07 16:51:21 +00:00
class TestManifestModule:
2022-06-17 15:07:36 +00:00
2021-12-16 11:50:12 +00:00
def test_manifest(self):
2022-06-16 13:24:43 +00:00
m = Manifest(target_path=get_ios_backup_folder(), log=logging, results=[])
2021-12-16 11:50:12 +00:00
run_module(m)
assert len(m.results) == 3721
assert len(m.timeline) == 5881
assert len(m.detected) == 0
2022-01-07 16:51:21 +00:00
def test_detection(self, indicator_file):
2022-06-16 13:24:43 +00:00
m = Manifest(target_path=get_ios_backup_folder(), log=logging, results=[])
2021-12-16 11:50:12 +00:00
ind = Indicators(log=logging)
2022-01-07 16:51:21 +00:00
ind.parse_stix2(indicator_file)
2022-02-02 17:14:10 +00:00
ind.ioc_collections[0]["file_names"].append("com.apple.CoreBrightness.plist")
2021-12-16 11:50:12 +00:00
m.indicators = ind
run_module(m)
assert len(m.detected) == 1