# 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/ import logging import re from datetime import datetime, timedelta from mvt.android.parsers import parse_getprop from .base import AndroidExtraction log = logging.getLogger(__name__) class Getprop(AndroidExtraction): """This module extracts device properties from getprop command.""" def __init__(self, file_path=None, base_folder=None, output_folder=None, serial=None, fast_mode=False, log=None, results=[]): super().__init__(file_path=file_path, base_folder=base_folder, output_folder=output_folder, fast_mode=fast_mode, log=log, results=results) self.results = {} if not results else results def run(self): self._adb_connect() output = self._adb_command("getprop") self._adb_disconnect() self.results = parse_getprop(output) # Alert if phone is outdated. security_patch = self.results.get("ro.build.version.security_patch", "") if security_patch: patch_date = datetime.strptime(security_patch, "%Y-%m-%d") if (datetime.now() - patch_date) > timedelta(days=6*30): self.log.warning("This phone has not received security updates for more than " "six months (last update: %s)", security_patch) self.log.info("Extracted %d Android system properties", len(self.results))