mvt/tests/ios_backup/test_sms.py

32 lines
1007 B
Python
Raw Normal View History

2022-03-01 12:11:50 +00:00
# Mobile Verification Toolkit (MVT)
2023-09-09 15:55:27 +00:00
# Copyright (c) 2021-2023 The MVT Authors.
2022-03-01 12:11:50 +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/
import logging
from mvt.common.indicators import Indicators
from mvt.common.module import run_module
from mvt.ios.modules.mixed.sms import SMS
2022-03-04 11:34:54 +00:00
from ..utils import get_ios_backup_folder
2022-03-01 12:11:50 +00:00
class TestSMSModule:
def test_sms(self):
m = SMS(target_path=get_ios_backup_folder())
2022-03-01 12:11:50 +00:00
run_module(m)
assert len(m.results) == 1
assert len(m.timeline) == 1
2022-03-01 12:11:50 +00:00
assert len(m.detected) == 0
def test_detection(self, indicator_file):
m = SMS(target_path=get_ios_backup_folder())
ind = Indicators(log=logging.getLogger())
2022-03-01 12:11:50 +00:00
ind.parse_stix2(indicator_file)
# Adds a file that exists in the manifest.
ind.ioc_collections[0]["domains"].append("badbadbad.example.org")
m.indicators = ind
run_module(m)
assert len(m.detected) == 1