From 8a484b3b24e21774aec524274382f148a5cff22a Mon Sep 17 00:00:00 2001 From: Nex Date: Thu, 12 Aug 2021 17:47:20 +0200 Subject: [PATCH] Added a more clear message regarding rooted Androids --- mvt/android/modules/adb/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mvt/android/modules/adb/base.py b/mvt/android/modules/adb/base.py index 74c13dc..0c8019b 100644 --- a/mvt/android/modules/adb/base.py +++ b/mvt/android/modules/adb/base.py @@ -105,7 +105,7 @@ class AndroidExtraction(MVTModule): """Check if we have a `su` binary, otherwise raise an Exception. """ if not self._adb_check_if_root(): - raise InsufficientPrivileges("The Android device does not seem to have a `su` binary. Cannot run this module.") + raise InsufficientPrivileges("This module is optionally available in case the device is already rooted. Do NOT root your own device!") def _adb_command_as_root(self, command): """Execute an adb shell command.