mvt/mvt/android/modules/adb/root_binaries.py

50 lines
1.5 KiB
Python
Raw Normal View History

2021-07-16 06:05:01 +00:00
# Mobile Verification Toolkit (MVT)
# Copyright (c) 2021-2022 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/
2021-07-16 06:05:01 +00:00
import logging
2021-07-30 09:40:09 +00:00
import os
2021-07-16 06:05:01 +00:00
import pkg_resources
from .base import AndroidExtraction
log = logging.getLogger(__name__)
2021-11-19 14:27:51 +00:00
2021-07-16 06:05:01 +00:00
class RootBinaries(AndroidExtraction):
"""This module extracts the list of installed packages."""
def __init__(self, file_path=None, base_folder=None, output_folder=None,
serial=None, fast_mode=False, log=None, results=[]):
2021-07-16 06:05:01 +00:00
super().__init__(file_path=file_path, base_folder=base_folder,
output_folder=output_folder, fast_mode=fast_mode,
log=log, results=results)
2021-07-16 06:05:01 +00:00
def run(self):
root_binaries_path = os.path.join("..", "..", "data", "root_binaries.txt")
root_binaries_string = pkg_resources.resource_string(__name__, root_binaries_path)
2022-02-02 18:00:20 +00:00
root_binaries = root_binaries_string.decode("utf-8").splitlines()
2021-07-16 06:05:01 +00:00
self._adb_connect()
for root_binary in root_binaries:
root_binary = root_binary.strip()
if not root_binary:
continue
output = self._adb_command(f"which -a {root_binary}")
output = output.strip()
if not output:
continue
if "which: not found" in output:
continue
self.detected.append(root_binary)
self.log.warning("Found root binary \"%s\"", root_binary)
self._adb_disconnect()