From eb5f07a75dae99ea10133d44f4bd8ce8a928eb88 Mon Sep 17 00:00:00 2001 From: Nex Date: Sun, 30 Jan 2022 20:15:01 +0100 Subject: [PATCH] Updated copyright notice --- dev/mvt-android | 2 +- dev/mvt-ios | 2 +- mvt/__init__.py | 2 +- mvt/android/__init__.py | 2 +- mvt/android/cli.py | 2 +- mvt/android/download_apks.py | 2 +- mvt/android/lookups/__init__.py | 2 +- mvt/android/lookups/koodous.py | 2 +- mvt/android/lookups/virustotal.py | 2 +- mvt/android/modules/__init__.py | 2 +- mvt/android/modules/adb/__init__.py | 2 +- mvt/android/modules/adb/base.py | 2 +- mvt/android/modules/adb/chrome_history.py | 2 +- mvt/android/modules/adb/dumpsys_accessibility.py | 2 +- mvt/android/modules/adb/dumpsys_activities.py | 2 +- mvt/android/modules/adb/dumpsys_battery_daily.py | 2 +- mvt/android/modules/adb/dumpsys_battery_history.py | 2 +- mvt/android/modules/adb/dumpsys_dbinfo.py | 2 +- mvt/android/modules/adb/dumpsys_full.py | 2 +- mvt/android/modules/adb/dumpsys_receivers.py | 2 +- mvt/android/modules/adb/files.py | 2 +- mvt/android/modules/adb/getprop.py | 2 +- mvt/android/modules/adb/logcat.py | 2 +- mvt/android/modules/adb/packages.py | 2 +- mvt/android/modules/adb/processes.py | 2 +- mvt/android/modules/adb/root_binaries.py | 2 +- mvt/android/modules/adb/settings.py | 2 +- mvt/android/modules/adb/sms.py | 2 +- mvt/android/modules/adb/whatsapp.py | 2 +- mvt/android/modules/backup/__init__.py | 2 +- mvt/android/modules/backup/sms.py | 2 +- mvt/common/__init__.py | 2 +- mvt/common/help.py | 2 +- mvt/common/indicators.py | 2 +- mvt/common/logo.py | 2 +- mvt/common/module.py | 2 +- mvt/common/options.py | 2 +- mvt/common/url.py | 2 +- mvt/common/utils.py | 2 +- mvt/common/version.py | 2 +- mvt/ios/__init__.py | 2 +- mvt/ios/cli.py | 2 +- mvt/ios/decrypt.py | 2 +- mvt/ios/modules/__init__.py | 2 +- mvt/ios/modules/backup/__init__.py | 2 +- mvt/ios/modules/backup/backup_info.py | 2 +- mvt/ios/modules/backup/configuration_profiles.py | 2 +- mvt/ios/modules/backup/manifest.py | 2 +- mvt/ios/modules/backup/profile_events.py | 2 +- mvt/ios/modules/base.py | 2 +- mvt/ios/modules/fs/__init__.py | 2 +- mvt/ios/modules/fs/analytics.py | 2 +- mvt/ios/modules/fs/cache_files.py | 2 +- mvt/ios/modules/fs/filesystem.py | 2 +- mvt/ios/modules/fs/net_netusage.py | 2 +- mvt/ios/modules/fs/safari_favicon.py | 2 +- mvt/ios/modules/fs/shutdownlog.py | 2 +- mvt/ios/modules/fs/version_history.py | 2 +- mvt/ios/modules/fs/webkit_base.py | 2 +- mvt/ios/modules/fs/webkit_indexeddb.py | 2 +- mvt/ios/modules/fs/webkit_localstorage.py | 2 +- mvt/ios/modules/fs/webkit_safariviewservice.py | 2 +- mvt/ios/modules/mixed/__init__.py | 2 +- mvt/ios/modules/mixed/calls.py | 2 +- mvt/ios/modules/mixed/chrome_favicon.py | 2 +- mvt/ios/modules/mixed/chrome_history.py | 2 +- mvt/ios/modules/mixed/contacts.py | 2 +- mvt/ios/modules/mixed/firefox_favicon.py | 2 +- mvt/ios/modules/mixed/firefox_history.py | 2 +- mvt/ios/modules/mixed/idstatuscache.py | 2 +- mvt/ios/modules/mixed/interactionc.py | 2 +- mvt/ios/modules/mixed/locationd.py | 2 +- mvt/ios/modules/mixed/net_datausage.py | 2 +- mvt/ios/modules/mixed/osanalytics_addaily.py | 2 +- mvt/ios/modules/mixed/safari_browserstate.py | 2 +- mvt/ios/modules/mixed/safari_history.py | 2 +- mvt/ios/modules/mixed/shortcuts.py | 2 +- mvt/ios/modules/mixed/sms.py | 2 +- mvt/ios/modules/mixed/sms_attachments.py | 2 +- mvt/ios/modules/mixed/tcc.py | 2 +- mvt/ios/modules/mixed/webkit_resource_load_statistics.py | 2 +- mvt/ios/modules/mixed/webkit_session_resource_log.py | 2 +- mvt/ios/modules/mixed/whatsapp.py | 2 +- mvt/ios/modules/net_base.py | 2 +- mvt/ios/versions.py | 2 +- setup.py | 2 +- tests/artifacts/generate_stix.py | 2 +- tests/common/test_indicators.py | 2 +- tests/conftest.py | 2 +- tests/ios/test_backup_info.py | 2 +- tests/ios/test_datausage.py | 2 +- tests/ios/test_manifest.py | 2 +- tests/ios/test_safari_browserstate.py | 2 +- tests/ios/test_tcc.py | 2 +- tests/utils.py | 2 +- 95 files changed, 95 insertions(+), 95 deletions(-) diff --git a/dev/mvt-android b/dev/mvt-android index 53ae739..b47d1c6 100755 --- a/dev/mvt-android +++ b/dev/mvt-android @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/dev/mvt-ios b/dev/mvt-ios index a01f417..2e790f3 100755 --- a/dev/mvt-ios +++ b/dev/mvt-ios @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/__init__.py b/mvt/__init__.py index 92def7d..5466e99 100644 --- a/mvt/__init__.py +++ b/mvt/__init__.py @@ -1,4 +1,4 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/android/__init__.py b/mvt/android/__init__.py index 249dc30..cb0d53d 100644 --- a/mvt/android/__init__.py +++ b/mvt/android/__init__.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/android/cli.py b/mvt/android/cli.py index 40e8651..790fc6e 100644 --- a/mvt/android/cli.py +++ b/mvt/android/cli.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/android/download_apks.py b/mvt/android/download_apks.py index 797e0a4..03f0083 100644 --- a/mvt/android/download_apks.py +++ b/mvt/android/download_apks.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/android/lookups/__init__.py b/mvt/android/lookups/__init__.py index 92def7d..5466e99 100644 --- a/mvt/android/lookups/__init__.py +++ b/mvt/android/lookups/__init__.py @@ -1,4 +1,4 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/android/lookups/koodous.py b/mvt/android/lookups/koodous.py index e2c4bd7..8e0719b 100644 --- a/mvt/android/lookups/koodous.py +++ b/mvt/android/lookups/koodous.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/android/lookups/virustotal.py b/mvt/android/lookups/virustotal.py index 1b768b4..b6a624c 100644 --- a/mvt/android/lookups/virustotal.py +++ b/mvt/android/lookups/virustotal.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/android/modules/__init__.py b/mvt/android/modules/__init__.py index 92def7d..5466e99 100644 --- a/mvt/android/modules/__init__.py +++ b/mvt/android/modules/__init__.py @@ -1,4 +1,4 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/android/modules/adb/__init__.py b/mvt/android/modules/adb/__init__.py index 67c5f0a..e35b5e1 100644 --- a/mvt/android/modules/adb/__init__.py +++ b/mvt/android/modules/adb/__init__.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/android/modules/adb/base.py b/mvt/android/modules/adb/base.py index 763bd2a..2ad9b87 100644 --- a/mvt/android/modules/adb/base.py +++ b/mvt/android/modules/adb/base.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/android/modules/adb/chrome_history.py b/mvt/android/modules/adb/chrome_history.py index 88c3af5..c217345 100644 --- a/mvt/android/modules/adb/chrome_history.py +++ b/mvt/android/modules/adb/chrome_history.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/android/modules/adb/dumpsys_accessibility.py b/mvt/android/modules/adb/dumpsys_accessibility.py index 4ae3b5d..1470092 100644 --- a/mvt/android/modules/adb/dumpsys_accessibility.py +++ b/mvt/android/modules/adb/dumpsys_accessibility.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/android/modules/adb/dumpsys_activities.py b/mvt/android/modules/adb/dumpsys_activities.py index 2c7cdaf..3da245d 100644 --- a/mvt/android/modules/adb/dumpsys_activities.py +++ b/mvt/android/modules/adb/dumpsys_activities.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/android/modules/adb/dumpsys_battery_daily.py b/mvt/android/modules/adb/dumpsys_battery_daily.py index 431d761..d758925 100644 --- a/mvt/android/modules/adb/dumpsys_battery_daily.py +++ b/mvt/android/modules/adb/dumpsys_battery_daily.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/android/modules/adb/dumpsys_battery_history.py b/mvt/android/modules/adb/dumpsys_battery_history.py index 0030fef..b3e483c 100644 --- a/mvt/android/modules/adb/dumpsys_battery_history.py +++ b/mvt/android/modules/adb/dumpsys_battery_history.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/android/modules/adb/dumpsys_dbinfo.py b/mvt/android/modules/adb/dumpsys_dbinfo.py index 744a485..6b5b6e3 100644 --- a/mvt/android/modules/adb/dumpsys_dbinfo.py +++ b/mvt/android/modules/adb/dumpsys_dbinfo.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/android/modules/adb/dumpsys_full.py b/mvt/android/modules/adb/dumpsys_full.py index 6c6c864..1d3b822 100644 --- a/mvt/android/modules/adb/dumpsys_full.py +++ b/mvt/android/modules/adb/dumpsys_full.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/android/modules/adb/dumpsys_receivers.py b/mvt/android/modules/adb/dumpsys_receivers.py index 99ca8a6..f4f657e 100644 --- a/mvt/android/modules/adb/dumpsys_receivers.py +++ b/mvt/android/modules/adb/dumpsys_receivers.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/android/modules/adb/files.py b/mvt/android/modules/adb/files.py index 9891ee6..3964ffb 100644 --- a/mvt/android/modules/adb/files.py +++ b/mvt/android/modules/adb/files.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/android/modules/adb/getprop.py b/mvt/android/modules/adb/getprop.py index 5ef9367..a2ae3f4 100644 --- a/mvt/android/modules/adb/getprop.py +++ b/mvt/android/modules/adb/getprop.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/android/modules/adb/logcat.py b/mvt/android/modules/adb/logcat.py index 00d659b..9c206c1 100644 --- a/mvt/android/modules/adb/logcat.py +++ b/mvt/android/modules/adb/logcat.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/android/modules/adb/packages.py b/mvt/android/modules/adb/packages.py index b93f960..b258158 100644 --- a/mvt/android/modules/adb/packages.py +++ b/mvt/android/modules/adb/packages.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/android/modules/adb/processes.py b/mvt/android/modules/adb/processes.py index 1d2d872..b312013 100644 --- a/mvt/android/modules/adb/processes.py +++ b/mvt/android/modules/adb/processes.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/android/modules/adb/root_binaries.py b/mvt/android/modules/adb/root_binaries.py index a9e6c27..a2d7013 100644 --- a/mvt/android/modules/adb/root_binaries.py +++ b/mvt/android/modules/adb/root_binaries.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/android/modules/adb/settings.py b/mvt/android/modules/adb/settings.py index 2c6e327..b5dbe7c 100644 --- a/mvt/android/modules/adb/settings.py +++ b/mvt/android/modules/adb/settings.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/android/modules/adb/sms.py b/mvt/android/modules/adb/sms.py index dc4fbef..7ba0233 100644 --- a/mvt/android/modules/adb/sms.py +++ b/mvt/android/modules/adb/sms.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/android/modules/adb/whatsapp.py b/mvt/android/modules/adb/whatsapp.py index 9282d89..567e9f3 100644 --- a/mvt/android/modules/adb/whatsapp.py +++ b/mvt/android/modules/adb/whatsapp.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/android/modules/backup/__init__.py b/mvt/android/modules/backup/__init__.py index 40432c3..72947e1 100644 --- a/mvt/android/modules/backup/__init__.py +++ b/mvt/android/modules/backup/__init__.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/android/modules/backup/sms.py b/mvt/android/modules/backup/sms.py index 58de6a2..4ab2b1f 100644 --- a/mvt/android/modules/backup/sms.py +++ b/mvt/android/modules/backup/sms.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/common/__init__.py b/mvt/common/__init__.py index 92def7d..5466e99 100644 --- a/mvt/common/__init__.py +++ b/mvt/common/__init__.py @@ -1,4 +1,4 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/common/help.py b/mvt/common/help.py index d42e930..5759136 100644 --- a/mvt/common/help.py +++ b/mvt/common/help.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/common/indicators.py b/mvt/common/indicators.py index a493fdd..3bda7e2 100644 --- a/mvt/common/indicators.py +++ b/mvt/common/indicators.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/common/logo.py b/mvt/common/logo.py index 22d3b1a..5fa52ea 100644 --- a/mvt/common/logo.py +++ b/mvt/common/logo.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/common/module.py b/mvt/common/module.py index 32f1994..0a2d8fb 100644 --- a/mvt/common/module.py +++ b/mvt/common/module.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/common/options.py b/mvt/common/options.py index 7ac9dff..a3c84cd 100644 --- a/mvt/common/options.py +++ b/mvt/common/options.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/common/url.py b/mvt/common/url.py index 3c830a0..6a35912 100644 --- a/mvt/common/url.py +++ b/mvt/common/url.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/common/utils.py b/mvt/common/utils.py index d382e1e..30eb1c4 100644 --- a/mvt/common/utils.py +++ b/mvt/common/utils.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/common/version.py b/mvt/common/version.py index 96caedc..7311449 100644 --- a/mvt/common/version.py +++ b/mvt/common/version.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/__init__.py b/mvt/ios/__init__.py index 249dc30..cb0d53d 100644 --- a/mvt/ios/__init__.py +++ b/mvt/ios/__init__.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/cli.py b/mvt/ios/cli.py index 3b6b277..4359048 100644 --- a/mvt/ios/cli.py +++ b/mvt/ios/cli.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/decrypt.py b/mvt/ios/decrypt.py index 1f90b98..6810b09 100644 --- a/mvt/ios/decrypt.py +++ b/mvt/ios/decrypt.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/__init__.py b/mvt/ios/modules/__init__.py index 92def7d..5466e99 100644 --- a/mvt/ios/modules/__init__.py +++ b/mvt/ios/modules/__init__.py @@ -1,4 +1,4 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/backup/__init__.py b/mvt/ios/modules/backup/__init__.py index 05dd1f5..283c1c6 100644 --- a/mvt/ios/modules/backup/__init__.py +++ b/mvt/ios/modules/backup/__init__.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/backup/backup_info.py b/mvt/ios/modules/backup/backup_info.py index cf2ff1d..f800872 100644 --- a/mvt/ios/modules/backup/backup_info.py +++ b/mvt/ios/modules/backup/backup_info.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/backup/configuration_profiles.py b/mvt/ios/modules/backup/configuration_profiles.py index 915517c..88ecd48 100644 --- a/mvt/ios/modules/backup/configuration_profiles.py +++ b/mvt/ios/modules/backup/configuration_profiles.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/backup/manifest.py b/mvt/ios/modules/backup/manifest.py index 1d71a7f..fc961fe 100644 --- a/mvt/ios/modules/backup/manifest.py +++ b/mvt/ios/modules/backup/manifest.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/backup/profile_events.py b/mvt/ios/modules/backup/profile_events.py index ac409e4..0dde528 100644 --- a/mvt/ios/modules/backup/profile_events.py +++ b/mvt/ios/modules/backup/profile_events.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/base.py b/mvt/ios/modules/base.py index 4eb1309..9429672 100644 --- a/mvt/ios/modules/base.py +++ b/mvt/ios/modules/base.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/fs/__init__.py b/mvt/ios/modules/fs/__init__.py index 29a6895..3955da9 100644 --- a/mvt/ios/modules/fs/__init__.py +++ b/mvt/ios/modules/fs/__init__.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/fs/analytics.py b/mvt/ios/modules/fs/analytics.py index 58ae12e..4592ffc 100644 --- a/mvt/ios/modules/fs/analytics.py +++ b/mvt/ios/modules/fs/analytics.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/fs/cache_files.py b/mvt/ios/modules/fs/cache_files.py index ed66551..ffb4541 100644 --- a/mvt/ios/modules/fs/cache_files.py +++ b/mvt/ios/modules/fs/cache_files.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/fs/filesystem.py b/mvt/ios/modules/fs/filesystem.py index f09047c..c3d390c 100644 --- a/mvt/ios/modules/fs/filesystem.py +++ b/mvt/ios/modules/fs/filesystem.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/fs/net_netusage.py b/mvt/ios/modules/fs/net_netusage.py index eed813c..1c03b84 100644 --- a/mvt/ios/modules/fs/net_netusage.py +++ b/mvt/ios/modules/fs/net_netusage.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/fs/safari_favicon.py b/mvt/ios/modules/fs/safari_favicon.py index 70b894f..940d72a 100644 --- a/mvt/ios/modules/fs/safari_favicon.py +++ b/mvt/ios/modules/fs/safari_favicon.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/fs/shutdownlog.py b/mvt/ios/modules/fs/shutdownlog.py index 819d768..da6886c 100644 --- a/mvt/ios/modules/fs/shutdownlog.py +++ b/mvt/ios/modules/fs/shutdownlog.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/fs/version_history.py b/mvt/ios/modules/fs/version_history.py index 49282c6..3e287fb 100644 --- a/mvt/ios/modules/fs/version_history.py +++ b/mvt/ios/modules/fs/version_history.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/fs/webkit_base.py b/mvt/ios/modules/fs/webkit_base.py index 834dace..30afc43 100644 --- a/mvt/ios/modules/fs/webkit_base.py +++ b/mvt/ios/modules/fs/webkit_base.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/fs/webkit_indexeddb.py b/mvt/ios/modules/fs/webkit_indexeddb.py index afcd80e..ef66844 100644 --- a/mvt/ios/modules/fs/webkit_indexeddb.py +++ b/mvt/ios/modules/fs/webkit_indexeddb.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/fs/webkit_localstorage.py b/mvt/ios/modules/fs/webkit_localstorage.py index 33ef9a4..be3e8a2 100644 --- a/mvt/ios/modules/fs/webkit_localstorage.py +++ b/mvt/ios/modules/fs/webkit_localstorage.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/fs/webkit_safariviewservice.py b/mvt/ios/modules/fs/webkit_safariviewservice.py index ffa3d36..0babddc 100644 --- a/mvt/ios/modules/fs/webkit_safariviewservice.py +++ b/mvt/ios/modules/fs/webkit_safariviewservice.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/mixed/__init__.py b/mvt/ios/modules/mixed/__init__.py index 8cb3b08..5f68505 100644 --- a/mvt/ios/modules/mixed/__init__.py +++ b/mvt/ios/modules/mixed/__init__.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/mixed/calls.py b/mvt/ios/modules/mixed/calls.py index 2811473..463a122 100644 --- a/mvt/ios/modules/mixed/calls.py +++ b/mvt/ios/modules/mixed/calls.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/mixed/chrome_favicon.py b/mvt/ios/modules/mixed/chrome_favicon.py index c806a97..4eba196 100644 --- a/mvt/ios/modules/mixed/chrome_favicon.py +++ b/mvt/ios/modules/mixed/chrome_favicon.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/mixed/chrome_history.py b/mvt/ios/modules/mixed/chrome_history.py index dd1751f..aea1d2d 100644 --- a/mvt/ios/modules/mixed/chrome_history.py +++ b/mvt/ios/modules/mixed/chrome_history.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/mixed/contacts.py b/mvt/ios/modules/mixed/contacts.py index dba2a5d..17db062 100644 --- a/mvt/ios/modules/mixed/contacts.py +++ b/mvt/ios/modules/mixed/contacts.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/mixed/firefox_favicon.py b/mvt/ios/modules/mixed/firefox_favicon.py index 8f4db93..b6bb578 100644 --- a/mvt/ios/modules/mixed/firefox_favicon.py +++ b/mvt/ios/modules/mixed/firefox_favicon.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/mixed/firefox_history.py b/mvt/ios/modules/mixed/firefox_history.py index 78d2794..55ed7f1 100644 --- a/mvt/ios/modules/mixed/firefox_history.py +++ b/mvt/ios/modules/mixed/firefox_history.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/mixed/idstatuscache.py b/mvt/ios/modules/mixed/idstatuscache.py index b06f7df..bbfd0c8 100644 --- a/mvt/ios/modules/mixed/idstatuscache.py +++ b/mvt/ios/modules/mixed/idstatuscache.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/mixed/interactionc.py b/mvt/ios/modules/mixed/interactionc.py index 6093aaf..78249a5 100644 --- a/mvt/ios/modules/mixed/interactionc.py +++ b/mvt/ios/modules/mixed/interactionc.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/mixed/locationd.py b/mvt/ios/modules/mixed/locationd.py index b572fbf..e8d3c0a 100644 --- a/mvt/ios/modules/mixed/locationd.py +++ b/mvt/ios/modules/mixed/locationd.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/mixed/net_datausage.py b/mvt/ios/modules/mixed/net_datausage.py index 74657cc..2b8bea0 100644 --- a/mvt/ios/modules/mixed/net_datausage.py +++ b/mvt/ios/modules/mixed/net_datausage.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/mixed/osanalytics_addaily.py b/mvt/ios/modules/mixed/osanalytics_addaily.py index 60b064c..eccdbf7 100644 --- a/mvt/ios/modules/mixed/osanalytics_addaily.py +++ b/mvt/ios/modules/mixed/osanalytics_addaily.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/mixed/safari_browserstate.py b/mvt/ios/modules/mixed/safari_browserstate.py index 97806e1..abf9c5d 100644 --- a/mvt/ios/modules/mixed/safari_browserstate.py +++ b/mvt/ios/modules/mixed/safari_browserstate.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/mixed/safari_history.py b/mvt/ios/modules/mixed/safari_history.py index 9c5e36c..4584358 100644 --- a/mvt/ios/modules/mixed/safari_history.py +++ b/mvt/ios/modules/mixed/safari_history.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/mixed/shortcuts.py b/mvt/ios/modules/mixed/shortcuts.py index 7b6706f..7cd0dc6 100644 --- a/mvt/ios/modules/mixed/shortcuts.py +++ b/mvt/ios/modules/mixed/shortcuts.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/mixed/sms.py b/mvt/ios/modules/mixed/sms.py index 0e3225a..150e1fb 100644 --- a/mvt/ios/modules/mixed/sms.py +++ b/mvt/ios/modules/mixed/sms.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/mixed/sms_attachments.py b/mvt/ios/modules/mixed/sms_attachments.py index 67e3875..af4ecbf 100644 --- a/mvt/ios/modules/mixed/sms_attachments.py +++ b/mvt/ios/modules/mixed/sms_attachments.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/mixed/tcc.py b/mvt/ios/modules/mixed/tcc.py index 2270769..433a857 100644 --- a/mvt/ios/modules/mixed/tcc.py +++ b/mvt/ios/modules/mixed/tcc.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/mixed/webkit_resource_load_statistics.py b/mvt/ios/modules/mixed/webkit_resource_load_statistics.py index 44e5c22..a21b8ad 100644 --- a/mvt/ios/modules/mixed/webkit_resource_load_statistics.py +++ b/mvt/ios/modules/mixed/webkit_resource_load_statistics.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/mixed/webkit_session_resource_log.py b/mvt/ios/modules/mixed/webkit_session_resource_log.py index 2fadaf2..5019d68 100644 --- a/mvt/ios/modules/mixed/webkit_session_resource_log.py +++ b/mvt/ios/modules/mixed/webkit_session_resource_log.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/mixed/whatsapp.py b/mvt/ios/modules/mixed/whatsapp.py index d3c9dae..d5bf2e6 100644 --- a/mvt/ios/modules/mixed/whatsapp.py +++ b/mvt/ios/modules/mixed/whatsapp.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/modules/net_base.py b/mvt/ios/modules/net_base.py index fcb252a..a520b51 100644 --- a/mvt/ios/modules/net_base.py +++ b/mvt/ios/modules/net_base.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/mvt/ios/versions.py b/mvt/ios/versions.py index 1d45268..4b8c72e 100644 --- a/mvt/ios/versions.py +++ b/mvt/ios/versions.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/setup.py b/setup.py index be9f23a..fe71b9e 100755 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/tests/artifacts/generate_stix.py b/tests/artifacts/generate_stix.py index 6fd6459..fafe6ac 100644 --- a/tests/artifacts/generate_stix.py +++ b/tests/artifacts/generate_stix.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/tests/common/test_indicators.py b/tests/common/test_indicators.py index 6ee516f..7d7053a 100644 --- a/tests/common/test_indicators.py +++ b/tests/common/test_indicators.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/tests/conftest.py b/tests/conftest.py index ee45c80..a513ce2 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/tests/ios/test_backup_info.py b/tests/ios/test_backup_info.py index 0509f6d..bce74dd 100644 --- a/tests/ios/test_backup_info.py +++ b/tests/ios/test_backup_info.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/tests/ios/test_datausage.py b/tests/ios/test_datausage.py index df214a4..a89df1f 100644 --- a/tests/ios/test_datausage.py +++ b/tests/ios/test_datausage.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/tests/ios/test_manifest.py b/tests/ios/test_manifest.py index a4bdfb9..0c9c8d4 100644 --- a/tests/ios/test_manifest.py +++ b/tests/ios/test_manifest.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/tests/ios/test_safari_browserstate.py b/tests/ios/test_safari_browserstate.py index 4658ee3..d5eb34e 100644 --- a/tests/ios/test_safari_browserstate.py +++ b/tests/ios/test_safari_browserstate.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/tests/ios/test_tcc.py b/tests/ios/test_tcc.py index 8f3517f..7e765c3 100644 --- a/tests/ios/test_tcc.py +++ b/tests/ios/test_tcc.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/ diff --git a/tests/utils.py b/tests/utils.py index ebc0bfe..a561f67 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -1,5 +1,5 @@ # Mobile Verification Toolkit (MVT) -# Copyright (c) 2021 The MVT Project Authors. +# Copyright (c) 2021-2022 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/