Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 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
Expand Up @@ -36,9 +36,9 @@ memf-symbols = { version = "0.2.3", path = "crates/memf-symbols" }
memf-core = { version = "0.2.3", path = "crates/memf-core" }
memf-linux = { version = "0.3.0", path = "crates/memf-linux" }
memf-session = { version = "0.3.0", path = "crates/memf-session" }
memf-windows = { version = "0.3.1", path = "crates/memf-windows" }
memf-windows = { version = "0.4.0", path = "crates/memf-windows" }
memf-correlate = { version = "0.3.0", path = "crates/memf-correlate" }
memf-carve = { version = "0.1.0", path = "crates/memf-carve" }
memf-carve = { version = "0.1.1", path = "crates/memf-carve" }
# Fleet carving contract + single-pass sweep engine.
forensic-carve = "0.1"
assert_cmd = "2"
Expand Down
2 changes: 1 addition & 1 deletion crates/memf-carve/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "memf-carve"
version = "0.1.0"
version = "0.1.1"
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
Expand Down
18 changes: 18 additions & 0 deletions crates/memf-windows/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.4.0](https://github.com/SecurityRonin/memory-forensic/compare/memf-windows-v0.3.1...memf-windows-v0.4.0) - 2026-07-29

### Added

- *(hashdump)* GREEN — wire native SAM hashdump + symbol-free _CMHIVE locator

### Other

- native SAM hashdump + _CMHIVE locator (creds)
2 changes: 1 addition & 1 deletion crates/memf-windows/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "memf-windows"
version = "0.3.1"
version = "0.4.0"
description = "Windows kernel memory forensic walkers (processes, threads, drivers, DLLs)"
edition.workspace = true
rust-version.workspace = true
Expand Down
Loading