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

53 lines
1.5 KiB
Python

# Mobile Verification Toolkit (MVT)
# Copyright (c) 2021-2023 Claudio Guarnieri.
# Use of this software is governed by the MVT License 1.1 that can be found at
# https://license.mvt.re/1.1/
from .applications import Applications
from .calendar import Calendar
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
from .osanalytics_addaily import OSAnalyticsADDaily
from .safari_browserstate import SafariBrowserState
from .safari_history import SafariHistory
from .shortcuts import Shortcuts
from .sms import SMS
from .sms_attachments import SMSAttachments
from .tcc import TCC
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,
FirefoxHistory,
IDStatusCache,
InteractionC,
LocationdClients,
OSAnalyticsADDaily,
Datausage,
SafariBrowserState,
SafariHistory,
TCC,
SMS,
SMSAttachments,
WebkitResourceLoadStatistics,
WebkitSessionResourceLog,
Whatsapp,
Shortcuts,
Applications,
Calendar,
]