From 652dedd6203d3865e460703e37c6b9bec93def60 Mon Sep 17 00:00:00 2001 From: tek Date: Tue, 26 Sep 2023 16:53:33 +0200 Subject: [PATCH] Fixes bug in locationd module --- mvt/ios/modules/mixed/locationd.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/mvt/ios/modules/mixed/locationd.py b/mvt/ios/modules/mixed/locationd.py index 0476436..c190589 100644 --- a/mvt/ios/modules/mixed/locationd.py +++ b/mvt/ios/modules/mixed/locationd.py @@ -141,10 +141,8 @@ class LocationdClients(IOSExtraction): if not isinstance(file_plist[key], dict): continue # FIXME: unclear key format in iOS 17 - key = key.rstrip(":") - result = file_plist[key] - result["package"] = key + result["package"] = key.rstrip(":") for timestamp in self.timestamps: if timestamp in result.keys(): result[timestamp] = convert_mactime_to_iso(result[timestamp])