Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Check #467

Closed
rocco1989fp opened this issue Feb 28, 2024 · 0 comments
Closed

Check #467

rocco1989fp opened this issue Feb 28, 2024 · 0 comments

Comments

@rocco1989fp
Copy link

Mobile Verification Toolkit (MVT)

Copyright (c) 2021-2023 The MVT Authors.

Use of this software is governed by the MVT License 1.1 that can be found at

https://license.mvt.re/1.1/

import logging
from typing import Optional

from mvt.common.command import Command

from .modules.fs import FS_MODULES
from .modules.mixed import MIXED_MODULES

log = logging.getLogger(name)

class CmdIOSCheckFS(Command):
def init(
self,
target_path: Optional[str] = None,
results_path: Optional[str] = None,
ioc_files: Optional[list] = None,
module_name: Optional[str] = None,
serial: Optional[str] = None,
module_options: Optional[dict] = None,
hashes: bool = False,
) -> None:
super().init(
target_path=target_path,
results_path=results_path,
ioc_files=ioc_files,
module_name=module_name,
serial=serial,
module_options=module_options,
hashes=hashes,
log=log,
)

    self.name = "check-fs"
    self.modules = FS_MODULES + MIXED_MODULES

def module_init(self, module):
    module.is_fs_dump = True
@roaree roaree closed this as not planned Won't fix, can't repro, duplicate, stale Mar 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants