Crates.io | dmgwiz |
lib.rs | dmgwiz |
version | 0.2.4 |
source | src |
created_at | 2020-07-26 20:52:49.686796 |
updated_at | 2023-07-31 21:45:34.343751 |
description | Extract filesystem data from DMG files |
homepage | |
repository | https://github.com/citruz/dmgwiz |
max_upload_size | |
id | 269870 |
size | 27,160,296 |
DmgWiz lets you extract raw filesystem data from compressed and encrypted DMG files. It started as a dmg2img clone but has more features and is more secure due to the Rust programming language.
DmgWiz is both a CLI tool and a Rust crate so it can be integrated into other projects.
dmgwiz [OPTIONS] <INPUT> [SUBCOMMAND]
OPTIONS:
-q Only print errors
-v Sets the level of verbosity (multiple allowed)
-p <password> Password for encrypted DMGs
info
dmgwiz <INPUT> info
decrypt
dmgwiz <INPUT> decrypt -o <output> -p <password>
extract
dmgwiz <INPUT> extract [-n <partition number>] -o <output>
DmgWiz can also be used as a crate in other Rust projects. Please see the API Documentation and main.rs
for examples how to use it.
Support for encrypted DMGs can be disabled to reduce the compilation time and amount of C code. To do this, add the default-features = false
option in your Cargo.toml
:Â
[dependencies]
dmgwiz = {version = "0.2", default-features = false}
0.2.4
0.2.3
0.2.2
0.2.1
0.2.0
CFName
as fallback in case the Name
attribute is not set0.1.0