mirror of
https://github.com/mvt-project/mvt.git
synced 2026-07-29 15:48:48 +02:00
162 lines
5.6 KiB
Python
162 lines
5.6 KiB
Python
# Mobile Verification Toolkit (MVT)
|
|
# Copyright (c) 2021-2023 The MVT Authors.
|
|
# Use of this software is governed by the MVT License 1.1 that can be found at
|
|
# https://license.mvt.re/1.1/
|
|
|
|
import io
|
|
import logging
|
|
import os
|
|
import sys
|
|
import tarfile
|
|
from pathlib import Path
|
|
from typing import List, Optional
|
|
|
|
from mvt.android.modules.backup.base import BackupModule
|
|
from mvt.android.modules.backup.helpers import prompt_or_load_android_backup_password
|
|
from mvt.android.parsers.backup import (
|
|
AndroidBackupParsingError,
|
|
InvalidBackupPassword,
|
|
parse_ab_header,
|
|
parse_backup_file,
|
|
)
|
|
from mvt.common.command import Command
|
|
from mvt.common.indicators import Indicators
|
|
from mvt.common.module import MVTModule
|
|
|
|
from .modules.backup import BACKUP_MODULES
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
class InvalidAndroidBackup(Exception):
|
|
pass
|
|
|
|
|
|
class CmdAndroidCheckBackup(Command):
|
|
def __init__(
|
|
self,
|
|
target_path: Optional[str] = None,
|
|
results_path: Optional[str] = None,
|
|
ioc_files: Optional[list] = None,
|
|
iocs: Optional[Indicators] = None,
|
|
module_name: Optional[str] = None,
|
|
serial: Optional[str] = None,
|
|
module_options: Optional[dict] = None,
|
|
hashes: Optional[bool] = False,
|
|
sub_command: Optional[bool] = False,
|
|
disable_version_check: bool = False,
|
|
disable_indicator_check: bool = False,
|
|
custom_modules: Optional[list[type[MVTModule]]] = None,
|
|
jobs: int = 4,
|
|
) -> None:
|
|
super().__init__(
|
|
target_path=target_path,
|
|
results_path=results_path,
|
|
ioc_files=ioc_files,
|
|
iocs=iocs,
|
|
module_name=module_name,
|
|
serial=serial,
|
|
module_options=module_options,
|
|
hashes=hashes,
|
|
sub_command=sub_command,
|
|
log=log,
|
|
disable_version_check=disable_version_check,
|
|
disable_indicator_check=disable_indicator_check,
|
|
custom_modules=custom_modules,
|
|
jobs=jobs,
|
|
)
|
|
|
|
self.platform = "android"
|
|
self.name = "check-backup"
|
|
self.modules = BACKUP_MODULES
|
|
|
|
self.__type: str = ""
|
|
self.__tar: Optional[tarfile.TarFile] = None
|
|
self.__files: List[str] = []
|
|
|
|
def from_ab(self, ab_file_bytes: bytes) -> None:
|
|
self.__type = "ab"
|
|
header = parse_ab_header(ab_file_bytes)
|
|
if not header["backup"]:
|
|
if self.sub_command:
|
|
raise InvalidAndroidBackup(
|
|
"Invalid backup format, file should be in .ab format"
|
|
)
|
|
log.critical("Invalid backup format, file should be in .ab format")
|
|
sys.exit(1)
|
|
|
|
password = None
|
|
if header["encryption"] != "none":
|
|
password = prompt_or_load_android_backup_password(log, self.module_options)
|
|
if not password:
|
|
log.critical("No backup password provided.")
|
|
sys.exit(1)
|
|
try:
|
|
tardata = parse_backup_file(ab_file_bytes, password=password)
|
|
except InvalidBackupPassword:
|
|
log.critical("Invalid backup password")
|
|
sys.exit(1)
|
|
except AndroidBackupParsingError as exc:
|
|
if self.sub_command:
|
|
raise InvalidAndroidBackup(
|
|
f"Impossible to parse this backup file: {exc}"
|
|
) from exc
|
|
log.critical("Impossible to parse this backup file: %s", exc)
|
|
log.critical("Please use Android Backup Extractor (ABE) instead")
|
|
sys.exit(1)
|
|
|
|
dbytes = io.BytesIO(tardata)
|
|
try:
|
|
self.__tar = tarfile.open(fileobj=dbytes)
|
|
except tarfile.TarError as exc:
|
|
if self.sub_command:
|
|
raise InvalidAndroidBackup(
|
|
f"Impossible to parse this backup file: {exc}"
|
|
) from exc
|
|
log.critical("Impossible to parse this backup file: %s", exc)
|
|
log.critical("Please use Android Backup Extractor (ABE) instead")
|
|
sys.exit(1)
|
|
for member in self.__tar:
|
|
self.__files.append(member.name)
|
|
|
|
def init(self) -> None:
|
|
if not self.target_path: # type: ignore[has-type]
|
|
return
|
|
|
|
# Type guard: we know it's not None here after the check above
|
|
assert self.target_path is not None # type: ignore[has-type]
|
|
# Use a different local variable name to avoid any scoping issues
|
|
backup_path: str = self.target_path # type: ignore[has-type]
|
|
|
|
if os.path.isfile(backup_path):
|
|
self.__type = "ab"
|
|
with open(backup_path, "rb") as handle:
|
|
ab_file_bytes = handle.read()
|
|
self.from_ab(ab_file_bytes)
|
|
|
|
elif os.path.isdir(backup_path):
|
|
self.__type = "folder"
|
|
backup_path = Path(backup_path).absolute().as_posix()
|
|
self.target_path = backup_path
|
|
for root, subdirs, subfiles in os.walk(os.path.abspath(backup_path)):
|
|
for fname in subfiles:
|
|
self.__files.append(
|
|
os.path.relpath(os.path.join(root, fname), backup_path)
|
|
)
|
|
else:
|
|
log.critical(
|
|
"Invalid backup path, path should be a folder or an "
|
|
"Android Backup (.ab) file"
|
|
)
|
|
sys.exit(1)
|
|
|
|
def module_init(self, module: BackupModule) -> None: # type: ignore[override]
|
|
if self.__type == "folder":
|
|
module.from_dir(self.target_path, self.__files)
|
|
else:
|
|
module.from_ab(self.target_path, self.__tar, self.__files)
|
|
|
|
def finish(self) -> None:
|
|
if self.__tar:
|
|
self.__tar.close()
|