Reintroduced is_backup and is_fs_dump

This commit is contained in:
Nex 2022-06-22 17:54:03 +02:00
parent 3f4ddaaa0c
commit cca9083dff
2 changed files with 6 additions and 0 deletions

View File

@ -24,3 +24,6 @@ class CmdIOSCheckBackup(Command):
super().__init__(target_path=target_path, results_path=results_path,
ioc_files=ioc_files, module_name=module_name,
serial=serial, fast_mode=fast_mode, log=log)
def module_init(self, module):
module.is_backup = True

View File

@ -24,3 +24,6 @@ class CmdIOSCheckFS(Command):
super().__init__(target_path=target_path, results_path=results_path,
ioc_files=ioc_files, module_name=module_name,
serial=serial, fast_mode=fast_mode, log=log)
def module_init(self, module):
module.is_fs_dump = True