mvt/mvt/android/modules/androidqf/dumpsys_accessibility.py

78 lines
2.4 KiB
Python
Raw Normal View History

2022-09-05 10:12:36 +00:00
# Mobile Verification Toolkit (MVT)
2023-02-08 19:18:16 +00:00
# Copyright (c) 2021-2023 Claudio Guarnieri.
2022-09-05 10:12:36 +00:00
# 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 typing import Optional
from mvt.android.parsers import parse_dumpsys_accessibility
from .base import AndroidQFModule
class DumpsysAccessibility(AndroidQFModule):
"""This module analyse dumpsys accessbility"""
def __init__(
self,
file_path: Optional[str] = None,
target_path: Optional[str] = None,
results_path: Optional[str] = None,
module_options: Optional[dict] = None,
2022-09-05 10:12:36 +00:00
log: logging.Logger = logging.getLogger(__name__),
results: Optional[list] = None,
2022-09-05 10:12:36 +00:00
) -> None:
super().__init__(
file_path=file_path,
target_path=target_path,
results_path=results_path,
module_options=module_options,
log=log,
results=results,
)
2022-09-05 10:12:36 +00:00
def check_indicators(self) -> None:
if not self.indicators:
return
for result in self.results:
ioc = self.indicators.check_app_id(result["package_name"])
if ioc:
result["matched_indicator"] = ioc
self.detected.append(result)
def run(self) -> None:
dumpsys_file = self._get_files_by_pattern("*/dumpsys.txt")
if not dumpsys_file:
return
lines = []
in_accessibility = False
data = self._get_file_content(dumpsys_file[0])
for line in data.decode("utf-8").split("\n"):
if line.strip().startswith("DUMP OF SERVICE accessibility:"):
in_accessibility = True
continue
2022-09-05 10:12:36 +00:00
if not in_accessibility:
continue
2022-09-05 10:12:36 +00:00
if line.strip().startswith(
"-------------------------------------------------------------------------------"
): # pylint: disable=line-too-long
break
2022-09-05 10:12:36 +00:00
lines.append(line.rstrip())
2022-09-05 10:12:36 +00:00
self.results = parse_dumpsys_accessibility("\n".join(lines))
for result in self.results:
self.log.info(
'Found installed accessibility service "%s"', result.get("service")
)
2022-09-05 10:12:36 +00:00
self.log.info(
"Identified a total of %d accessibility services", len(self.results)
)