Skip to content

Commit

Permalink
Merge pull request #34 from dfir-dd/33-cleanhive-doesnt-export-the-ba…
Browse files Browse the repository at this point in the history
…se-block

33 cleanhive doesnt export the base block
  • Loading branch information
janstarke authored Apr 12, 2024
2 parents dfd2e03 + 54e8c91 commit b55b1a0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dfir-toolkit"
version = "0.10.1"
version = "0.10.2"
edition = "2021"
authors = ["Jan Starke <jan.starke@posteo.de>", "Deborah Mahn <deborah.mahn@dfir-dd.de>"]
description = "CLI tools for digital forensics and incident response"
Expand Down Expand Up @@ -168,7 +168,7 @@ strum = { version = "0", features = ["derive"], optional=true }
strum_macros = {version="0", optional=true}

# nt-hive2
nt_hive2 = {version="4.0.2", optional=true}
nt_hive2 = {version="4.1.0", optional=true}

# lnk2bodyfile
lnk = {version="0.5.1", optional=true}
Expand Down
1 change: 1 addition & 0 deletions src/bin/cleanhive/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ pub fn main() -> Result<()> {
}
};

clean_hive.write_baseblock(&mut cli.dst_hive)?;
std::io::copy(&mut clean_hive, &mut cli.dst_hive)?;
Ok(())
}

0 comments on commit b55b1a0

Please sign in to comment.