mvt/tests/ios/test_tcc.py

37 lines
1.3 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.mixed.tcc import TCC
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-18 15:00:03 +00:00
class TestTCCtModule:
def test_tcc(self):
m = TCC(base_folder=get_ios_backup_folder(), log=logging, results=[])
run_module(m)
assert len(m.results) == 11
assert len(m.timeline) == 11
assert len(m.detected) == 0
assert m.results[0]["service"] == "kTCCServiceUbiquity"
assert m.results[0]["client"] == "com.apple.Preferences"
assert m.results[0]["auth_value"] == "allowed"
def test_tcc_detection(self, indicator_file):
m = TCC(base_folder=get_ios_backup_folder(), log=logging, results=[])
ind = Indicators(log=logging)
ind.parse_stix2(indicator_file)
m.indicators = ind
2021-12-16 11:50:12 +00:00
run_module(m)
assert len(m.results) == 11
assert len(m.timeline) == 11
assert len(m.detected) == 1
assert m.detected[0]["service"] == "kTCCServiceLiverpool"
assert m.detected[0]["client"] == "Launch"