Adds warning for lockdown mode

This commit is contained in:
tek
2023-09-08 13:26:36 +02:00
parent 2bfe5443c8
commit 04b44826b4

View File

@@ -40,9 +40,9 @@ class GlobalPreferences(IOSExtraction):
for entry in self.results:
if entry["entry"] == "LDMGlobalEnabled":
if entry["value"]:
self.log.info("Lockdown mode enabled")
self.log.warning("Lockdown mode enabled")
else:
self.log.info("Lockdown mode disabled")
self.log.warning("Lockdown mode disabled")
def process_file(self, file_path: str) -> None:
with open(file_path, "rb") as handle: