mirror of
https://github.com/mvt-project/mvt.git
synced 2026-02-12 16:42:45 +00:00
refactor dumpsys package activity code
This commit is contained in:
42
tests/android/test_artifact_dumpsys_package_activities.py
Normal file
42
tests/android/test_artifact_dumpsys_package_activities.py
Normal file
@@ -0,0 +1,42 @@
|
||||
# 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/
|
||||
import logging
|
||||
|
||||
from mvt.android.artifacts.dumpsys_package_activities import DumpsysPackageActivities
|
||||
from mvt.common.indicators import Indicators
|
||||
|
||||
from ..utils import get_artifact
|
||||
|
||||
|
||||
class TestDumpsysPackageActivitiesArtifact:
|
||||
def test_parsing(self):
|
||||
dpa = DumpsysPackageActivities()
|
||||
file = get_artifact("android_data/dumpsys_packages.txt")
|
||||
with open(file) as f:
|
||||
data = f.read()
|
||||
|
||||
assert len(dpa.results) == 0
|
||||
dpa.parse(data)
|
||||
assert len(dpa.results) == 4
|
||||
assert dpa.results[0]["package_name"] == "com.samsung.android.app.social"
|
||||
assert (
|
||||
dpa.results[0]["activity"]
|
||||
== "com.samsung.android.app.social/.feed.FeedsActivity"
|
||||
)
|
||||
|
||||
def test_ioc_check(self, indicator_file):
|
||||
dpa = DumpsysPackageActivities()
|
||||
file = get_artifact("android_data/dumpsys_packages.txt")
|
||||
with open(file) as f:
|
||||
data = f.read()
|
||||
dpa.parse(data)
|
||||
|
||||
ind = Indicators(log=logging.getLogger())
|
||||
ind.parse_stix2(indicator_file)
|
||||
ind.ioc_collections[0]["app_ids"].append("com.google.android.gms")
|
||||
dpa.indicators = ind
|
||||
assert len(dpa.detected) == 0
|
||||
dpa.check_indicators()
|
||||
assert len(dpa.detected) == 1
|
||||
@@ -9,6 +9,32 @@ Libraries:
|
||||
android.test.mock -> (jar) /system/framework/android.test.mock.jar
|
||||
|
||||
|
||||
Activity Resolver Table:
|
||||
Full MIME Types:
|
||||
text/comma-separated-values:
|
||||
18d43d com.samsung.android.messaging/.ui.RcsTransferContent
|
||||
72c6194 com.samsung.android.scloud/.app.ui.drive.activity.UploadToDriveActivity2 (2 filters)
|
||||
a8101e7 com.samsung.android.scloud/.app.ui.drive.activity.UploadToDriveActivity (2 filters)
|
||||
application/com.google.android.gms.car:
|
||||
f6b2432 com.google.android.gms/.car.FirstActivity
|
||||
slide/*:
|
||||
651d583 com.android.bluetooth/.opp.BluetoothOppLauncherActivity (2 filters)
|
||||
application/pkix-cert:
|
||||
6380300 com.android.certinstaller/.CertInstallerMain
|
||||
|
||||
Non-Data Actions:
|
||||
com.samsung.android.intent.SOCIAL_UPDATES_FEED_VIEW:
|
||||
b928288 com.samsung.android.app.social/.feed.FeedsActivity
|
||||
android.settings.FINGERPRINT_SETUP:
|
||||
e573421 com.android.settings/.biometrics.fingerprint.SetupFingerprintEnrollIntroduction
|
||||
com.msc.action.samsungaccount.myinfowebview_external:
|
||||
f897046 com.osp.app.signin/com.samsung.android.samsungaccount.authentication.ui.check.user.MyProfileWebView
|
||||
com.google.android.gms.autofill.ACTION_SETTINGS:
|
||||
9de5207 com.google.android.gms/.autofill.ui.AutofillSettingsPrivacyHubActivity
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Packages:
|
||||
Package [com.samsung.android.provider.filterprovider] (d64f8e0):
|
||||
|
||||
@@ -2,14 +2,15 @@
|
||||
# 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/
|
||||
import pytest
|
||||
import logging
|
||||
|
||||
import pytest
|
||||
|
||||
from mvt.common.indicators import Indicators
|
||||
from mvt.common.module import run_module
|
||||
from mvt.ios.modules.fs.filesystem import Filesystem
|
||||
|
||||
from ..utils import get_ios_backup_folder, delete_tmp_db_files
|
||||
from ..utils import delete_tmp_db_files, get_ios_backup_folder
|
||||
|
||||
|
||||
@pytest.fixture()
|
||||
|
||||
Reference in New Issue
Block a user