Compare commits

..

4 Commits

Author SHA1 Message Date
tek
79d565712c Fixes code 2025-06-19 23:47:54 +02:00
makitos666
ee34bcff92 Update global_preferences.py
Added a warning for lockdown mode when the property is not present
2025-06-19 17:02:15 +02:00
besendorf
be1fc3bd8b Update NSKeyedUnarchiver (#636) 2025-06-12 22:42:02 +02:00
Tek
4757cff262 Fixes date parsing issue in tombstones (#635) 2025-06-12 20:49:31 +02:00
2 changed files with 3 additions and 1 deletions

View File

@@ -35,7 +35,7 @@ dependencies = [
"betterproto==1.2.5",
"pydantic==2.11.5",
"pydantic-settings==2.9.1",
"NSKeyedUnArchiver==1.5",
"NSKeyedUnArchiver==1.5.2",
"python-dateutil==2.9.0.post0",
]
requires-python = ">= 3.10"

View File

@@ -43,6 +43,8 @@ class GlobalPreferences(IOSExtraction):
self.log.warning("Lockdown mode enabled")
else:
self.log.warning("Lockdown mode disabled")
return
self.log.warning("Lockdown mode disabled")
def process_file(self, file_path: str) -> None:
with open(file_path, "rb") as handle: