mvt/mvt/ios/modules/mixed/__init__.py

31 lines
1.3 KiB
Python
Raw Normal View History

2021-08-15 11:14:18 +00:00
# Mobile Verification Toolkit (MVT)
# Copyright (c) 2021 The MVT Project Authors.
# Use of this software is governed by the MVT License 1.1 that can be found at
# https://license.mvt.re/1.1/
from .calls import Calls
from .chrome_favicon import ChromeFavicon
from .chrome_history import ChromeHistory
from .contacts import Contacts
from .firefox_favicon import FirefoxFavicon
from .firefox_history import FirefoxHistory
from .idstatuscache import IDStatusCache
from .interactionc import InteractionC
from .locationd import LocationdClients
from .net_datausage import Datausage
2021-09-03 11:35:27 +00:00
from .osanalytics_addaily import OSAnalyticsADDaily
2021-08-15 11:14:18 +00:00
from .safari_browserstate import SafariBrowserState
from .safari_history import SafariHistory
from .sms import SMS
from .sms_attachments import SMSAttachments
2021-09-09 10:00:48 +00:00
from .tcc import TCC
2021-08-15 11:14:18 +00:00
from .webkit_resource_load_statistics import WebkitResourceLoadStatistics
from .webkit_session_resource_log import WebkitSessionResourceLog
from .whatsapp import Whatsapp
MIXED_MODULES = [Calls, ChromeFavicon, ChromeHistory, Contacts, FirefoxFavicon,
2021-09-03 11:35:27 +00:00
FirefoxHistory, IDStatusCache, InteractionC, LocationdClients,
OSAnalyticsADDaily, Datausage, SafariBrowserState, SafariHistory,
2021-09-09 10:00:48 +00:00
TCC, SMS, SMSAttachments, WebkitResourceLoadStatistics,
2021-11-19 14:27:51 +00:00
WebkitSessionResourceLog, Whatsapp]