mirror of
https://github.com/mvt-project/mvt.git
synced 2026-09-03 00:21:07 +02:00
Add a "plugins" command to the platform-neutral mvt command. "plugins list" shows every installed plugin package with its version, where it was installed from, how many forensic modules it contributes and which commands it adds. "plugins check-updates" checks for updates immediately, without waiting for the automatic check, and prints the command which upgrades a plugin instead of installing anything. It lives on mvt only. The packages it lists extend mvt-ios and mvt-android too, but auditing them is not the job of a command which analyses one platform, and the two platform CLIs should not carry commands which are not about an acquisition. The command is registered as a built-in, before any external command, so that an installed package cannot replace this audit surface.
58 lines
2.1 KiB
YAML
58 lines
2.1 KiB
YAML
site_name: Mobile Verification Toolkit
|
|
repo_url: https://github.com/mvt-project/mvt
|
|
edit_uri: edit/main/docs/
|
|
copyright: Copyright © 2021-2023 MVT Project Developers
|
|
site_description: Mobile Verification Toolkit Documentation
|
|
not_in_nav: |
|
|
android/adb.md
|
|
markdown_extensions:
|
|
- attr_list
|
|
- admonition
|
|
- pymdownx.emoji:
|
|
emoji_index: !!python/name:material.extensions.emoji.twemoji
|
|
emoji_generator: !!python/name:material.extensions.emoji.to_svg
|
|
- pymdownx.superfences
|
|
- pymdownx.inlinehilite
|
|
- pymdownx.highlight:
|
|
use_pygments: true
|
|
theme:
|
|
name: material
|
|
features:
|
|
- tabs
|
|
plugins:
|
|
- search
|
|
- mkdocstrings
|
|
extra:
|
|
social:
|
|
- icon: fontawesome/brands/github
|
|
link: https://github.com/mvt-project/mvt
|
|
nav:
|
|
- Welcome: "index.md"
|
|
- Introduction: "introduction.md"
|
|
- Installation: "install.md"
|
|
- Command Completion: "command_completion.md"
|
|
- Using Docker: "docker.md"
|
|
- MVT for iOS:
|
|
- iOS Forensic Methodology: "ios/methodology.md"
|
|
- Install libimobiledevice: "ios/install.md"
|
|
- Check an iTunes Backup:
|
|
- Backup with iTunes app: "ios/backup/itunes.md"
|
|
- Backup with libimobiledevice: "ios/backup/libimobiledevice.md"
|
|
- Check a Backup with mvt-ios: "ios/backup/check.md"
|
|
- Check a Filesystem Dump:
|
|
- Dumping the filesystem: "ios/filesystem/dump.md"
|
|
- Check a Filesystem Dump with mvt-ios: "ios/filesystem/check.md"
|
|
- Check a Sysdiagnose: "ios/sysdiagnose.md"
|
|
- Records extracted by mvt-ios: "ios/records.md"
|
|
- MVT for Android:
|
|
- Android Forensic Methodology: "android/methodology.md"
|
|
- Check an Android Backup (SMS messages): "android/backup.md"
|
|
- Check Android Intrusion Logs: "android/intrusion_logs.md"
|
|
- Indicators of Compromise: "iocs.md"
|
|
- Development:
|
|
- Development Instructions: "development/index.md"
|
|
- Custom CLI Commands: "development/custom_commands.md"
|
|
- Plugin Configuration: "development/plugin_configuration.md"
|
|
- Managing Plugins: "development/plugins.md"
|
|
- License: "license.md"
|