Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrexodia/minidumpplugin
Simple x64dbg plugin to save a full memory dump
https://github.com/mrexodia/minidumpplugin
minidump x64dbg-plugin
Last synced: about 2 months ago
JSON representation
Simple x64dbg plugin to save a full memory dump
- Host: GitHub
- URL: https://github.com/mrexodia/minidumpplugin
- Owner: mrexodia
- License: bsl-1.0
- Created: 2021-11-21T16:53:07.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-10T15:08:13.000Z (about 2 years ago)
- Last Synced: 2024-10-13T01:11:00.932Z (3 months ago)
- Topics: minidump, x64dbg-plugin
- Language: CMake
- Homepage:
- Size: 16.6 KB
- Stars: 49
- Watchers: 5
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MiniDumpPlugin
**Note**: This plugin has been integrated into x64dbg as the [minidump](https://help.x64dbg.com/en/latest/commands/memory-operations/minidump.html) command since 2022-10-10.
Simple [x64dbg](https://x64dbg.com) plugin to save the current state in a full minidump. Created for [dumpulator](https://github.com/mrexodia/dumpulator).
**Download the latest binaries [here](https://github.com/mrexodia/MiniDumpPlugin/releases).**
## Building
From a Visual Studio command prompt:
```
cmake -B build64 -A x64
cmake --build build64 --config Release
```You will get `build64\MiniDump.sln` that you can open in Visual Studio.
To build a 32-bit plugin:
```
cmake -B build32 -A Win32
cmake --build build32 --config Release
```Alternatively you can open this folder in Visual Studio/CLion/Qt Creator.