Ios backup test result #564
Unanswered
xknight404
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello guys
This is a confirmation I think? Or is it a false positive? I would like your opinion
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 mvt.common.indicators import Indicators
from mvt.common.module import run_module
from mvt.ios.modules.mixed.safari_browserstate import SafariBrowserState
from ..utils import get_ios_backup_folder
class TestSafariBrowserStateModule:
def test_parsing(self):
m = SafariBrowserState(target_path=get_ios_backup_folder())
m.is_backup = True
run_module(m)
assert len(m.results) == 1
assert len(m.timeline) == 1
assert len(m.detected) == 0
Beta Was this translation helpful? Give feedback.
All reactions