https://github.com/0vercl0k/udmp-parser-rs
A Rust crate for parsing Windows user minidumps.
https://github.com/0vercl0k/udmp-parser-rs
crate minidump rust rust-lang
Last synced: 11 months ago
JSON representation
A Rust crate for parsing Windows user minidumps.
- Host: GitHub
- URL: https://github.com/0vercl0k/udmp-parser-rs
- Owner: 0vercl0k
- License: mit
- Created: 2023-08-09T23:47:56.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-01T23:44:50.000Z (about 2 years ago)
- Last Synced: 2025-06-15T01:24:14.801Z (about 1 year ago)
- Topics: crate, minidump, rust, rust-lang
- Language: Rust
- Homepage:
- Size: 1.82 MB
- Stars: 40
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# udmp-parser: A Rust crate for parsing Windows user minidumps
[](https://crates.io/crates/udmp-parser)
[](https://docs.rs/udmp-parser/)

This is a cross-platform crate that parses Windows user [minidump](https://docs.microsoft.com/en-us/windows/win32/debug/minidump-files) dumps that you can generate via WinDbg or via right-click **Create memory dump file** in the Windows task manager.

The library supports Intel 32-bit / 64-bit dumps and provides read access to things like:
- The thread list and their context records,
- The virtual memory,
- The loaded modules.
Compiled binaries are available in the [releases](https://github.com/0vercl0k/udmp-parser-rs/releases) section.
## Parser
The [parser](src/examples/parser.rs) application is a small utility to show-case how to use the library and demonstrate its features. You can use it to dump memory, list the loaded modules, dump thread contexts, dump a memory map various, etc.

Here are the options supported:
```text
parser.exe [-a] [-mods] [-mem] [-t [|main]] [-dump ]
Examples:
Show all:
parser.exe -a user.dmp
Show loaded modules:
parser.exe -mods user.dmp
Show memory map:
parser.exe -mem user.dmp
Show all threads:
parser.exe -t user.dmp
Show thread w/ specific TID:
parser.exe -t 1337 user.dmp
Show foreground thread:
parser.exe -t main user.dmp
Show a memory page at a specific address:
parser.exe -dump 0x7ff00 user.dmp
```
# Authors
* Axel '[@0vercl0k](https://twitter.com/0vercl0k)' Souchet
# Contributors
[  ](https://github.com/0vercl0k/udmp-parser-rs/graphs/contributors)