diff --git a/Cargo.lock b/Cargo.lock index 462d7e1..72d253e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1886,7 +1886,7 @@ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98" [[package]] name = "memf-carve" -version = "0.1.2" +version = "0.1.3" dependencies = [ "forensic-carve", "memf-core", @@ -1994,7 +1994,7 @@ dependencies = [ [[package]] name = "memf-windows" -version = "0.4.1" +version = "0.4.2" dependencies = [ "aes", "aes-gcm", diff --git a/Cargo.toml b/Cargo.toml index 0771d6d..1fe7cb9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,9 +36,9 @@ memf-symbols = { version = "0.2.3", path = "crates/memf-symbols" } memf-core = { version = "0.2.4", path = "crates/memf-core" } memf-linux = { version = "0.3.2", path = "crates/memf-linux" } memf-session = { version = "0.3.2", path = "crates/memf-session" } -memf-windows = { version = "0.4.1", path = "crates/memf-windows" } +memf-windows = { version = "0.4.2", path = "crates/memf-windows" } memf-correlate = { version = "0.3.0", path = "crates/memf-correlate" } -memf-carve = { version = "0.1.2", path = "crates/memf-carve" } +memf-carve = { version = "0.1.3", path = "crates/memf-carve" } # Fleet carving contract + single-pass sweep engine. forensic-carve = "0.1" assert_cmd = "2" diff --git a/crates/memf-carve/Cargo.toml b/crates/memf-carve/Cargo.toml index daaf54f..cc35099 100644 --- a/crates/memf-carve/Cargo.toml +++ b/crates/memf-carve/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "memf-carve" -version = "0.1.2" +version = "0.1.3" description = "Plane-V memory artifact carving: per-process virtual-address-space carving over the forensic-carve sweep engine (memory medium of the fleet carving contract)" edition.workspace = true rust-version.workspace = true diff --git a/crates/memf-windows/CHANGELOG.md b/crates/memf-windows/CHANGELOG.md index 312ea33..b65c3a4 100644 --- a/crates/memf-windows/CHANGELOG.md +++ b/crates/memf-windows/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.2](https://github.com/SecurityRonin/memory-forensic/compare/memf-windows-v0.4.1...memf-windows-v0.4.2) - 2026-08-05 + +### Fixed + +- *(registry_keys)* truncate the value preview char-safely via jsonguard + ## [0.4.1](https://github.com/SecurityRonin/memory-forensic/compare/memf-windows-v0.4.0...memf-windows-v0.4.1) - 2026-08-04 ### Added diff --git a/crates/memf-windows/Cargo.toml b/crates/memf-windows/Cargo.toml index d473369..1d0e738 100644 --- a/crates/memf-windows/Cargo.toml +++ b/crates/memf-windows/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "memf-windows" -version = "0.4.1" +version = "0.4.2" description = "Windows kernel memory forensic walkers (processes, threads, drivers, DLLs)" edition.workspace = true rust-version.workspace = true