From cd0e7d987984b391af0a6dd373ba4258e2d95a2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Donncha=20=C3=93=20Cearbhaill?= Date: Fri, 18 Feb 2022 15:09:08 +0100 Subject: [PATCH] Fix syntax error with broken comment --- mvt/android/modules/adb/sms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mvt/android/modules/adb/sms.py b/mvt/android/modules/adb/sms.py index 3614144..0798f50 100644 --- a/mvt/android/modules/adb/sms.py +++ b/mvt/android/modules/adb/sms.py @@ -141,9 +141,9 @@ class SMS(AndroidExtraction): It is crucial to use the under-documented "-nocompress" flag to disable the non-standard Java compression algorithim. This module only supports an unencrypted ADB backup. """ - Run ADB command to create a backup of SMS app self.log.warning("Please check phone and accept Android backup prompt. Do not set an encryption password. \a") + # Run ADB command to create a backup of SMS app # TODO: Base64 encoding as temporary fix to avoid byte-mangling over the shell transport... backup_output_b64 = self._adb_command("/system/bin/bu backup -nocompress com.android.providers.telephony | base64") backup_output = base64.b64decode(backup_output_b64)