diff --git a/mvt/android/modules/adb/dumpsys_appops.py b/mvt/android/modules/adb/dumpsys_appops.py index f6c6f49..4b027de 100644 --- a/mvt/android/modules/adb/dumpsys_appops.py +++ b/mvt/android/modules/adb/dumpsys_appops.py @@ -36,7 +36,7 @@ class DumpsysAppOps(AndroidExtraction): "timestamp": entry["timestamp"], "module": self.__class__.__name__, "event": entry["access"], - "data": f"{record['package_name']} access to {perm['name']} : {entry['access']}", + "data": f"{record['package_name']} access to {perm['name']}: {entry['access']}", }) return records diff --git a/mvt/android/modules/bugreport/appops.py b/mvt/android/modules/bugreport/appops.py index 4cbb802..6887328 100644 --- a/mvt/android/modules/bugreport/appops.py +++ b/mvt/android/modules/bugreport/appops.py @@ -34,7 +34,7 @@ class Appops(BugReportModule): "timestamp": entry["timestamp"], "module": self.__class__.__name__, "event": entry["access"], - "data": f"{record['package_name']} access to {perm['name']} : {entry['access']}", + "data": f"{record['package_name']} access to {perm['name']}: {entry['access']}", }) return records diff --git a/mvt/ios/modules/net_base.py b/mvt/ios/modules/net_base.py index 3b775c1..38d645f 100644 --- a/mvt/ios/modules/net_base.py +++ b/mvt/ios/modules/net_base.py @@ -150,13 +150,13 @@ class NetBase(IOSExtraction): else: msg = f"Could not find the binary associated with the process with name {proc['proc_name']}" if (proc["proc_name"] is None): - msg = f"Found process entry with empty 'proc_name' : {proc['live_proc_id']} at {proc['live_isodate']}" + msg = f"Found process entry with empty 'proc_name': {proc['live_proc_id']} at {proc['live_isodate']}" elif len(proc["proc_name"]) == 16: msg = msg + " (However, the process name might have been truncated in the database)" self.log.warning(msg) if not proc["live_proc_id"]: - self.log.info(f"Found process entry in ZPROCESS but not in ZLIVEUSAGE : {proc['proc_name']} at {proc['live_isodate']}") + self.log.info(f"Found process entry in ZPROCESS but not in ZLIVEUSAGE: {proc['proc_name']} at {proc['live_isodate']}") def check_manipulated(self): """Check for missing or manipulate DB entries"""