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
18 changes: 9 additions & 9 deletions Cargo.lock

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

18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ shellitem = "0.2"
# its in-memory prefetch carve to this fleet crate.
prefetch-core = "0.1"
# Internal (version + path: path drives local dev, version is used on publish).
memf-format = { version = "0.3.0", path = "crates/memf-format" }
memf-strings = { version = "0.2.1", path = "crates/memf-strings" }
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.2", path = "crates/memf-windows" }
memf-correlate = { version = "0.3.0", path = "crates/memf-correlate" }
memf-carve = { version = "0.1.3", path = "crates/memf-carve" }
memf-format = { version = "0.3.1", path = "crates/memf-format" }
memf-strings = { version = "0.2.2", path = "crates/memf-strings" }
memf-symbols = { version = "0.2.4", path = "crates/memf-symbols" }
memf-core = { version = "0.2.5", path = "crates/memf-core" }
memf-linux = { version = "0.3.3", path = "crates/memf-linux" }
memf-session = { version = "0.3.3", path = "crates/memf-session" }
memf-windows = { version = "0.4.3", path = "crates/memf-windows" }
memf-correlate = { version = "0.3.1", path = "crates/memf-correlate" }
memf-carve = { version = "0.1.4", path = "crates/memf-carve" }
# Fleet carving contract + single-pass sweep engine.
forensic-carve = "0.1"
assert_cmd = "2"
Expand Down
6 changes: 6 additions & 0 deletions crates/memf-carve/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.4](https://github.com/SecurityRonin/memory-forensic/compare/memf-carve-v0.1.3...memf-carve-v0.1.4) - 2026-08-08

### Fixed

- *(msrv)* declare each member's measured floor instead of an unsatisfiable 1.75

## [0.1.0](https://github.com/SecurityRonin/memory-forensic/releases/tag/memf-carve-v0.1.0) - 2026-07-23

### Added
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.3"
version = "0.1.4"
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 = "1.88"
Expand Down
6 changes: 6 additions & 0 deletions crates/memf-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.5](https://github.com/SecurityRonin/memory-forensic/compare/memf-core-v0.2.4...memf-core-v0.2.5) - 2026-08-08

### Fixed

- clippy lints from the raised MSRV, and repair the rustdoc links

## [0.2.4](https://github.com/SecurityRonin/memory-forensic/compare/memf-core-v0.2.3...memf-core-v0.2.4) - 2026-08-04

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/memf-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "memf-core"
version = "0.2.4"
version = "0.2.5"
description = "Virtual address translation and kernel object reading for memory forensics"
edition.workspace = true
rust-version.workspace = true
Expand Down
15 changes: 15 additions & 0 deletions crates/memf-correlate/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# 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.3.1](https://github.com/SecurityRonin/memory-forensic/compare/memf-correlate-v0.3.0...memf-correlate-v0.3.1) - 2026-08-08

### Fixed

- clippy lints from the raised MSRV, and repair the rustdoc links
- *(msrv)* declare each member's measured floor instead of an unsatisfiable 1.75
2 changes: 1 addition & 1 deletion crates/memf-correlate/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "memf-correlate"
version = "0.3.0"
version = "0.3.1"
description = "Forensic event correlation model for the memf forensics framework"
edition.workspace = true
rust-version = "1.75"
Expand Down
6 changes: 6 additions & 0 deletions crates/memf-format/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to `memf-format` are documented here. The format follows
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/); versions follow SemVer.

## [0.3.1](https://github.com/SecurityRonin/memory-forensic/compare/memf-format-v0.3.0...memf-format-v0.3.1) - 2026-08-08

### Fixed

- clippy lints from the raised MSRV, and repair the rustdoc links

## [0.3.0]

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/memf-format/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "memf-format"
version = "0.3.0"
version = "0.3.1"
description = "Physical memory dump format parsers for the memf forensics framework"
edition.workspace = true
rust-version.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/memf-linux/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,9 @@ 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.3.3](https://github.com/SecurityRonin/memory-forensic/compare/memf-linux-v0.3.2...memf-linux-v0.3.3) - 2026-08-08

### Fixed

- clippy lints from the raised MSRV, and repair the rustdoc links
2 changes: 1 addition & 1 deletion crates/memf-linux/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "memf-linux"
version = "0.3.2"
version = "0.3.3"
description = "Linux kernel memory forensic walkers (processes, connections, modules)"
edition.workspace = true
rust-version.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/memf-session/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "memf-session"
version = "0.3.2"
version = "0.3.3"
description = "Memory-dump analysis bootstrap: OS detection, CR3/DTB recovery, and kernel list-head resolution from a physical memory provider"
edition.workspace = true
rust-version.workspace = true
Expand Down
14 changes: 14 additions & 0 deletions crates/memf-strings/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# 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.2.2](https://github.com/SecurityRonin/memory-forensic/compare/memf-strings-v0.2.1...memf-strings-v0.2.2) - 2026-08-08

### Fixed

- *(msrv)* declare each member's measured floor instead of an unsatisfiable 1.75
2 changes: 1 addition & 1 deletion crates/memf-strings/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "memf-strings"
version = "0.2.1"
version = "0.2.2"
description = "String extraction, classification, and YARA-X scanning for memory forensics"
edition.workspace = true
rust-version = "1.88"
Expand Down
14 changes: 14 additions & 0 deletions crates/memf-symbols/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# 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.2.4](https://github.com/SecurityRonin/memory-forensic/compare/memf-symbols-v0.2.3...memf-symbols-v0.2.4) - 2026-08-08

### Fixed

- clippy lints from the raised MSRV, and repair the rustdoc links
2 changes: 1 addition & 1 deletion crates/memf-symbols/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "memf-symbols"
version = "0.2.3"
version = "0.2.4"
description = "Symbol resolution backends for memory forensics (ISF JSON, BTF)"
edition.workspace = true
rust-version.workspace = true
Expand Down
7 changes: 7 additions & 0 deletions crates/memf-windows/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.3](https://github.com/SecurityRonin/memory-forensic/compare/memf-windows-v0.4.2...memf-windows-v0.4.3) - 2026-08-08

### Fixed

- clippy lints from the raised MSRV, and repair the rustdoc links
- *(msrv)* declare each member's measured floor instead of an unsatisfiable 1.75

## [0.4.2](https://github.com/SecurityRonin/memory-forensic/compare/memf-windows-v0.4.1...memf-windows-v0.4.2) - 2026-08-05

### Fixed
Expand Down
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.4.2"
version = "0.4.3"
description = "Windows kernel memory forensic walkers (processes, threads, drivers, DLLs)"
edition.workspace = true
rust-version = "1.88"
Expand Down
Loading