Update global_preferences.py (#641)

Added a warning for lockdown mode when the property is not present
---------

Co-authored-by: makitos666 <makitos666@gmail.com>
This commit is contained in:
Tek
2025-06-19 23:51:59 +02:00
committed by GitHub
parent be1fc3bd8b
commit 486e3e7e9b

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: